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=Open+Sans:400,700");
|
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: 36px;
|
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: 53px;
|
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;
|
@@ -3229,7 +3208,8 @@ tbody.collapse.in {
|
|
3229
3208
|
border-radius: 4px;
|
3230
3209
|
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
3231
3210
|
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
3232
|
-
background-clip: padding-box;
|
3211
|
+
-webkit-background-clip: padding-box;
|
3212
|
+
background-clip: padding-box;
|
3233
3213
|
}
|
3234
3214
|
.dropdown-menu.pull-right {
|
3235
3215
|
right: 0;
|
@@ -3354,10 +3334,6 @@ tbody.collapse.in {
|
|
3354
3334
|
.btn-group-vertical > .btn.active {
|
3355
3335
|
z-index: 2;
|
3356
3336
|
}
|
3357
|
-
.btn-group > .btn:focus,
|
3358
|
-
.btn-group-vertical > .btn:focus {
|
3359
|
-
outline: 0;
|
3360
|
-
}
|
3361
3337
|
.btn-group .btn + .btn,
|
3362
3338
|
.btn-group .btn + .btn-group,
|
3363
3339
|
.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: #d9230f;
|
4628
4609
|
background-color: #ffffff;
|
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: #555555;
|
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
|
}
|
@@ -5520,14 +5510,14 @@ button.close {
|
|
5520
5510
|
border-radius: 6px;
|
5521
5511
|
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
5522
5512
|
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
5523
|
-
background-clip: padding-box;
|
5513
|
+
-webkit-background-clip: padding-box;
|
5514
|
+
background-clip: padding-box;
|
5524
5515
|
outline: 0;
|
5525
5516
|
}
|
5526
5517
|
.modal-backdrop {
|
5527
|
-
position:
|
5518
|
+
position: absolute;
|
5528
5519
|
top: 0;
|
5529
5520
|
right: 0;
|
5530
|
-
bottom: 0;
|
5531
5521
|
left: 0;
|
5532
5522
|
background-color: #000000;
|
5533
5523
|
}
|
@@ -5600,7 +5590,9 @@ button.close {
|
|
5600
5590
|
z-index: 1070;
|
5601
5591
|
display: block;
|
5602
5592
|
visibility: visible;
|
5593
|
+
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
5603
5594
|
font-size: 12px;
|
5595
|
+
font-weight: normal;
|
5604
5596
|
line-height: 1.4;
|
5605
5597
|
opacity: 0;
|
5606
5598
|
filter: alpha(opacity=0);
|
@@ -5650,13 +5642,15 @@ button.close {
|
|
5650
5642
|
}
|
5651
5643
|
.tooltip.top-left .tooltip-arrow {
|
5652
5644
|
bottom: 0;
|
5653
|
-
|
5645
|
+
right: 5px;
|
5646
|
+
margin-bottom: -5px;
|
5654
5647
|
border-width: 5px 5px 0;
|
5655
5648
|
border-top-color: rgba(0, 0, 0, 0.9);
|
5656
5649
|
}
|
5657
5650
|
.tooltip.top-right .tooltip-arrow {
|
5658
5651
|
bottom: 0;
|
5659
|
-
|
5652
|
+
left: 5px;
|
5653
|
+
margin-bottom: -5px;
|
5660
5654
|
border-width: 5px 5px 0;
|
5661
5655
|
border-top-color: rgba(0, 0, 0, 0.9);
|
5662
5656
|
}
|
@@ -5683,13 +5677,15 @@ button.close {
|
|
5683
5677
|
}
|
5684
5678
|
.tooltip.bottom-left .tooltip-arrow {
|
5685
5679
|
top: 0;
|
5686
|
-
|
5680
|
+
right: 5px;
|
5681
|
+
margin-top: -5px;
|
5687
5682
|
border-width: 0 5px 5px;
|
5688
5683
|
border-bottom-color: rgba(0, 0, 0, 0.9);
|
5689
5684
|
}
|
5690
5685
|
.tooltip.bottom-right .tooltip-arrow {
|
5691
5686
|
top: 0;
|
5692
|
-
|
5687
|
+
left: 5px;
|
5688
|
+
margin-top: -5px;
|
5693
5689
|
border-width: 0 5px 5px;
|
5694
5690
|
border-bottom-color: rgba(0, 0, 0, 0.9);
|
5695
5691
|
}
|
@@ -5701,12 +5697,14 @@ button.close {
|
|
5701
5697
|
display: none;
|
5702
5698
|
max-width: 276px;
|
5703
5699
|
padding: 1px;
|
5700
|
+
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
5704
5701
|
font-size: 13px;
|
5705
5702
|
font-weight: normal;
|
5706
5703
|
line-height: 1.42857143;
|
5707
5704
|
text-align: left;
|
5708
5705
|
background-color: #ffffff;
|
5709
|
-
background-clip: padding-box;
|
5706
|
+
-webkit-background-clip: padding-box;
|
5707
|
+
background-clip: padding-box;
|
5710
5708
|
border: 1px solid #cccccc;
|
5711
5709
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
5712
5710
|
border-radius: 6px;
|
@@ -5834,24 +5832,31 @@ button.close {
|
|
5834
5832
|
}
|
5835
5833
|
@media all and (transform-3d), (-webkit-transform-3d) {
|
5836
5834
|
.carousel-inner > .item {
|
5837
|
-
transition: transform 0.6s ease-in-out;
|
5838
|
-
|
5839
|
-
|
5835
|
+
-webkit-transition: -webkit-transform 0.6s ease-in-out;
|
5836
|
+
-o-transition: -o-transform 0.6s ease-in-out;
|
5837
|
+
transition: transform 0.6s ease-in-out;
|
5838
|
+
-webkit-backface-visibility: hidden;
|
5839
|
+
backface-visibility: hidden;
|
5840
|
+
-webkit-perspective: 1000;
|
5841
|
+
perspective: 1000;
|
5840
5842
|
}
|
5841
5843
|
.carousel-inner > .item.next,
|
5842
5844
|
.carousel-inner > .item.active.right {
|
5843
|
-
transform: translate3d(100%, 0, 0);
|
5845
|
+
-webkit-transform: translate3d(100%, 0, 0);
|
5846
|
+
transform: translate3d(100%, 0, 0);
|
5844
5847
|
left: 0;
|
5845
5848
|
}
|
5846
5849
|
.carousel-inner > .item.prev,
|
5847
5850
|
.carousel-inner > .item.active.left {
|
5848
|
-
transform: translate3d(-100%, 0, 0);
|
5851
|
+
-webkit-transform: translate3d(-100%, 0, 0);
|
5852
|
+
transform: translate3d(-100%, 0, 0);
|
5849
5853
|
left: 0;
|
5850
5854
|
}
|
5851
5855
|
.carousel-inner > .item.next.left,
|
5852
5856
|
.carousel-inner > .item.prev.right,
|
5853
5857
|
.carousel-inner > .item.active {
|
5854
|
-
transform: translate3d(0, 0, 0);
|
5858
|
+
-webkit-transform: translate3d(0, 0, 0);
|
5859
|
+
transform: translate3d(0, 0, 0);
|
5855
5860
|
left: 0;
|
5856
5861
|
}
|
5857
5862
|
}
|
@@ -5901,6 +5906,7 @@ button.close {
|
|
5901
5906
|
.carousel-control.left {
|
5902
5907
|
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
5903
5908
|
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
5909
|
+
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
|
5904
5910
|
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
5905
5911
|
background-repeat: repeat-x;
|
5906
5912
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
|
@@ -5910,6 +5916,7 @@ button.close {
|
|
5910
5916
|
right: 0;
|
5911
5917
|
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
5912
5918
|
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
5919
|
+
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
|
5913
5920
|
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
5914
5921
|
background-repeat: repeat-x;
|
5915
5922
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
|
@@ -6330,60 +6337,72 @@ button.close {
|
|
6330
6337
|
.btn-default:hover {
|
6331
6338
|
background-image: -webkit-linear-gradient(#4f5151, #474949 6%, #3f4141);
|
6332
6339
|
background-image: -o-linear-gradient(#4f5151, #474949 6%, #3f4141);
|
6340
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#4f5151), color-stop(6%, #474949), to(#3f4141));
|
6333
6341
|
background-image: linear-gradient(#4f5151, #474949 6%, #3f4141);
|
6334
6342
|
background-repeat: no-repeat;
|
6335
6343
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff4f5151', endColorstr='#ff3f4141', GradientType=0);
|
6336
|
-
filter: none;
|
6344
|
+
-webkit-filter: none;
|
6345
|
+
filter: none;
|
6337
6346
|
border: 1px solid #2e2f2f;
|
6338
6347
|
}
|
6339
6348
|
.btn-primary,
|
6340
6349
|
.btn-primary:hover {
|
6341
6350
|
background-image: -webkit-linear-gradient(#e72510, #d9230f 6%, #cb210e);
|
6342
6351
|
background-image: -o-linear-gradient(#e72510, #d9230f 6%, #cb210e);
|
6352
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#e72510), color-stop(6%, #d9230f), to(#cb210e));
|
6343
6353
|
background-image: linear-gradient(#e72510, #d9230f 6%, #cb210e);
|
6344
6354
|
background-repeat: no-repeat;
|
6345
6355
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe72510', endColorstr='#ffcb210e', GradientType=0);
|
6346
|
-
filter: none;
|
6356
|
+
-webkit-filter: none;
|
6357
|
+
filter: none;
|
6347
6358
|
border: 1px solid #a91b0c;
|
6348
6359
|
}
|
6349
6360
|
.btn-success,
|
6350
6361
|
.btn-success:hover {
|
6351
6362
|
background-image: -webkit-linear-gradient(#4da309, #469408 6%, #3f8507);
|
6352
6363
|
background-image: -o-linear-gradient(#4da309, #469408 6%, #3f8507);
|
6364
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#4da309), color-stop(6%, #469408), to(#3f8507));
|
6353
6365
|
background-image: linear-gradient(#4da309, #469408 6%, #3f8507);
|
6354
6366
|
background-repeat: no-repeat;
|
6355
6367
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff4da309', endColorstr='#ff3f8507', GradientType=0);
|
6356
|
-
filter: none;
|
6368
|
+
-webkit-filter: none;
|
6369
|
+
filter: none;
|
6357
6370
|
border: 1px solid #2f6405;
|
6358
6371
|
}
|
6359
6372
|
.btn-info,
|
6360
6373
|
.btn-info:hover {
|
6361
6374
|
background-image: -webkit-linear-gradient(#02a5de, #029acf 6%, #028fc0);
|
6362
6375
|
background-image: -o-linear-gradient(#02a5de, #029acf 6%, #028fc0);
|
6376
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#02a5de), color-stop(6%, #029acf), to(#028fc0));
|
6363
6377
|
background-image: linear-gradient(#02a5de, #029acf 6%, #028fc0);
|
6364
6378
|
background-repeat: no-repeat;
|
6365
6379
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff02a5de', endColorstr='#ff028fc0', GradientType=0);
|
6366
|
-
filter: none;
|
6380
|
+
-webkit-filter: none;
|
6381
|
+
filter: none;
|
6367
6382
|
border: 1px solid #02749c;
|
6368
6383
|
}
|
6369
6384
|
.btn-warning,
|
6370
6385
|
.btn-warning:hover {
|
6371
6386
|
background-image: -webkit-linear-gradient(#a54caa, #9b479f 6%, #914294);
|
6372
6387
|
background-image: -o-linear-gradient(#a54caa, #9b479f 6%, #914294);
|
6388
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#a54caa), color-stop(6%, #9b479f), to(#914294));
|
6373
6389
|
background-image: linear-gradient(#a54caa, #9b479f 6%, #914294);
|
6374
6390
|
background-repeat: no-repeat;
|
6375
6391
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa54caa', endColorstr='#ff914294', GradientType=0);
|
6376
|
-
filter: none;
|
6392
|
+
-webkit-filter: none;
|
6393
|
+
filter: none;
|
6377
6394
|
border: 1px solid #79377c;
|
6378
6395
|
}
|
6379
6396
|
.btn-danger,
|
6380
6397
|
.btn-danger:hover {
|
6381
6398
|
background-image: -webkit-linear-gradient(#e08b27, #d9831f 6%, #cc7b1d);
|
6382
6399
|
background-image: -o-linear-gradient(#e08b27, #d9831f 6%, #cc7b1d);
|
6400
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#e08b27), color-stop(6%, #d9831f), to(#cc7b1d));
|
6383
6401
|
background-image: linear-gradient(#e08b27, #d9831f 6%, #cc7b1d);
|
6384
6402
|
background-repeat: no-repeat;
|
6385
6403
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe08b27', endColorstr='#ffcc7b1d', GradientType=0);
|
6386
|
-
filter: none;
|
6404
|
+
-webkit-filter: none;
|
6405
|
+
filter: none;
|
6387
6406
|
border: 1px solid #ac6819;
|
6388
6407
|
}
|
6389
6408
|
body {
|