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:300,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: 3px;
|
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.846;
|
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: 37px;
|
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: 45px;
|
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: 3px;
|
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: 3px;
|
4122
|
+
border-top-left-radius: 3px;
|
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: #2196f3;
|
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: 3px;
|
4910
4907
|
border-bottom-left-radius: 3px;
|
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: 3px;
|
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: "Roboto", "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: #727272;
|
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: #727272;
|
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: #727272;
|
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: #727272;
|
5695
5691
|
}
|
@@ -5701,12 +5697,14 @@ button.close {
|
|
5701
5697
|
display: none;
|
5702
5698
|
max-width: 276px;
|
5703
5699
|
padding: 1px;
|
5700
|
+
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
5704
5701
|
font-size: 13px;
|
5705
5702
|
font-weight: normal;
|
5706
5703
|
line-height: 1.846;
|
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 transparent;
|
5711
5709
|
border-radius: 3px;
|
5712
5710
|
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
@@ -5833,24 +5831,31 @@ button.close {
|
|
5833
5831
|
}
|
5834
5832
|
@media all and (transform-3d), (-webkit-transform-3d) {
|
5835
5833
|
.carousel-inner > .item {
|
5836
|
-
transition: transform 0.6s ease-in-out;
|
5837
|
-
|
5838
|
-
|
5834
|
+
-webkit-transition: -webkit-transform 0.6s ease-in-out;
|
5835
|
+
-o-transition: -o-transform 0.6s ease-in-out;
|
5836
|
+
transition: transform 0.6s ease-in-out;
|
5837
|
+
-webkit-backface-visibility: hidden;
|
5838
|
+
backface-visibility: hidden;
|
5839
|
+
-webkit-perspective: 1000;
|
5840
|
+
perspective: 1000;
|
5839
5841
|
}
|
5840
5842
|
.carousel-inner > .item.next,
|
5841
5843
|
.carousel-inner > .item.active.right {
|
5842
|
-
transform: translate3d(100%, 0, 0);
|
5844
|
+
-webkit-transform: translate3d(100%, 0, 0);
|
5845
|
+
transform: translate3d(100%, 0, 0);
|
5843
5846
|
left: 0;
|
5844
5847
|
}
|
5845
5848
|
.carousel-inner > .item.prev,
|
5846
5849
|
.carousel-inner > .item.active.left {
|
5847
|
-
transform: translate3d(-100%, 0, 0);
|
5850
|
+
-webkit-transform: translate3d(-100%, 0, 0);
|
5851
|
+
transform: translate3d(-100%, 0, 0);
|
5848
5852
|
left: 0;
|
5849
5853
|
}
|
5850
5854
|
.carousel-inner > .item.next.left,
|
5851
5855
|
.carousel-inner > .item.prev.right,
|
5852
5856
|
.carousel-inner > .item.active {
|
5853
|
-
transform: translate3d(0, 0, 0);
|
5857
|
+
-webkit-transform: translate3d(0, 0, 0);
|
5858
|
+
transform: translate3d(0, 0, 0);
|
5854
5859
|
left: 0;
|
5855
5860
|
}
|
5856
5861
|
}
|
@@ -5900,6 +5905,7 @@ button.close {
|
|
5900
5905
|
.carousel-control.left {
|
5901
5906
|
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
5902
5907
|
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
5908
|
+
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
|
5903
5909
|
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
5904
5910
|
background-repeat: repeat-x;
|
5905
5911
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
|
@@ -5909,6 +5915,7 @@ button.close {
|
|
5909
5915
|
right: 0;
|
5910
5916
|
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
5911
5917
|
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
5918
|
+
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
|
5912
5919
|
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
5913
5920
|
background-repeat: repeat-x;
|
5914
5921
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
|
@@ -6352,127 +6359,169 @@ button.close {
|
|
6352
6359
|
}
|
6353
6360
|
.btn-default {
|
6354
6361
|
background-image: -webkit-radial-gradient(circle, #ffffff 80%, #f0f0f0 81%);
|
6362
|
+
background-image: -o-radial-gradient(circle, #ffffff 80%, #f0f0f0 81%);
|
6355
6363
|
background-image: radial-gradient(circle, #ffffff 80%, #f0f0f0 81%);
|
6356
6364
|
background-repeat: no-repeat;
|
6357
|
-
background-size: 200%;
|
6365
|
+
-webkit-background-size: 200% 200%;
|
6366
|
+
background-size: 200%;
|
6358
6367
|
background-position: 50%;
|
6359
|
-
transition: background-size 2s;
|
6368
|
+
-webkit-transition: background-size 2s;
|
6369
|
+
-o-transition: background-size 2s;
|
6370
|
+
transition: background-size 2s;
|
6360
6371
|
}
|
6361
6372
|
.btn-default:hover {
|
6362
|
-
background-size: 100%;
|
6373
|
+
-webkit-background-size: 100% 100%;
|
6374
|
+
background-size: 100%;
|
6363
6375
|
border-color: #f0f0f0;
|
6364
6376
|
}
|
6365
6377
|
.btn-default:active {
|
6366
6378
|
background-color: #f0f0f0;
|
6367
6379
|
background-image: -webkit-radial-gradient(circle, #f0f0f0 10%, #ffffff 11%);
|
6380
|
+
background-image: -o-radial-gradient(circle, #f0f0f0 10%, #ffffff 11%);
|
6368
6381
|
background-image: radial-gradient(circle, #f0f0f0 10%, #ffffff 11%);
|
6369
6382
|
background-repeat: no-repeat;
|
6370
|
-
background-size: 1000%;
|
6383
|
+
-webkit-background-size: 1000% 1000%;
|
6384
|
+
background-size: 1000%;
|
6371
6385
|
-webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
|
6372
6386
|
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
|
6373
6387
|
}
|
6374
6388
|
.btn-primary {
|
6375
6389
|
background-image: -webkit-radial-gradient(circle, #2196f3 80%, #0d87e9 81%);
|
6390
|
+
background-image: -o-radial-gradient(circle, #2196f3 80%, #0d87e9 81%);
|
6376
6391
|
background-image: radial-gradient(circle, #2196f3 80%, #0d87e9 81%);
|
6377
6392
|
background-repeat: no-repeat;
|
6378
|
-
background-size: 200%;
|
6393
|
+
-webkit-background-size: 200% 200%;
|
6394
|
+
background-size: 200%;
|
6379
6395
|
background-position: 50%;
|
6380
|
-
transition: background-size 2s;
|
6396
|
+
-webkit-transition: background-size 2s;
|
6397
|
+
-o-transition: background-size 2s;
|
6398
|
+
transition: background-size 2s;
|
6381
6399
|
}
|
6382
6400
|
.btn-primary:hover {
|
6383
|
-
background-size: 100%;
|
6401
|
+
-webkit-background-size: 100% 100%;
|
6402
|
+
background-size: 100%;
|
6384
6403
|
border-color: #0d87e9;
|
6385
6404
|
}
|
6386
6405
|
.btn-primary:active {
|
6387
6406
|
background-color: #0d87e9;
|
6388
6407
|
background-image: -webkit-radial-gradient(circle, #0d87e9 10%, #2196f3 11%);
|
6408
|
+
background-image: -o-radial-gradient(circle, #0d87e9 10%, #2196f3 11%);
|
6389
6409
|
background-image: radial-gradient(circle, #0d87e9 10%, #2196f3 11%);
|
6390
6410
|
background-repeat: no-repeat;
|
6391
|
-
background-size: 1000%;
|
6411
|
+
-webkit-background-size: 1000% 1000%;
|
6412
|
+
background-size: 1000%;
|
6392
6413
|
-webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
|
6393
6414
|
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
|
6394
6415
|
}
|
6395
6416
|
.btn-success {
|
6396
6417
|
background-image: -webkit-radial-gradient(circle, #4caf50 80%, #439a46 81%);
|
6418
|
+
background-image: -o-radial-gradient(circle, #4caf50 80%, #439a46 81%);
|
6397
6419
|
background-image: radial-gradient(circle, #4caf50 80%, #439a46 81%);
|
6398
6420
|
background-repeat: no-repeat;
|
6399
|
-
background-size: 200%;
|
6421
|
+
-webkit-background-size: 200% 200%;
|
6422
|
+
background-size: 200%;
|
6400
6423
|
background-position: 50%;
|
6401
|
-
transition: background-size 2s;
|
6424
|
+
-webkit-transition: background-size 2s;
|
6425
|
+
-o-transition: background-size 2s;
|
6426
|
+
transition: background-size 2s;
|
6402
6427
|
}
|
6403
6428
|
.btn-success:hover {
|
6404
|
-
background-size: 100%;
|
6429
|
+
-webkit-background-size: 100% 100%;
|
6430
|
+
background-size: 100%;
|
6405
6431
|
border-color: #439a46;
|
6406
6432
|
}
|
6407
6433
|
.btn-success:active {
|
6408
6434
|
background-color: #439a46;
|
6409
6435
|
background-image: -webkit-radial-gradient(circle, #439a46 10%, #4caf50 11%);
|
6436
|
+
background-image: -o-radial-gradient(circle, #439a46 10%, #4caf50 11%);
|
6410
6437
|
background-image: radial-gradient(circle, #439a46 10%, #4caf50 11%);
|
6411
6438
|
background-repeat: no-repeat;
|
6412
|
-
background-size: 1000%;
|
6439
|
+
-webkit-background-size: 1000% 1000%;
|
6440
|
+
background-size: 1000%;
|
6413
6441
|
-webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
|
6414
6442
|
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
|
6415
6443
|
}
|
6416
6444
|
.btn-info {
|
6417
6445
|
background-image: -webkit-radial-gradient(circle, #9c27b0 80%, #862197 81%);
|
6446
|
+
background-image: -o-radial-gradient(circle, #9c27b0 80%, #862197 81%);
|
6418
6447
|
background-image: radial-gradient(circle, #9c27b0 80%, #862197 81%);
|
6419
6448
|
background-repeat: no-repeat;
|
6420
|
-
background-size: 200%;
|
6449
|
+
-webkit-background-size: 200% 200%;
|
6450
|
+
background-size: 200%;
|
6421
6451
|
background-position: 50%;
|
6422
|
-
transition: background-size 2s;
|
6452
|
+
-webkit-transition: background-size 2s;
|
6453
|
+
-o-transition: background-size 2s;
|
6454
|
+
transition: background-size 2s;
|
6423
6455
|
}
|
6424
6456
|
.btn-info:hover {
|
6425
|
-
background-size: 100%;
|
6457
|
+
-webkit-background-size: 100% 100%;
|
6458
|
+
background-size: 100%;
|
6426
6459
|
border-color: #862197;
|
6427
6460
|
}
|
6428
6461
|
.btn-info:active {
|
6429
6462
|
background-color: #862197;
|
6430
6463
|
background-image: -webkit-radial-gradient(circle, #862197 10%, #9c27b0 11%);
|
6464
|
+
background-image: -o-radial-gradient(circle, #862197 10%, #9c27b0 11%);
|
6431
6465
|
background-image: radial-gradient(circle, #862197 10%, #9c27b0 11%);
|
6432
6466
|
background-repeat: no-repeat;
|
6433
|
-
background-size: 1000%;
|
6467
|
+
-webkit-background-size: 1000% 1000%;
|
6468
|
+
background-size: 1000%;
|
6434
6469
|
-webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
|
6435
6470
|
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
|
6436
6471
|
}
|
6437
6472
|
.btn-warning {
|
6438
6473
|
background-image: -webkit-radial-gradient(circle, #ff9800 80%, #e08600 81%);
|
6474
|
+
background-image: -o-radial-gradient(circle, #ff9800 80%, #e08600 81%);
|
6439
6475
|
background-image: radial-gradient(circle, #ff9800 80%, #e08600 81%);
|
6440
6476
|
background-repeat: no-repeat;
|
6441
|
-
background-size: 200%;
|
6477
|
+
-webkit-background-size: 200% 200%;
|
6478
|
+
background-size: 200%;
|
6442
6479
|
background-position: 50%;
|
6443
|
-
transition: background-size 2s;
|
6480
|
+
-webkit-transition: background-size 2s;
|
6481
|
+
-o-transition: background-size 2s;
|
6482
|
+
transition: background-size 2s;
|
6444
6483
|
}
|
6445
6484
|
.btn-warning:hover {
|
6446
|
-
background-size: 100%;
|
6485
|
+
-webkit-background-size: 100% 100%;
|
6486
|
+
background-size: 100%;
|
6447
6487
|
border-color: #e08600;
|
6448
6488
|
}
|
6449
6489
|
.btn-warning:active {
|
6450
6490
|
background-color: #e08600;
|
6451
6491
|
background-image: -webkit-radial-gradient(circle, #e08600 10%, #ff9800 11%);
|
6492
|
+
background-image: -o-radial-gradient(circle, #e08600 10%, #ff9800 11%);
|
6452
6493
|
background-image: radial-gradient(circle, #e08600 10%, #ff9800 11%);
|
6453
6494
|
background-repeat: no-repeat;
|
6454
|
-
background-size: 1000%;
|
6495
|
+
-webkit-background-size: 1000% 1000%;
|
6496
|
+
background-size: 1000%;
|
6455
6497
|
-webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
|
6456
6498
|
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
|
6457
6499
|
}
|
6458
6500
|
.btn-danger {
|
6459
6501
|
background-image: -webkit-radial-gradient(circle, #e51c23 80%, #cb171e 81%);
|
6502
|
+
background-image: -o-radial-gradient(circle, #e51c23 80%, #cb171e 81%);
|
6460
6503
|
background-image: radial-gradient(circle, #e51c23 80%, #cb171e 81%);
|
6461
6504
|
background-repeat: no-repeat;
|
6462
|
-
background-size: 200%;
|
6505
|
+
-webkit-background-size: 200% 200%;
|
6506
|
+
background-size: 200%;
|
6463
6507
|
background-position: 50%;
|
6464
|
-
transition: background-size 2s;
|
6508
|
+
-webkit-transition: background-size 2s;
|
6509
|
+
-o-transition: background-size 2s;
|
6510
|
+
transition: background-size 2s;
|
6465
6511
|
}
|
6466
6512
|
.btn-danger:hover {
|
6467
|
-
background-size: 100%;
|
6513
|
+
-webkit-background-size: 100% 100%;
|
6514
|
+
background-size: 100%;
|
6468
6515
|
border-color: #cb171e;
|
6469
6516
|
}
|
6470
6517
|
.btn-danger:active {
|
6471
6518
|
background-color: #cb171e;
|
6472
6519
|
background-image: -webkit-radial-gradient(circle, #cb171e 10%, #e51c23 11%);
|
6520
|
+
background-image: -o-radial-gradient(circle, #cb171e 10%, #e51c23 11%);
|
6473
6521
|
background-image: radial-gradient(circle, #cb171e 10%, #e51c23 11%);
|
6474
6522
|
background-repeat: no-repeat;
|
6475
|
-
background-size: 1000%;
|
6523
|
+
-webkit-background-size: 1000% 1000%;
|
6524
|
+
background-size: 1000%;
|
6476
6525
|
-webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
|
6477
6526
|
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
|
6478
6527
|
}
|