bootswatch_rails 3.3.0.10 → 3.3.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/bootswatch_rails/engine.rb +1 -1
- data/lib/bootswatch_rails/version.rb +3 -3
- data/lib/generators/bootswatch_rails/sorcery/templates/user_model.rb +3 -0
- data/vendor/assets/stylesheets/cerulean.css +127 -102
- data/vendor/assets/stylesheets/cosmo.css +100 -93
- data/vendor/assets/stylesheets/cyborg.css +100 -93
- data/vendor/assets/stylesheets/darkly.css +100 -93
- data/vendor/assets/stylesheets/flatly.css +100 -93
- data/vendor/assets/stylesheets/journal.css +100 -93
- data/vendor/assets/stylesheets/lumen.css +100 -93
- data/vendor/assets/stylesheets/paper.css +166 -117
- data/vendor/assets/stylesheets/readable.css +100 -93
- data/vendor/assets/stylesheets/sandstone.css +100 -93
- data/vendor/assets/stylesheets/simplex.css +118 -99
- data/vendor/assets/stylesheets/slate.css +184 -121
- data/vendor/assets/stylesheets/spacelab.css +142 -107
- data/vendor/assets/stylesheets/superhero.css +100 -93
- data/vendor/assets/stylesheets/united.css +100 -93
- data/vendor/assets/stylesheets/yeti.css +100 -93
- metadata +2 -2
@@ -1,6 +1,6 @@
|
|
1
1
|
@import url("//fonts.googleapis.com/css?family=Roboto:400,500");
|
2
2
|
/*!
|
3
|
-
* bootswatch v3.3.
|
3
|
+
* bootswatch v3.3.1+1
|
4
4
|
* Homepage: http://bootswatch.com
|
5
5
|
* Copyright 2012-2014 Thomas Park
|
6
6
|
* Licensed under MIT
|
@@ -97,7 +97,8 @@ figure {
|
|
97
97
|
}
|
98
98
|
hr {
|
99
99
|
-moz-box-sizing: content-box;
|
100
|
-
box-sizing: content-box;
|
100
|
+
-webkit-box-sizing: content-box;
|
101
|
+
box-sizing: content-box;
|
101
102
|
height: 0;
|
102
103
|
}
|
103
104
|
pre {
|
@@ -147,7 +148,9 @@ input {
|
|
147
148
|
}
|
148
149
|
input[type="checkbox"],
|
149
150
|
input[type="radio"] {
|
150
|
-
box-sizing: border-box;
|
151
|
+
-webkit-box-sizing: border-box;
|
152
|
+
-moz-box-sizing: border-box;
|
153
|
+
box-sizing: border-box;
|
151
154
|
padding: 0;
|
152
155
|
}
|
153
156
|
input[type="number"]::-webkit-inner-spin-button,
|
@@ -194,7 +197,8 @@ th {
|
|
194
197
|
*:after {
|
195
198
|
background: transparent !important;
|
196
199
|
color: #000 !important;
|
197
|
-
box-shadow: none !important;
|
200
|
+
-webkit-box-shadow: none !important;
|
201
|
+
box-shadow: none !important;
|
198
202
|
text-shadow: none !important;
|
199
203
|
}
|
200
204
|
a,
|
@@ -1346,13 +1350,15 @@ kbd {
|
|
1346
1350
|
color: #ffffff;
|
1347
1351
|
background-color: #333333;
|
1348
1352
|
border-radius: 3px;
|
1349
|
-
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1353
|
+
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1354
|
+
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1350
1355
|
}
|
1351
1356
|
kbd kbd {
|
1352
1357
|
padding: 0;
|
1353
1358
|
font-size: 100%;
|
1354
1359
|
font-weight: bold;
|
1355
|
-
box-shadow: none;
|
1360
|
+
-webkit-box-shadow: none;
|
1361
|
+
box-shadow: none;
|
1356
1362
|
}
|
1357
1363
|
pre {
|
1358
1364
|
display: block;
|
@@ -2359,7 +2365,7 @@ output {
|
|
2359
2365
|
border-radius: 4px;
|
2360
2366
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2361
2367
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2362
|
-
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
2368
|
+
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
|
2363
2369
|
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
2364
2370
|
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
2365
2371
|
}
|
@@ -2392,56 +2398,25 @@ textarea.form-control {
|
|
2392
2398
|
input[type="search"] {
|
2393
2399
|
-webkit-appearance: none;
|
2394
2400
|
}
|
2395
|
-
|
2396
|
-
input[type="
|
2397
|
-
input[type="
|
2398
|
-
input[type="
|
2399
|
-
|
2400
|
-
|
2401
|
-
}
|
2402
|
-
input[type="date"].input-sm,
|
2403
|
-
input[type="time"].input-sm,
|
2404
|
-
input[type="datetime-local"].input-sm,
|
2405
|
-
input[type="month"].input-sm {
|
2406
|
-
|
2407
|
-
|
2408
|
-
|
2409
|
-
input[type="
|
2410
|
-
input[type="
|
2411
|
-
input[type="
|
2412
|
-
|
2413
|
-
|
2414
|
-
line-height: 1.33 \0;
|
2415
|
-
}
|
2416
|
-
_:-ms-fullscreen,
|
2417
|
-
:root input[type="date"],
|
2418
|
-
_:-ms-fullscreen,
|
2419
|
-
:root input[type="time"],
|
2420
|
-
_:-ms-fullscreen,
|
2421
|
-
:root input[type="datetime-local"],
|
2422
|
-
_:-ms-fullscreen,
|
2423
|
-
:root input[type="month"] {
|
2424
|
-
line-height: 1.42857143;
|
2425
|
-
}
|
2426
|
-
_:-ms-fullscreen.input-sm,
|
2427
|
-
:root input[type="date"].input-sm,
|
2428
|
-
_:-ms-fullscreen.input-sm,
|
2429
|
-
:root input[type="time"].input-sm,
|
2430
|
-
_:-ms-fullscreen.input-sm,
|
2431
|
-
:root input[type="datetime-local"].input-sm,
|
2432
|
-
_:-ms-fullscreen.input-sm,
|
2433
|
-
:root input[type="month"].input-sm {
|
2434
|
-
line-height: 1.5;
|
2435
|
-
}
|
2436
|
-
_:-ms-fullscreen.input-lg,
|
2437
|
-
:root input[type="date"].input-lg,
|
2438
|
-
_:-ms-fullscreen.input-lg,
|
2439
|
-
:root input[type="time"].input-lg,
|
2440
|
-
_:-ms-fullscreen.input-lg,
|
2441
|
-
:root input[type="datetime-local"].input-lg,
|
2442
|
-
_:-ms-fullscreen.input-lg,
|
2443
|
-
:root input[type="month"].input-lg {
|
2444
|
-
line-height: 1.33;
|
2401
|
+
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
2402
|
+
input[type="date"],
|
2403
|
+
input[type="time"],
|
2404
|
+
input[type="datetime-local"],
|
2405
|
+
input[type="month"] {
|
2406
|
+
line-height: 46px;
|
2407
|
+
}
|
2408
|
+
input[type="date"].input-sm,
|
2409
|
+
input[type="time"].input-sm,
|
2410
|
+
input[type="datetime-local"].input-sm,
|
2411
|
+
input[type="month"].input-sm {
|
2412
|
+
line-height: 30px;
|
2413
|
+
}
|
2414
|
+
input[type="date"].input-lg,
|
2415
|
+
input[type="time"].input-lg,
|
2416
|
+
input[type="datetime-local"].input-lg,
|
2417
|
+
input[type="month"].input-lg {
|
2418
|
+
line-height: 66px;
|
2419
|
+
}
|
2445
2420
|
}
|
2446
2421
|
.form-group {
|
2447
2422
|
margin-bottom: 15px;
|
@@ -2777,7 +2752,8 @@ select[multiple].form-group-lg .form-control {
|
|
2777
2752
|
font-weight: normal;
|
2778
2753
|
text-align: center;
|
2779
2754
|
vertical-align: middle;
|
2780
|
-
touch-action: manipulation;
|
2755
|
+
-ms-touch-action: manipulation;
|
2756
|
+
touch-action: manipulation;
|
2781
2757
|
cursor: pointer;
|
2782
2758
|
background-image: none;
|
2783
2759
|
border: 1px solid transparent;
|
@@ -3188,11 +3164,14 @@ tbody.collapse.in {
|
|
3188
3164
|
height: 0;
|
3189
3165
|
overflow: hidden;
|
3190
3166
|
-webkit-transition-property: height, visibility;
|
3191
|
-
transition-property: height, visibility;
|
3167
|
+
-o-transition-property: height, visibility;
|
3168
|
+
transition-property: height, visibility;
|
3192
3169
|
-webkit-transition-duration: 0.35s;
|
3193
|
-
transition-duration: 0.35s;
|
3170
|
+
-o-transition-duration: 0.35s;
|
3171
|
+
transition-duration: 0.35s;
|
3194
3172
|
-webkit-transition-timing-function: ease;
|
3195
|
-
transition-timing-function: ease;
|
3173
|
+
-o-transition-timing-function: ease;
|
3174
|
+
transition-timing-function: ease;
|
3196
3175
|
}
|
3197
3176
|
.caret {
|
3198
3177
|
display: inline-block;
|
@@ -3228,7 +3207,8 @@ tbody.collapse.in {
|
|
3228
3207
|
border-radius: 4px;
|
3229
3208
|
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
3230
3209
|
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
3231
|
-
background-clip: padding-box;
|
3210
|
+
-webkit-background-clip: padding-box;
|
3211
|
+
background-clip: padding-box;
|
3232
3212
|
}
|
3233
3213
|
.dropdown-menu.pull-right {
|
3234
3214
|
right: 0;
|
@@ -3353,10 +3333,6 @@ tbody.collapse.in {
|
|
3353
3333
|
.btn-group-vertical > .btn.active {
|
3354
3334
|
z-index: 2;
|
3355
3335
|
}
|
3356
|
-
.btn-group > .btn:focus,
|
3357
|
-
.btn-group-vertical > .btn:focus {
|
3358
|
-
outline: 0;
|
3359
|
-
}
|
3360
3336
|
.btn-group .btn + .btn,
|
3361
3337
|
.btn-group .btn + .btn-group,
|
3362
3338
|
.btn-group .btn-group + .btn,
|
@@ -3874,7 +3850,8 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
3874
3850
|
padding-right: 15px;
|
3875
3851
|
padding-left: 15px;
|
3876
3852
|
border-top: 1px solid transparent;
|
3877
|
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
3853
|
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
3854
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
3878
3855
|
-webkit-overflow-scrolling: touch;
|
3879
3856
|
}
|
3880
3857
|
.navbar-collapse.in {
|
@@ -3884,7 +3861,8 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
3884
3861
|
.navbar-collapse {
|
3885
3862
|
width: auto;
|
3886
3863
|
border-top: 0;
|
3887
|
-
box-shadow: none;
|
3864
|
+
-webkit-box-shadow: none;
|
3865
|
+
box-shadow: none;
|
3888
3866
|
}
|
3889
3867
|
.navbar-collapse.collapse {
|
3890
3868
|
display: block !important;
|
@@ -4025,7 +4003,8 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4025
4003
|
margin-top: 0;
|
4026
4004
|
background-color: transparent;
|
4027
4005
|
border: 0;
|
4028
|
-
box-shadow: none;
|
4006
|
+
-webkit-box-shadow: none;
|
4007
|
+
box-shadow: none;
|
4029
4008
|
}
|
4030
4009
|
.navbar-nav .open .dropdown-menu > li > a,
|
4031
4010
|
.navbar-nav .open .dropdown-menu .dropdown-header {
|
@@ -4139,6 +4118,8 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4139
4118
|
border-top-left-radius: 0;
|
4140
4119
|
}
|
4141
4120
|
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
|
4121
|
+
border-top-right-radius: 4px;
|
4122
|
+
border-top-left-radius: 4px;
|
4142
4123
|
border-bottom-right-radius: 0;
|
4143
4124
|
border-bottom-left-radius: 0;
|
4144
4125
|
}
|
@@ -4622,11 +4603,17 @@ a.badge:focus {
|
|
4622
4603
|
text-decoration: none;
|
4623
4604
|
cursor: pointer;
|
4624
4605
|
}
|
4625
|
-
|
4606
|
+
.list-group-item.active > .badge,
|
4626
4607
|
.nav-pills > .active > a > .badge {
|
4627
4608
|
color: #ffffff;
|
4628
4609
|
background-color: #93c54b;
|
4629
4610
|
}
|
4611
|
+
.list-group-item > .badge {
|
4612
|
+
float: right;
|
4613
|
+
}
|
4614
|
+
.list-group-item > .badge + .badge {
|
4615
|
+
margin-right: 5px;
|
4616
|
+
}
|
4630
4617
|
.nav-pills > li > a > .badge {
|
4631
4618
|
margin-left: 3px;
|
4632
4619
|
}
|
@@ -4659,7 +4646,8 @@ a.list-group-item.active > .badge,
|
|
4659
4646
|
.jumbotron {
|
4660
4647
|
padding: 48px 0;
|
4661
4648
|
}
|
4662
|
-
.container .jumbotron
|
4649
|
+
.container .jumbotron,
|
4650
|
+
.container-fluid .jumbotron {
|
4663
4651
|
padding-left: 60px;
|
4664
4652
|
padding-right: 60px;
|
4665
4653
|
}
|
@@ -4777,6 +4765,14 @@ a.thumbnail.active {
|
|
4777
4765
|
background-position: 0 0;
|
4778
4766
|
}
|
4779
4767
|
}
|
4768
|
+
@-o-keyframes progress-bar-stripes {
|
4769
|
+
from {
|
4770
|
+
background-position: 40px 0;
|
4771
|
+
}
|
4772
|
+
to {
|
4773
|
+
background-position: 0 0;
|
4774
|
+
}
|
4775
|
+
}
|
4780
4776
|
@keyframes progress-bar-stripes {
|
4781
4777
|
from {
|
4782
4778
|
background-position: 40px 0;
|
@@ -4814,7 +4810,8 @@ a.thumbnail.active {
|
|
4814
4810
|
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
4815
4811
|
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
4816
4812
|
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
4817
|
-
background-size: 40px 40px;
|
4813
|
+
-webkit-background-size: 40px 40px;
|
4814
|
+
background-size: 40px 40px;
|
4818
4815
|
}
|
4819
4816
|
.progress.active .progress-bar,
|
4820
4817
|
.progress-bar.active {
|
@@ -4909,12 +4906,6 @@ a.thumbnail.active {
|
|
4909
4906
|
border-bottom-right-radius: 4px;
|
4910
4907
|
border-bottom-left-radius: 4px;
|
4911
4908
|
}
|
4912
|
-
.list-group-item > .badge {
|
4913
|
-
float: right;
|
4914
|
-
}
|
4915
|
-
.list-group-item > .badge + .badge {
|
4916
|
-
margin-right: 5px;
|
4917
|
-
}
|
4918
4909
|
a.list-group-item {
|
4919
4910
|
color: #3e3f3a;
|
4920
4911
|
}
|
@@ -5493,7 +5484,6 @@ button.close {
|
|
5493
5484
|
-o-transform: translate(0, -25%);
|
5494
5485
|
transform: translate(0, -25%);
|
5495
5486
|
-webkit-transition: -webkit-transform 0.3s ease-out;
|
5496
|
-
-moz-transition: -moz-transform 0.3s ease-out;
|
5497
5487
|
-o-transition: -o-transform 0.3s ease-out;
|
5498
5488
|
transition: transform 0.3s ease-out;
|
5499
5489
|
}
|
@@ -5519,14 +5509,14 @@ button.close {
|
|
5519
5509
|
border-radius: 6px;
|
5520
5510
|
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
5521
5511
|
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
5522
|
-
background-clip: padding-box;
|
5512
|
+
-webkit-background-clip: padding-box;
|
5513
|
+
background-clip: padding-box;
|
5523
5514
|
outline: 0;
|
5524
5515
|
}
|
5525
5516
|
.modal-backdrop {
|
5526
|
-
position:
|
5517
|
+
position: absolute;
|
5527
5518
|
top: 0;
|
5528
5519
|
right: 0;
|
5529
|
-
bottom: 0;
|
5530
5520
|
left: 0;
|
5531
5521
|
background-color: #000000;
|
5532
5522
|
}
|
@@ -5599,7 +5589,9 @@ button.close {
|
|
5599
5589
|
z-index: 1070;
|
5600
5590
|
display: block;
|
5601
5591
|
visibility: visible;
|
5592
|
+
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
5602
5593
|
font-size: 12px;
|
5594
|
+
font-weight: normal;
|
5603
5595
|
line-height: 1.4;
|
5604
5596
|
opacity: 0;
|
5605
5597
|
filter: alpha(opacity=0);
|
@@ -5649,13 +5641,15 @@ button.close {
|
|
5649
5641
|
}
|
5650
5642
|
.tooltip.top-left .tooltip-arrow {
|
5651
5643
|
bottom: 0;
|
5652
|
-
|
5644
|
+
right: 5px;
|
5645
|
+
margin-bottom: -5px;
|
5653
5646
|
border-width: 5px 5px 0;
|
5654
5647
|
border-top-color: #3e3f3a;
|
5655
5648
|
}
|
5656
5649
|
.tooltip.top-right .tooltip-arrow {
|
5657
5650
|
bottom: 0;
|
5658
|
-
|
5651
|
+
left: 5px;
|
5652
|
+
margin-bottom: -5px;
|
5659
5653
|
border-width: 5px 5px 0;
|
5660
5654
|
border-top-color: #3e3f3a;
|
5661
5655
|
}
|
@@ -5682,13 +5676,15 @@ button.close {
|
|
5682
5676
|
}
|
5683
5677
|
.tooltip.bottom-left .tooltip-arrow {
|
5684
5678
|
top: 0;
|
5685
|
-
|
5679
|
+
right: 5px;
|
5680
|
+
margin-top: -5px;
|
5686
5681
|
border-width: 0 5px 5px;
|
5687
5682
|
border-bottom-color: #3e3f3a;
|
5688
5683
|
}
|
5689
5684
|
.tooltip.bottom-right .tooltip-arrow {
|
5690
5685
|
top: 0;
|
5691
|
-
|
5686
|
+
left: 5px;
|
5687
|
+
margin-top: -5px;
|
5692
5688
|
border-width: 0 5px 5px;
|
5693
5689
|
border-bottom-color: #3e3f3a;
|
5694
5690
|
}
|
@@ -5700,12 +5696,14 @@ button.close {
|
|
5700
5696
|
display: none;
|
5701
5697
|
max-width: 276px;
|
5702
5698
|
padding: 1px;
|
5699
|
+
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
5703
5700
|
font-size: 14px;
|
5704
5701
|
font-weight: normal;
|
5705
5702
|
line-height: 1.42857143;
|
5706
5703
|
text-align: left;
|
5707
5704
|
background-color: #ffffff;
|
5708
|
-
background-clip: padding-box;
|
5705
|
+
-webkit-background-clip: padding-box;
|
5706
|
+
background-clip: padding-box;
|
5709
5707
|
border: 1px solid #dfd7ca;
|
5710
5708
|
border-radius: 6px;
|
5711
5709
|
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
@@ -5832,24 +5830,31 @@ button.close {
|
|
5832
5830
|
}
|
5833
5831
|
@media all and (transform-3d), (-webkit-transform-3d) {
|
5834
5832
|
.carousel-inner > .item {
|
5835
|
-
transition: transform 0.6s ease-in-out;
|
5836
|
-
|
5837
|
-
|
5833
|
+
-webkit-transition: -webkit-transform 0.6s ease-in-out;
|
5834
|
+
-o-transition: -o-transform 0.6s ease-in-out;
|
5835
|
+
transition: transform 0.6s ease-in-out;
|
5836
|
+
-webkit-backface-visibility: hidden;
|
5837
|
+
backface-visibility: hidden;
|
5838
|
+
-webkit-perspective: 1000;
|
5839
|
+
perspective: 1000;
|
5838
5840
|
}
|
5839
5841
|
.carousel-inner > .item.next,
|
5840
5842
|
.carousel-inner > .item.active.right {
|
5841
|
-
transform: translate3d(100%, 0, 0);
|
5843
|
+
-webkit-transform: translate3d(100%, 0, 0);
|
5844
|
+
transform: translate3d(100%, 0, 0);
|
5842
5845
|
left: 0;
|
5843
5846
|
}
|
5844
5847
|
.carousel-inner > .item.prev,
|
5845
5848
|
.carousel-inner > .item.active.left {
|
5846
|
-
transform: translate3d(-100%, 0, 0);
|
5849
|
+
-webkit-transform: translate3d(-100%, 0, 0);
|
5850
|
+
transform: translate3d(-100%, 0, 0);
|
5847
5851
|
left: 0;
|
5848
5852
|
}
|
5849
5853
|
.carousel-inner > .item.next.left,
|
5850
5854
|
.carousel-inner > .item.prev.right,
|
5851
5855
|
.carousel-inner > .item.active {
|
5852
|
-
transform: translate3d(0, 0, 0);
|
5856
|
+
-webkit-transform: translate3d(0, 0, 0);
|
5857
|
+
transform: translate3d(0, 0, 0);
|
5853
5858
|
left: 0;
|
5854
5859
|
}
|
5855
5860
|
}
|
@@ -5899,6 +5904,7 @@ button.close {
|
|
5899
5904
|
.carousel-control.left {
|
5900
5905
|
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
5901
5906
|
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
5907
|
+
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
|
5902
5908
|
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
5903
5909
|
background-repeat: repeat-x;
|
5904
5910
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
|
@@ -5908,6 +5914,7 @@ button.close {
|
|
5908
5914
|
right: 0;
|
5909
5915
|
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
5910
5916
|
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
5917
|
+
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
|
5911
5918
|
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
5912
5919
|
background-repeat: repeat-x;
|
5913
5920
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
|