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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5991163f386e78d44373f94b4de27ddb68b33ca7
|
4
|
+
data.tar.gz: f8e860c05b3e884e91f04dff1be0aba37207802f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea10fee3b4def88ceb26d83576a83b5cb7b45f9424f786b457005d5d3d6293172c1c74319b0f03ee48a9e4161ad40069258e41cfc2cb1b02806de7e90b380fae
|
7
|
+
data.tar.gz: 8404f8956ca9ff4740b38bd306f1b71c0b3d5f1b4aeabd13d5dd16b860d9a403235a3b51967a08f8eb6b2daa5b86ab4fb24ffd41b59125924cf07a041f47f0fd
|
@@ -26,7 +26,7 @@ module BootswatchRails
|
|
26
26
|
ActiveSupport.on_load(:action_view) do
|
27
27
|
include BootswatchRails::ActionViewExtensions
|
28
28
|
end
|
29
|
-
app.config.assets.precompile += %w(cerulean.css cosmo.css
|
29
|
+
app.config.assets.precompile += %w(cerulean.css cosmo.css cyborg.css darkly.css flatly.css journal.css lumen.css paper.css readable.css sandstone.css simplex.css slate.css spacelab.css superhero.css united.css yeti.css)
|
30
30
|
app.config.assets.paths << File.expand_path('../../../vendor/assets/fonts', __FILE__)
|
31
31
|
end
|
32
32
|
end
|
@@ -1,9 +1,9 @@
|
|
1
1
|
module BootswatchRails
|
2
|
-
BOOTSTRAP = "3.3.
|
2
|
+
BOOTSTRAP = "3.3.1"
|
3
3
|
BOOTSWATCH = "3.3.0"
|
4
4
|
FONT_AWESOME = "4.2.0"
|
5
|
-
VERSION = "3.3.0.
|
5
|
+
VERSION = "3.3.0.11"
|
6
6
|
|
7
|
-
THEMES = [:cerulean, :cosmo, :
|
7
|
+
THEMES = [:cerulean, :cosmo, :cyborg, :darkly, :flatly, :journal, :lumen, :paper, :readable, :sandstone, :simplex, :slate, :spacelab, :superhero, :united, :yeti]
|
8
8
|
DEFAULT = 0
|
9
9
|
end
|
@@ -5,6 +5,9 @@ class <%= class_name %> < ActiveRecord::Base
|
|
5
5
|
validates :password, length: { minimum: 6 }, unless: Proc.new { |a| a.password.blank? }
|
6
6
|
validates :password, confirmation: true
|
7
7
|
validates :password_confirmation, presence: true, on: :create
|
8
|
+
<%- if options.authority? -%>
|
9
|
+
include Authority::UserAbilities
|
10
|
+
<%- end -%>
|
8
11
|
|
9
12
|
default_scope { order(:name) }
|
10
13
|
scope :active, -> { where(active: true) }
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* bootswatch v3.3.
|
2
|
+
* bootswatch v3.3.1+1
|
3
3
|
* Homepage: http://bootswatch.com
|
4
4
|
* Copyright 2012-2014 Thomas Park
|
5
5
|
* Licensed under MIT
|
@@ -96,7 +96,8 @@ figure {
|
|
96
96
|
}
|
97
97
|
hr {
|
98
98
|
-moz-box-sizing: content-box;
|
99
|
-
box-sizing: content-box;
|
99
|
+
-webkit-box-sizing: content-box;
|
100
|
+
box-sizing: content-box;
|
100
101
|
height: 0;
|
101
102
|
}
|
102
103
|
pre {
|
@@ -146,7 +147,9 @@ input {
|
|
146
147
|
}
|
147
148
|
input[type="checkbox"],
|
148
149
|
input[type="radio"] {
|
149
|
-
box-sizing: border-box;
|
150
|
+
-webkit-box-sizing: border-box;
|
151
|
+
-moz-box-sizing: border-box;
|
152
|
+
box-sizing: border-box;
|
150
153
|
padding: 0;
|
151
154
|
}
|
152
155
|
input[type="number"]::-webkit-inner-spin-button,
|
@@ -193,7 +196,8 @@ th {
|
|
193
196
|
*:after {
|
194
197
|
background: transparent !important;
|
195
198
|
color: #000 !important;
|
196
|
-
box-shadow: none !important;
|
199
|
+
-webkit-box-shadow: none !important;
|
200
|
+
box-shadow: none !important;
|
197
201
|
text-shadow: none !important;
|
198
202
|
}
|
199
203
|
a,
|
@@ -1345,13 +1349,15 @@ kbd {
|
|
1345
1349
|
color: #ffffff;
|
1346
1350
|
background-color: #333333;
|
1347
1351
|
border-radius: 3px;
|
1348
|
-
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1352
|
+
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1353
|
+
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1349
1354
|
}
|
1350
1355
|
kbd kbd {
|
1351
1356
|
padding: 0;
|
1352
1357
|
font-size: 100%;
|
1353
1358
|
font-weight: bold;
|
1354
|
-
box-shadow: none;
|
1359
|
+
-webkit-box-shadow: none;
|
1360
|
+
box-shadow: none;
|
1355
1361
|
}
|
1356
1362
|
pre {
|
1357
1363
|
display: block;
|
@@ -2358,7 +2364,7 @@ output {
|
|
2358
2364
|
border-radius: 4px;
|
2359
2365
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2360
2366
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2361
|
-
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
2367
|
+
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
|
2362
2368
|
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
2363
2369
|
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
2364
2370
|
}
|
@@ -2391,56 +2397,25 @@ textarea.form-control {
|
|
2391
2397
|
input[type="search"] {
|
2392
2398
|
-webkit-appearance: none;
|
2393
2399
|
}
|
2394
|
-
|
2395
|
-
input[type="
|
2396
|
-
input[type="
|
2397
|
-
input[type="
|
2398
|
-
|
2399
|
-
|
2400
|
-
}
|
2401
|
-
input[type="date"].input-sm,
|
2402
|
-
input[type="time"].input-sm,
|
2403
|
-
input[type="datetime-local"].input-sm,
|
2404
|
-
input[type="month"].input-sm {
|
2405
|
-
|
2406
|
-
|
2407
|
-
|
2408
|
-
input[type="
|
2409
|
-
input[type="
|
2410
|
-
input[type="
|
2411
|
-
|
2412
|
-
|
2413
|
-
line-height: 1.33 \0;
|
2414
|
-
}
|
2415
|
-
_:-ms-fullscreen,
|
2416
|
-
:root input[type="date"],
|
2417
|
-
_:-ms-fullscreen,
|
2418
|
-
:root input[type="time"],
|
2419
|
-
_:-ms-fullscreen,
|
2420
|
-
:root input[type="datetime-local"],
|
2421
|
-
_:-ms-fullscreen,
|
2422
|
-
:root input[type="month"] {
|
2423
|
-
line-height: 1.42857143;
|
2424
|
-
}
|
2425
|
-
_:-ms-fullscreen.input-sm,
|
2426
|
-
:root input[type="date"].input-sm,
|
2427
|
-
_:-ms-fullscreen.input-sm,
|
2428
|
-
:root input[type="time"].input-sm,
|
2429
|
-
_:-ms-fullscreen.input-sm,
|
2430
|
-
:root input[type="datetime-local"].input-sm,
|
2431
|
-
_:-ms-fullscreen.input-sm,
|
2432
|
-
:root input[type="month"].input-sm {
|
2433
|
-
line-height: 1.5;
|
2434
|
-
}
|
2435
|
-
_:-ms-fullscreen.input-lg,
|
2436
|
-
:root input[type="date"].input-lg,
|
2437
|
-
_:-ms-fullscreen.input-lg,
|
2438
|
-
:root input[type="time"].input-lg,
|
2439
|
-
_:-ms-fullscreen.input-lg,
|
2440
|
-
:root input[type="datetime-local"].input-lg,
|
2441
|
-
_:-ms-fullscreen.input-lg,
|
2442
|
-
:root input[type="month"].input-lg {
|
2443
|
-
line-height: 1.33;
|
2400
|
+
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
2401
|
+
input[type="date"],
|
2402
|
+
input[type="time"],
|
2403
|
+
input[type="datetime-local"],
|
2404
|
+
input[type="month"] {
|
2405
|
+
line-height: 38px;
|
2406
|
+
}
|
2407
|
+
input[type="date"].input-sm,
|
2408
|
+
input[type="time"].input-sm,
|
2409
|
+
input[type="datetime-local"].input-sm,
|
2410
|
+
input[type="month"].input-sm {
|
2411
|
+
line-height: 30px;
|
2412
|
+
}
|
2413
|
+
input[type="date"].input-lg,
|
2414
|
+
input[type="time"].input-lg,
|
2415
|
+
input[type="datetime-local"].input-lg,
|
2416
|
+
input[type="month"].input-lg {
|
2417
|
+
line-height: 54px;
|
2418
|
+
}
|
2444
2419
|
}
|
2445
2420
|
.form-group {
|
2446
2421
|
margin-bottom: 15px;
|
@@ -2776,7 +2751,8 @@ select[multiple].form-group-lg .form-control {
|
|
2776
2751
|
font-weight: normal;
|
2777
2752
|
text-align: center;
|
2778
2753
|
vertical-align: middle;
|
2779
|
-
touch-action: manipulation;
|
2754
|
+
-ms-touch-action: manipulation;
|
2755
|
+
touch-action: manipulation;
|
2780
2756
|
cursor: pointer;
|
2781
2757
|
background-image: none;
|
2782
2758
|
border: 1px solid transparent;
|
@@ -3187,11 +3163,14 @@ tbody.collapse.in {
|
|
3187
3163
|
height: 0;
|
3188
3164
|
overflow: hidden;
|
3189
3165
|
-webkit-transition-property: height, visibility;
|
3190
|
-
transition-property: height, visibility;
|
3166
|
+
-o-transition-property: height, visibility;
|
3167
|
+
transition-property: height, visibility;
|
3191
3168
|
-webkit-transition-duration: 0.35s;
|
3192
|
-
transition-duration: 0.35s;
|
3169
|
+
-o-transition-duration: 0.35s;
|
3170
|
+
transition-duration: 0.35s;
|
3193
3171
|
-webkit-transition-timing-function: ease;
|
3194
|
-
transition-timing-function: ease;
|
3172
|
+
-o-transition-timing-function: ease;
|
3173
|
+
transition-timing-function: ease;
|
3195
3174
|
}
|
3196
3175
|
.caret {
|
3197
3176
|
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,
|
@@ -3873,7 +3849,8 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
3873
3849
|
padding-right: 15px;
|
3874
3850
|
padding-left: 15px;
|
3875
3851
|
border-top: 1px solid transparent;
|
3876
|
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
3852
|
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
3853
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
3877
3854
|
-webkit-overflow-scrolling: touch;
|
3878
3855
|
}
|
3879
3856
|
.navbar-collapse.in {
|
@@ -3883,7 +3860,8 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
3883
3860
|
.navbar-collapse {
|
3884
3861
|
width: auto;
|
3885
3862
|
border-top: 0;
|
3886
|
-
box-shadow: none;
|
3863
|
+
-webkit-box-shadow: none;
|
3864
|
+
box-shadow: none;
|
3887
3865
|
}
|
3888
3866
|
.navbar-collapse.collapse {
|
3889
3867
|
display: block !important;
|
@@ -4024,7 +4002,8 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4024
4002
|
margin-top: 0;
|
4025
4003
|
background-color: transparent;
|
4026
4004
|
border: 0;
|
4027
|
-
box-shadow: none;
|
4005
|
+
-webkit-box-shadow: none;
|
4006
|
+
box-shadow: none;
|
4028
4007
|
}
|
4029
4008
|
.navbar-nav .open .dropdown-menu > li > a,
|
4030
4009
|
.navbar-nav .open .dropdown-menu .dropdown-header {
|
@@ -4138,6 +4117,8 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4138
4117
|
border-top-left-radius: 0;
|
4139
4118
|
}
|
4140
4119
|
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
|
4120
|
+
border-top-right-radius: 4px;
|
4121
|
+
border-top-left-radius: 4px;
|
4141
4122
|
border-bottom-right-radius: 0;
|
4142
4123
|
border-bottom-left-radius: 0;
|
4143
4124
|
}
|
@@ -4621,11 +4602,17 @@ a.badge:focus {
|
|
4621
4602
|
text-decoration: none;
|
4622
4603
|
cursor: pointer;
|
4623
4604
|
}
|
4624
|
-
|
4605
|
+
.list-group-item.active > .badge,
|
4625
4606
|
.nav-pills > .active > a > .badge {
|
4626
4607
|
color: #2fa4e7;
|
4627
4608
|
background-color: #ffffff;
|
4628
4609
|
}
|
4610
|
+
.list-group-item > .badge {
|
4611
|
+
float: right;
|
4612
|
+
}
|
4613
|
+
.list-group-item > .badge + .badge {
|
4614
|
+
margin-right: 5px;
|
4615
|
+
}
|
4629
4616
|
.nav-pills > li > a > .badge {
|
4630
4617
|
margin-left: 3px;
|
4631
4618
|
}
|
@@ -4658,7 +4645,8 @@ a.list-group-item.active > .badge,
|
|
4658
4645
|
.jumbotron {
|
4659
4646
|
padding: 48px 0;
|
4660
4647
|
}
|
4661
|
-
.container .jumbotron
|
4648
|
+
.container .jumbotron,
|
4649
|
+
.container-fluid .jumbotron {
|
4662
4650
|
padding-left: 60px;
|
4663
4651
|
padding-right: 60px;
|
4664
4652
|
}
|
@@ -4776,6 +4764,14 @@ a.thumbnail.active {
|
|
4776
4764
|
background-position: 0 0;
|
4777
4765
|
}
|
4778
4766
|
}
|
4767
|
+
@-o-keyframes progress-bar-stripes {
|
4768
|
+
from {
|
4769
|
+
background-position: 40px 0;
|
4770
|
+
}
|
4771
|
+
to {
|
4772
|
+
background-position: 0 0;
|
4773
|
+
}
|
4774
|
+
}
|
4779
4775
|
@keyframes progress-bar-stripes {
|
4780
4776
|
from {
|
4781
4777
|
background-position: 40px 0;
|
@@ -4813,7 +4809,8 @@ a.thumbnail.active {
|
|
4813
4809
|
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);
|
4814
4810
|
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);
|
4815
4811
|
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);
|
4816
|
-
background-size: 40px 40px;
|
4812
|
+
-webkit-background-size: 40px 40px;
|
4813
|
+
background-size: 40px 40px;
|
4817
4814
|
}
|
4818
4815
|
.progress.active .progress-bar,
|
4819
4816
|
.progress-bar.active {
|
@@ -4908,12 +4905,6 @@ a.thumbnail.active {
|
|
4908
4905
|
border-bottom-right-radius: 4px;
|
4909
4906
|
border-bottom-left-radius: 4px;
|
4910
4907
|
}
|
4911
|
-
.list-group-item > .badge {
|
4912
|
-
float: right;
|
4913
|
-
}
|
4914
|
-
.list-group-item > .badge + .badge {
|
4915
|
-
margin-right: 5px;
|
4916
|
-
}
|
4917
4908
|
a.list-group-item {
|
4918
4909
|
color: #555555;
|
4919
4910
|
}
|
@@ -5492,7 +5483,6 @@ button.close {
|
|
5492
5483
|
-o-transform: translate(0, -25%);
|
5493
5484
|
transform: translate(0, -25%);
|
5494
5485
|
-webkit-transition: -webkit-transform 0.3s ease-out;
|
5495
|
-
-moz-transition: -moz-transform 0.3s ease-out;
|
5496
5486
|
-o-transition: -o-transform 0.3s ease-out;
|
5497
5487
|
transition: transform 0.3s ease-out;
|
5498
5488
|
}
|
@@ -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: "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: rgba(0, 0, 0, 0.9);
|
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: rgba(0, 0, 0, 0.9);
|
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: rgba(0, 0, 0, 0.9);
|
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: rgba(0, 0, 0, 0.9);
|
5694
5690
|
}
|
@@ -5700,12 +5696,14 @@ button.close {
|
|
5700
5696
|
display: none;
|
5701
5697
|
max-width: 276px;
|
5702
5698
|
padding: 1px;
|
5699
|
+
font-family: "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 #cccccc;
|
5710
5708
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
5711
5709
|
border-radius: 6px;
|
@@ -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);
|
@@ -6321,11 +6328,13 @@ button.close {
|
|
6321
6328
|
.navbar {
|
6322
6329
|
background-image: -webkit-linear-gradient(#54b4eb, #2fa4e7 60%, #1d9ce5);
|
6323
6330
|
background-image: -o-linear-gradient(#54b4eb, #2fa4e7 60%, #1d9ce5);
|
6331
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#54b4eb), color-stop(60%, #2fa4e7), to(#1d9ce5));
|
6324
6332
|
background-image: linear-gradient(#54b4eb, #2fa4e7 60%, #1d9ce5);
|
6325
6333
|
background-repeat: no-repeat;
|
6326
6334
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff54b4eb', endColorstr='#ff1d9ce5', GradientType=0);
|
6327
6335
|
border-bottom: 1px solid #178acc;
|
6328
|
-
filter: none;
|
6336
|
+
-webkit-filter: none;
|
6337
|
+
filter: none;
|
6329
6338
|
-webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
|
6330
6339
|
box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
|
6331
6340
|
}
|
@@ -6336,10 +6345,12 @@ button.close {
|
|
6336
6345
|
.navbar-inverse {
|
6337
6346
|
background-image: -webkit-linear-gradient(#04519b, #044687 60%, #033769);
|
6338
6347
|
background-image: -o-linear-gradient(#04519b, #044687 60%, #033769);
|
6348
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#04519b), color-stop(60%, #044687), to(#033769));
|
6339
6349
|
background-image: linear-gradient(#04519b, #044687 60%, #033769);
|
6340
6350
|
background-repeat: no-repeat;
|
6341
6351
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff04519b', endColorstr='#ff033769', GradientType=0);
|
6342
|
-
filter: none;
|
6352
|
+
-webkit-filter: none;
|
6353
|
+
filter: none;
|
6343
6354
|
border-bottom: 1px solid #022241;
|
6344
6355
|
}
|
6345
6356
|
.navbar-inverse .badge {
|
@@ -6364,10 +6375,12 @@ button.close {
|
|
6364
6375
|
.btn-default {
|
6365
6376
|
background-image: -webkit-linear-gradient(#ffffff, #ffffff 60%, #f5f5f5);
|
6366
6377
|
background-image: -o-linear-gradient(#ffffff, #ffffff 60%, #f5f5f5);
|
6378
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(60%, #ffffff), to(#f5f5f5));
|
6367
6379
|
background-image: linear-gradient(#ffffff, #ffffff 60%, #f5f5f5);
|
6368
6380
|
background-repeat: no-repeat;
|
6369
6381
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff5f5f5', GradientType=0);
|
6370
|
-
filter: none;
|
6382
|
+
-webkit-filter: none;
|
6383
|
+
filter: none;
|
6371
6384
|
border-bottom: 1px solid #e6e6e6;
|
6372
6385
|
}
|
6373
6386
|
.btn-default:hover {
|
@@ -6379,55 +6392,67 @@ button.close {
|
|
6379
6392
|
.btn-default {
|
6380
6393
|
background-image: -webkit-linear-gradient(#ffffff, #ffffff 60%, #f5f5f5);
|
6381
6394
|
background-image: -o-linear-gradient(#ffffff, #ffffff 60%, #f5f5f5);
|
6395
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(60%, #ffffff), to(#f5f5f5));
|
6382
6396
|
background-image: linear-gradient(#ffffff, #ffffff 60%, #f5f5f5);
|
6383
6397
|
background-repeat: no-repeat;
|
6384
6398
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff5f5f5', GradientType=0);
|
6385
|
-
filter: none;
|
6399
|
+
-webkit-filter: none;
|
6400
|
+
filter: none;
|
6386
6401
|
border-bottom: 1px solid #e6e6e6;
|
6387
6402
|
}
|
6388
6403
|
.btn-primary {
|
6389
6404
|
background-image: -webkit-linear-gradient(#54b4eb, #2fa4e7 60%, #1d9ce5);
|
6390
6405
|
background-image: -o-linear-gradient(#54b4eb, #2fa4e7 60%, #1d9ce5);
|
6406
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#54b4eb), color-stop(60%, #2fa4e7), to(#1d9ce5));
|
6391
6407
|
background-image: linear-gradient(#54b4eb, #2fa4e7 60%, #1d9ce5);
|
6392
6408
|
background-repeat: no-repeat;
|
6393
6409
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff54b4eb', endColorstr='#ff1d9ce5', GradientType=0);
|
6394
|
-
filter: none;
|
6410
|
+
-webkit-filter: none;
|
6411
|
+
filter: none;
|
6395
6412
|
border-bottom: 1px solid #178acc;
|
6396
6413
|
}
|
6397
6414
|
.btn-success {
|
6398
6415
|
background-image: -webkit-linear-gradient(#88c149, #73a839 60%, #699934);
|
6399
6416
|
background-image: -o-linear-gradient(#88c149, #73a839 60%, #699934);
|
6417
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#88c149), color-stop(60%, #73a839), to(#699934));
|
6400
6418
|
background-image: linear-gradient(#88c149, #73a839 60%, #699934);
|
6401
6419
|
background-repeat: no-repeat;
|
6402
6420
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff88c149', endColorstr='#ff699934', GradientType=0);
|
6403
|
-
filter: none;
|
6421
|
+
-webkit-filter: none;
|
6422
|
+
filter: none;
|
6404
6423
|
border-bottom: 1px solid #59822c;
|
6405
6424
|
}
|
6406
6425
|
.btn-info {
|
6407
6426
|
background-image: -webkit-linear-gradient(#04519b, #033c73 60%, #02325f);
|
6408
6427
|
background-image: -o-linear-gradient(#04519b, #033c73 60%, #02325f);
|
6428
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#04519b), color-stop(60%, #033c73), to(#02325f));
|
6409
6429
|
background-image: linear-gradient(#04519b, #033c73 60%, #02325f);
|
6410
6430
|
background-repeat: no-repeat;
|
6411
6431
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff04519b', endColorstr='#ff02325f', GradientType=0);
|
6412
|
-
filter: none;
|
6432
|
+
-webkit-filter: none;
|
6433
|
+
filter: none;
|
6413
6434
|
border-bottom: 1px solid #022241;
|
6414
6435
|
}
|
6415
6436
|
.btn-warning {
|
6416
6437
|
background-image: -webkit-linear-gradient(#ff6707, #dd5600 60%, #c94e00);
|
6417
6438
|
background-image: -o-linear-gradient(#ff6707, #dd5600 60%, #c94e00);
|
6439
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#ff6707), color-stop(60%, #dd5600), to(#c94e00));
|
6418
6440
|
background-image: linear-gradient(#ff6707, #dd5600 60%, #c94e00);
|
6419
6441
|
background-repeat: no-repeat;
|
6420
6442
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff6707', endColorstr='#ffc94e00', GradientType=0);
|
6421
|
-
filter: none;
|
6443
|
+
-webkit-filter: none;
|
6444
|
+
filter: none;
|
6422
6445
|
border-bottom: 1px solid #aa4200;
|
6423
6446
|
}
|
6424
6447
|
.btn-danger {
|
6425
6448
|
background-image: -webkit-linear-gradient(#e12b31, #c71c22 60%, #b5191f);
|
6426
6449
|
background-image: -o-linear-gradient(#e12b31, #c71c22 60%, #b5191f);
|
6450
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#e12b31), color-stop(60%, #c71c22), to(#b5191f));
|
6427
6451
|
background-image: linear-gradient(#e12b31, #c71c22 60%, #b5191f);
|
6428
6452
|
background-repeat: no-repeat;
|
6429
6453
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe12b31', endColorstr='#ffb5191f', GradientType=0);
|
6430
|
-
filter: none;
|
6454
|
+
-webkit-filter: none;
|
6455
|
+
filter: none;
|
6431
6456
|
border-bottom: 1px solid #9a161a;
|
6432
6457
|
}
|
6433
6458
|
.panel-primary .panel-heading,
|