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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * bootswatch v3.3.0
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
- input[type="date"],
2395
- input[type="time"],
2396
- input[type="datetime-local"],
2397
- input[type="month"] {
2398
- line-height: 38px;
2399
- line-height: 1.42857143 \0;
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
- line-height: 30px;
2406
- line-height: 1.5 \0;
2407
- }
2408
- input[type="date"].input-lg,
2409
- input[type="time"].input-lg,
2410
- input[type="datetime-local"].input-lg,
2411
- input[type="month"].input-lg {
2412
- line-height: 54px;
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
- a.list-group-item.active > .badge,
4605
+ .list-group-item.active > .badge,
4625
4606
  .nav-pills > .active > a > .badge {
4626
4607
  color: #ffffff;
4627
4608
  background-color: #7a8288;
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: #c8c8c8;
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: fixed;
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
- left: 5px;
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
- right: 5px;
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
- left: 5px;
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
- right: 5px;
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: #2e3338;
5708
- background-clip: padding-box;
5705
+ -webkit-background-clip: padding-box;
5706
+ background-clip: padding-box;
5709
5707
  border: 1px solid #999999;
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
- backface-visibility: hidden;
5838
- perspective: 1000;
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,20 +6328,24 @@ button.close {
6321
6328
  .navbar {
6322
6329
  background-image: -webkit-linear-gradient(#484e55, #3a3f44 60%, #313539);
6323
6330
  background-image: -o-linear-gradient(#484e55, #3a3f44 60%, #313539);
6331
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#484e55), color-stop(60%, #3a3f44), to(#313539));
6324
6332
  background-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
6325
6333
  background-repeat: no-repeat;
6326
6334
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0);
6327
- filter: none;
6335
+ -webkit-filter: none;
6336
+ filter: none;
6328
6337
  border: 1px solid rgba(0, 0, 0, 0.6);
6329
6338
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
6330
6339
  }
6331
6340
  .navbar-inverse {
6332
6341
  background-image: -webkit-linear-gradient(#8a9196, #7a8288 60%, #70787d);
6333
6342
  background-image: -o-linear-gradient(#8a9196, #7a8288 60%, #70787d);
6343
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#8a9196), color-stop(60%, #7a8288), to(#70787d));
6334
6344
  background-image: linear-gradient(#8a9196, #7a8288 60%, #70787d);
6335
6345
  background-repeat: no-repeat;
6336
6346
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8a9196', endColorstr='#ff70787d', GradientType=0);
6337
- filter: none;
6347
+ -webkit-filter: none;
6348
+ filter: none;
6338
6349
  }
6339
6350
  .navbar-inverse .badge {
6340
6351
  background-color: #5d6368;
@@ -6346,10 +6357,12 @@ button.close {
6346
6357
  .navbar-nav > li > a:hover {
6347
6358
  background-image: -webkit-linear-gradient(#020202, #101112 40%, #191b1d);
6348
6359
  background-image: -o-linear-gradient(#020202, #101112 40%, #191b1d);
6360
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#020202), color-stop(40%, #101112), to(#191b1d));
6349
6361
  background-image: linear-gradient(#020202, #101112 40%, #191b1d);
6350
6362
  background-repeat: no-repeat;
6351
6363
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff020202', endColorstr='#ff191b1d', GradientType=0);
6352
- filter: none;
6364
+ -webkit-filter: none;
6365
+ filter: none;
6353
6366
  border-left-color: transparent;
6354
6367
  }
6355
6368
  .navbar .nav .open > a {
@@ -6370,98 +6383,122 @@ button.close {
6370
6383
  .btn-default {
6371
6384
  background-image: -webkit-linear-gradient(#484e55, #3a3f44 60%, #313539);
6372
6385
  background-image: -o-linear-gradient(#484e55, #3a3f44 60%, #313539);
6386
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#484e55), color-stop(60%, #3a3f44), to(#313539));
6373
6387
  background-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
6374
6388
  background-repeat: no-repeat;
6375
6389
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0);
6376
- filter: none;
6390
+ -webkit-filter: none;
6391
+ filter: none;
6377
6392
  }
6378
6393
  .btn-default:hover {
6379
6394
  background-image: -webkit-linear-gradient(#020202, #101112 40%, #191b1d);
6380
6395
  background-image: -o-linear-gradient(#020202, #101112 40%, #191b1d);
6396
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#020202), color-stop(40%, #101112), to(#191b1d));
6381
6397
  background-image: linear-gradient(#020202, #101112 40%, #191b1d);
6382
6398
  background-repeat: no-repeat;
6383
6399
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff020202', endColorstr='#ff191b1d', GradientType=0);
6384
- filter: none;
6400
+ -webkit-filter: none;
6401
+ filter: none;
6385
6402
  }
6386
6403
  .btn-primary {
6387
6404
  background-image: -webkit-linear-gradient(#8a9196, #7a8288 60%, #70787d);
6388
6405
  background-image: -o-linear-gradient(#8a9196, #7a8288 60%, #70787d);
6406
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#8a9196), color-stop(60%, #7a8288), to(#70787d));
6389
6407
  background-image: linear-gradient(#8a9196, #7a8288 60%, #70787d);
6390
6408
  background-repeat: no-repeat;
6391
6409
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8a9196', endColorstr='#ff70787d', GradientType=0);
6392
- filter: none;
6410
+ -webkit-filter: none;
6411
+ filter: none;
6393
6412
  }
6394
6413
  .btn-primary:hover {
6395
6414
  background-image: -webkit-linear-gradient(#404448, #4e5458 40%, #585e62);
6396
6415
  background-image: -o-linear-gradient(#404448, #4e5458 40%, #585e62);
6416
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#404448), color-stop(40%, #4e5458), to(#585e62));
6397
6417
  background-image: linear-gradient(#404448, #4e5458 40%, #585e62);
6398
6418
  background-repeat: no-repeat;
6399
6419
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff404448', endColorstr='#ff585e62', GradientType=0);
6400
- filter: none;
6420
+ -webkit-filter: none;
6421
+ filter: none;
6401
6422
  }
6402
6423
  .btn-success {
6403
6424
  background-image: -webkit-linear-gradient(#78cc78, #62c462 60%, #53be53);
6404
6425
  background-image: -o-linear-gradient(#78cc78, #62c462 60%, #53be53);
6426
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#78cc78), color-stop(60%, #62c462), to(#53be53));
6405
6427
  background-image: linear-gradient(#78cc78, #62c462 60%, #53be53);
6406
6428
  background-repeat: no-repeat;
6407
6429
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff78cc78', endColorstr='#ff53be53', GradientType=0);
6408
- filter: none;
6430
+ -webkit-filter: none;
6431
+ filter: none;
6409
6432
  }
6410
6433
  .btn-success:hover {
6411
6434
  background-image: -webkit-linear-gradient(#2f7d2f, #379337 40%, #3da23d);
6412
6435
  background-image: -o-linear-gradient(#2f7d2f, #379337 40%, #3da23d);
6436
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#2f7d2f), color-stop(40%, #379337), to(#3da23d));
6413
6437
  background-image: linear-gradient(#2f7d2f, #379337 40%, #3da23d);
6414
6438
  background-repeat: no-repeat;
6415
6439
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2f7d2f', endColorstr='#ff3da23d', GradientType=0);
6416
- filter: none;
6440
+ -webkit-filter: none;
6441
+ filter: none;
6417
6442
  }
6418
6443
  .btn-info {
6419
6444
  background-image: -webkit-linear-gradient(#74cae3, #5bc0de 60%, #4ab9db);
6420
6445
  background-image: -o-linear-gradient(#74cae3, #5bc0de 60%, #4ab9db);
6446
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#74cae3), color-stop(60%, #5bc0de), to(#4ab9db));
6421
6447
  background-image: linear-gradient(#74cae3, #5bc0de 60%, #4ab9db);
6422
6448
  background-repeat: no-repeat;
6423
6449
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff74cae3', endColorstr='#ff4ab9db', GradientType=0);
6424
- filter: none;
6450
+ -webkit-filter: none;
6451
+ filter: none;
6425
6452
  }
6426
6453
  .btn-info:hover {
6427
6454
  background-image: -webkit-linear-gradient(#20829f, #2596b8 40%, #28a4c9);
6428
6455
  background-image: -o-linear-gradient(#20829f, #2596b8 40%, #28a4c9);
6456
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#20829f), color-stop(40%, #2596b8), to(#28a4c9));
6429
6457
  background-image: linear-gradient(#20829f, #2596b8 40%, #28a4c9);
6430
6458
  background-repeat: no-repeat;
6431
6459
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff20829f', endColorstr='#ff28a4c9', GradientType=0);
6432
- filter: none;
6460
+ -webkit-filter: none;
6461
+ filter: none;
6433
6462
  }
6434
6463
  .btn-warning {
6435
6464
  background-image: -webkit-linear-gradient(#faa123, #f89406 60%, #e48806);
6436
6465
  background-image: -o-linear-gradient(#faa123, #f89406 60%, #e48806);
6466
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#faa123), color-stop(60%, #f89406), to(#e48806));
6437
6467
  background-image: linear-gradient(#faa123, #f89406 60%, #e48806);
6438
6468
  background-repeat: no-repeat;
6439
6469
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffaa123', endColorstr='#ffe48806', GradientType=0);
6440
- filter: none;
6470
+ -webkit-filter: none;
6471
+ filter: none;
6441
6472
  }
6442
6473
  .btn-warning:hover {
6443
6474
  background-image: -webkit-linear-gradient(#804d03, #9e5f04 40%, #b26a04);
6444
6475
  background-image: -o-linear-gradient(#804d03, #9e5f04 40%, #b26a04);
6476
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#804d03), color-stop(40%, #9e5f04), to(#b26a04));
6445
6477
  background-image: linear-gradient(#804d03, #9e5f04 40%, #b26a04);
6446
6478
  background-repeat: no-repeat;
6447
6479
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff804d03', endColorstr='#ffb26a04', GradientType=0);
6448
- filter: none;
6480
+ -webkit-filter: none;
6481
+ filter: none;
6449
6482
  }
6450
6483
  .btn-danger {
6451
6484
  background-image: -webkit-linear-gradient(#f17a77, #ee5f5b 60%, #ec4d49);
6452
6485
  background-image: -o-linear-gradient(#f17a77, #ee5f5b 60%, #ec4d49);
6486
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#f17a77), color-stop(60%, #ee5f5b), to(#ec4d49));
6453
6487
  background-image: linear-gradient(#f17a77, #ee5f5b 60%, #ec4d49);
6454
6488
  background-repeat: no-repeat;
6455
6489
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff17a77', endColorstr='#ffec4d49', GradientType=0);
6456
- filter: none;
6490
+ -webkit-filter: none;
6491
+ filter: none;
6457
6492
  }
6458
6493
  .btn-danger:hover {
6459
6494
  background-image: -webkit-linear-gradient(#bb1813, #d71c16 40%, #e7201a);
6460
6495
  background-image: -o-linear-gradient(#bb1813, #d71c16 40%, #e7201a);
6496
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#bb1813), color-stop(40%, #d71c16), to(#e7201a));
6461
6497
  background-image: linear-gradient(#bb1813, #d71c16 40%, #e7201a);
6462
6498
  background-repeat: no-repeat;
6463
6499
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbb1813', endColorstr='#ffe7201a', GradientType=0);
6464
- filter: none;
6500
+ -webkit-filter: none;
6501
+ filter: none;
6465
6502
  }
6466
6503
  .btn-link,
6467
6504
  .btn-link:hover {
@@ -6563,10 +6600,12 @@ legend {
6563
6600
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
6564
6601
  background-image: -webkit-linear-gradient(#484e55, #3a3f44 60%, #313539);
6565
6602
  background-image: -o-linear-gradient(#484e55, #3a3f44 60%, #313539);
6603
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#484e55), color-stop(60%, #3a3f44), to(#313539));
6566
6604
  background-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
6567
6605
  background-repeat: no-repeat;
6568
6606
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0);
6569
- filter: none;
6607
+ -webkit-filter: none;
6608
+ filter: none;
6570
6609
  color: #ffffff;
6571
6610
  }
6572
6611
  .nav .open > a,
@@ -6577,20 +6616,24 @@ legend {
6577
6616
  .nav-pills > li > a {
6578
6617
  background-image: -webkit-linear-gradient(#484e55, #3a3f44 60%, #313539);
6579
6618
  background-image: -o-linear-gradient(#484e55, #3a3f44 60%, #313539);
6619
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#484e55), color-stop(60%, #3a3f44), to(#313539));
6580
6620
  background-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
6581
6621
  background-repeat: no-repeat;
6582
6622
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0);
6583
- filter: none;
6623
+ -webkit-filter: none;
6624
+ filter: none;
6584
6625
  border: 1px solid rgba(0, 0, 0, 0.6);
6585
6626
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
6586
6627
  }
6587
6628
  .nav-pills > li > a:hover {
6588
6629
  background-image: -webkit-linear-gradient(#020202, #101112 40%, #191b1d);
6589
6630
  background-image: -o-linear-gradient(#020202, #101112 40%, #191b1d);
6631
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#020202), color-stop(40%, #101112), to(#191b1d));
6590
6632
  background-image: linear-gradient(#020202, #101112 40%, #191b1d);
6591
6633
  background-repeat: no-repeat;
6592
6634
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff020202', endColorstr='#ff191b1d', GradientType=0);
6593
- filter: none;
6635
+ -webkit-filter: none;
6636
+ filter: none;
6594
6637
  border: 1px solid rgba(0, 0, 0, 0.6);
6595
6638
  }
6596
6639
  .nav-pills > li.active > a,
@@ -6598,48 +6641,58 @@ legend {
6598
6641
  background-color: none;
6599
6642
  background-image: -webkit-linear-gradient(#020202, #101112 40%, #191b1d);
6600
6643
  background-image: -o-linear-gradient(#020202, #101112 40%, #191b1d);
6644
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#020202), color-stop(40%, #101112), to(#191b1d));
6601
6645
  background-image: linear-gradient(#020202, #101112 40%, #191b1d);
6602
6646
  background-repeat: no-repeat;
6603
6647
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff020202', endColorstr='#ff191b1d', GradientType=0);
6604
- filter: none;
6648
+ -webkit-filter: none;
6649
+ filter: none;
6605
6650
  border: 1px solid rgba(0, 0, 0, 0.6);
6606
6651
  }
6607
6652
  .nav-pills > li.disabled > a,
6608
6653
  .nav-pills > li.disabled > a:hover {
6609
6654
  background-image: -webkit-linear-gradient(#484e55, #3a3f44 60%, #313539);
6610
6655
  background-image: -o-linear-gradient(#484e55, #3a3f44 60%, #313539);
6656
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#484e55), color-stop(60%, #3a3f44), to(#313539));
6611
6657
  background-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
6612
6658
  background-repeat: no-repeat;
6613
6659
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0);
6614
- filter: none;
6660
+ -webkit-filter: none;
6661
+ filter: none;
6615
6662
  }
6616
6663
  .pagination > li > a,
6617
6664
  .pagination > li > span {
6618
6665
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
6619
6666
  background-image: -webkit-linear-gradient(#484e55, #3a3f44 60%, #313539);
6620
6667
  background-image: -o-linear-gradient(#484e55, #3a3f44 60%, #313539);
6668
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#484e55), color-stop(60%, #3a3f44), to(#313539));
6621
6669
  background-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
6622
6670
  background-repeat: no-repeat;
6623
6671
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0);
6624
- filter: none;
6672
+ -webkit-filter: none;
6673
+ filter: none;
6625
6674
  }
6626
6675
  .pagination > li > a:hover,
6627
6676
  .pagination > li > span:hover {
6628
6677
  background-image: -webkit-linear-gradient(#020202, #101112 40%, #191b1d);
6629
6678
  background-image: -o-linear-gradient(#020202, #101112 40%, #191b1d);
6679
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#020202), color-stop(40%, #101112), to(#191b1d));
6630
6680
  background-image: linear-gradient(#020202, #101112 40%, #191b1d);
6631
6681
  background-repeat: no-repeat;
6632
6682
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff020202', endColorstr='#ff191b1d', GradientType=0);
6633
- filter: none;
6683
+ -webkit-filter: none;
6684
+ filter: none;
6634
6685
  }
6635
6686
  .pagination > li.active > a,
6636
6687
  .pagination > li.active > span {
6637
6688
  background-image: -webkit-linear-gradient(#020202, #101112 40%, #191b1d);
6638
6689
  background-image: -o-linear-gradient(#020202, #101112 40%, #191b1d);
6690
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#020202), color-stop(40%, #101112), to(#191b1d));
6639
6691
  background-image: linear-gradient(#020202, #101112 40%, #191b1d);
6640
6692
  background-repeat: no-repeat;
6641
6693
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff020202', endColorstr='#ff191b1d', GradientType=0);
6642
- filter: none;
6694
+ -webkit-filter: none;
6695
+ filter: none;
6643
6696
  }
6644
6697
  .pagination > li.disabled > a,
6645
6698
  .pagination > li.disabled > a:hover,
@@ -6648,47 +6701,57 @@ legend {
6648
6701
  background-color: transparent;
6649
6702
  background-image: -webkit-linear-gradient(#484e55, #3a3f44 60%, #313539);
6650
6703
  background-image: -o-linear-gradient(#484e55, #3a3f44 60%, #313539);
6704
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#484e55), color-stop(60%, #3a3f44), to(#313539));
6651
6705
  background-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
6652
6706
  background-repeat: no-repeat;
6653
6707
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0);
6654
- filter: none;
6708
+ -webkit-filter: none;
6709
+ filter: none;
6655
6710
  }
6656
6711
  .pager > li > a {
6657
6712
  background-image: -webkit-linear-gradient(#484e55, #3a3f44 60%, #313539);
6658
6713
  background-image: -o-linear-gradient(#484e55, #3a3f44 60%, #313539);
6714
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#484e55), color-stop(60%, #3a3f44), to(#313539));
6659
6715
  background-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
6660
6716
  background-repeat: no-repeat;
6661
6717
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0);
6662
- filter: none;
6718
+ -webkit-filter: none;
6719
+ filter: none;
6663
6720
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
6664
6721
  }
6665
6722
  .pager > li > a:hover {
6666
6723
  background-image: -webkit-linear-gradient(#020202, #101112 40%, #191b1d);
6667
6724
  background-image: -o-linear-gradient(#020202, #101112 40%, #191b1d);
6725
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#020202), color-stop(40%, #101112), to(#191b1d));
6668
6726
  background-image: linear-gradient(#020202, #101112 40%, #191b1d);
6669
6727
  background-repeat: no-repeat;
6670
6728
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff020202', endColorstr='#ff191b1d', GradientType=0);
6671
- filter: none;
6729
+ -webkit-filter: none;
6730
+ filter: none;
6672
6731
  }
6673
6732
  .pager > li.disabled > a,
6674
6733
  .pager > li.disabled > a:hover {
6675
6734
  background-color: transparent;
6676
6735
  background-image: -webkit-linear-gradient(#484e55, #3a3f44 60%, #313539);
6677
6736
  background-image: -o-linear-gradient(#484e55, #3a3f44 60%, #313539);
6737
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#484e55), color-stop(60%, #3a3f44), to(#313539));
6678
6738
  background-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
6679
6739
  background-repeat: no-repeat;
6680
6740
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0);
6681
- filter: none;
6741
+ -webkit-filter: none;
6742
+ filter: none;
6682
6743
  }
6683
6744
  .breadcrumb {
6684
6745
  border: 1px solid rgba(0, 0, 0, 0.6);
6685
6746
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
6686
6747
  background-image: -webkit-linear-gradient(#484e55, #3a3f44 60%, #313539);
6687
6748
  background-image: -o-linear-gradient(#484e55, #3a3f44 60%, #313539);
6749
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#484e55), color-stop(60%, #3a3f44), to(#313539));
6688
6750
  background-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
6689
6751
  background-repeat: no-repeat;
6690
6752
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0);
6691
- filter: none;
6753
+ -webkit-filter: none;
6754
+ filter: none;
6692
6755
  }
6693
6756
  .alert .alert-link,
6694
6757
  .alert a {