bootswatch_rails 3.2.0.43 → 3.3.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (28) hide show
  1. checksums.yaml +4 -4
  2. data/generate.sh +1 -1
  3. data/lib/bootswatch_rails/engine.rb +27 -2
  4. data/lib/bootswatch_rails/version.rb +4 -4
  5. data/lib/generators/bootswatch_rails/install/install_generator.rb +27 -8
  6. data/lib/generators/bootswatch_rails/install/templates/app/views/layouts/application.html.erb +1 -8
  7. data/lib/generators/bootswatch_rails/install/templates/application.js +23 -0
  8. data/lib/generators/bootswatch_rails/install/templates/head.html.erb +16 -11
  9. data/lib/generators/bootswatch_rails/sorcery/sorcery_generator.rb +1 -1
  10. data/vendor/assets/stylesheets/cerulean.css +266 -118
  11. data/vendor/assets/stylesheets/cosmo.css +272 -120
  12. data/vendor/assets/stylesheets/custom.css +275 -127
  13. data/vendor/assets/stylesheets/cyborg.css +271 -119
  14. data/vendor/assets/stylesheets/darkly.css +271 -119
  15. data/vendor/assets/stylesheets/flatly.css +271 -119
  16. data/vendor/assets/stylesheets/journal.css +267 -119
  17. data/vendor/assets/stylesheets/lumen.css +271 -119
  18. data/vendor/assets/stylesheets/paper.css +267 -119
  19. data/vendor/assets/stylesheets/readable.css +267 -119
  20. data/vendor/assets/stylesheets/sandstone.css +271 -124
  21. data/vendor/assets/stylesheets/simplex.css +267 -119
  22. data/vendor/assets/stylesheets/slate.css +267 -119
  23. data/vendor/assets/stylesheets/spacelab.css +267 -119
  24. data/vendor/assets/stylesheets/superhero.css +271 -119
  25. data/vendor/assets/stylesheets/united.css +267 -119
  26. data/vendor/assets/stylesheets/yeti.css +271 -119
  27. metadata +3 -3
  28. data/vendor/assets/stylesheets/amelia.css +0 -6286
@@ -1,11 +1,11 @@
1
1
  /*!
2
- * bootswatch v3.2.0
2
+ * bootswatch v3.3.0
3
3
  * Homepage: http://bootswatch.com
4
4
  * Copyright 2012-2014 Thomas Park
5
5
  * Licensed under MIT
6
6
  * Based on Bootstrap
7
7
  */
8
- /*! normalize.css v3.0.1 | MIT License | git.io/normalize */
8
+ /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
9
9
  html {
10
10
  font-family: sans-serif;
11
11
  -ms-text-size-adjust: 100%;
@@ -23,6 +23,7 @@ footer,
23
23
  header,
24
24
  hgroup,
25
25
  main,
26
+ menu,
26
27
  nav,
27
28
  section,
28
29
  summary {
@@ -44,7 +45,7 @@ template {
44
45
  display: none;
45
46
  }
46
47
  a {
47
- background: transparent;
48
+ background-color: transparent;
48
49
  }
49
50
  a:active,
50
51
  a:hover {
@@ -185,12 +186,15 @@ td,
185
186
  th {
186
187
  padding: 0;
187
188
  }
189
+ /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
188
190
  @media print {
189
- * {
190
- text-shadow: none !important;
191
- color: #000 !important;
191
+ *,
192
+ *:before,
193
+ *:after {
192
194
  background: transparent !important;
195
+ color: #000 !important;
193
196
  box-shadow: none !important;
197
+ text-shadow: none !important;
194
198
  }
195
199
  a,
196
200
  a:visited {
@@ -202,8 +206,8 @@ th {
202
206
  abbr[title]:after {
203
207
  content: " (" attr(title) ")";
204
208
  }
205
- a[href^="javascript:"]:after,
206
- a[href^="#"]:after {
209
+ a[href^="#"]:after,
210
+ a[href^="javascript:"]:after {
207
211
  content: "";
208
212
  }
209
213
  pre,
@@ -237,10 +241,6 @@ th {
237
241
  .navbar {
238
242
  display: none;
239
243
  }
240
- .table td,
241
- .table th {
242
- background-color: #fff !important;
243
- }
244
244
  .btn > .caret,
245
245
  .dropup > .btn > .caret {
246
246
  border-top-color: #000 !important;
@@ -251,6 +251,10 @@ th {
251
251
  .table {
252
252
  border-collapse: collapse !important;
253
253
  }
254
+ .table td,
255
+ .table th {
256
+ background-color: #fff !important;
257
+ }
254
258
  .table-bordered th,
255
259
  .table-bordered td {
256
260
  border: 1px solid #ddd !important;
@@ -278,7 +282,8 @@ th {
278
282
  .glyphicon-plus:before {
279
283
  content: "\2b";
280
284
  }
281
- .glyphicon-euro:before {
285
+ .glyphicon-euro:before,
286
+ .glyphicon-eur:before {
282
287
  content: "\20ac";
283
288
  }
284
289
  .glyphicon-minus:before {
@@ -928,7 +933,6 @@ img {
928
933
  .carousel-inner > .item > img,
929
934
  .carousel-inner > .item > a > img {
930
935
  display: block;
931
- width: 100% \9;
932
936
  max-width: 100%;
933
937
  height: auto;
934
938
  }
@@ -945,7 +949,6 @@ img {
945
949
  -o-transition: all 0.2s ease-in-out;
946
950
  transition: all 0.2s ease-in-out;
947
951
  display: inline-block;
948
- width: 100% \9;
949
952
  max-width: 100%;
950
953
  height: auto;
951
954
  }
@@ -1110,9 +1113,6 @@ small,
1110
1113
  .small {
1111
1114
  font-size: 85%;
1112
1115
  }
1113
- cite {
1114
- font-style: normal;
1115
- }
1116
1116
  mark,
1117
1117
  .mark {
1118
1118
  background-color: #f89406;
@@ -1321,10 +1321,6 @@ blockquote.pull-right small:after,
1321
1321
  blockquote.pull-right .small:after {
1322
1322
  content: '\00A0 \2014';
1323
1323
  }
1324
- blockquote:before,
1325
- blockquote:after {
1326
- content: "";
1327
- }
1328
1324
  address {
1329
1325
  margin-bottom: 20px;
1330
1326
  font-style: normal;
@@ -1354,6 +1350,7 @@ kbd {
1354
1350
  kbd kbd {
1355
1351
  padding: 0;
1356
1352
  font-size: 100%;
1353
+ font-weight: bold;
1357
1354
  box-shadow: none;
1358
1355
  }
1359
1356
  pre {
@@ -2051,6 +2048,12 @@ pre code {
2051
2048
  table {
2052
2049
  background-color: #2e3338;
2053
2050
  }
2051
+ caption {
2052
+ padding-top: 8px;
2053
+ padding-bottom: 8px;
2054
+ color: #7a8288;
2055
+ text-align: left;
2056
+ }
2054
2057
  th {
2055
2058
  text-align: left;
2056
2059
  }
@@ -2111,12 +2114,10 @@ th {
2111
2114
  .table-bordered > thead > tr > td {
2112
2115
  border-bottom-width: 2px;
2113
2116
  }
2114
- .table-striped > tbody > tr:nth-child(odd) > td,
2115
- .table-striped > tbody > tr:nth-child(odd) > th {
2117
+ .table-striped > tbody > tr:nth-child(odd) {
2116
2118
  background-color: #353a41;
2117
2119
  }
2118
- .table-hover > tbody > tr:hover > td,
2119
- .table-hover > tbody > tr:hover > th {
2120
+ .table-hover > tbody > tr:hover {
2120
2121
  background-color: #49515a;
2121
2122
  }
2122
2123
  table col[class*="col-"] {
@@ -2235,15 +2236,17 @@ table th[class*="col-"] {
2235
2236
  .table-hover > tbody > tr.danger:hover > th {
2236
2237
  background-color: #ec4844;
2237
2238
  }
2239
+ .table-responsive {
2240
+ overflow-x: auto;
2241
+ min-height: 0.01%;
2242
+ }
2238
2243
  @media screen and (max-width: 767px) {
2239
2244
  .table-responsive {
2240
2245
  width: 100%;
2241
2246
  margin-bottom: 15px;
2242
2247
  overflow-y: hidden;
2243
- overflow-x: auto;
2244
2248
  -ms-overflow-style: -ms-autohiding-scrollbar;
2245
2249
  border: 1px solid #1c1e22;
2246
- -webkit-overflow-scrolling: touch;
2247
2250
  }
2248
2251
  .table-responsive > .table {
2249
2252
  margin-bottom: 0;
@@ -2400,12 +2403,44 @@ input[type="time"].input-sm,
2400
2403
  input[type="datetime-local"].input-sm,
2401
2404
  input[type="month"].input-sm {
2402
2405
  line-height: 30px;
2406
+ line-height: 1.5 \0;
2403
2407
  }
2404
2408
  input[type="date"].input-lg,
2405
2409
  input[type="time"].input-lg,
2406
2410
  input[type="datetime-local"].input-lg,
2407
2411
  input[type="month"].input-lg {
2408
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;
2409
2444
  }
2410
2445
  .form-group {
2411
2446
  margin-bottom: 15px;
@@ -2414,12 +2449,12 @@ input[type="month"].input-lg {
2414
2449
  .checkbox {
2415
2450
  position: relative;
2416
2451
  display: block;
2417
- min-height: 20px;
2418
2452
  margin-top: 10px;
2419
2453
  margin-bottom: 10px;
2420
2454
  }
2421
2455
  .radio label,
2422
2456
  .checkbox label {
2457
+ min-height: 20px;
2423
2458
  padding-left: 20px;
2424
2459
  margin-bottom: 0;
2425
2460
  font-weight: normal;
@@ -2482,35 +2517,41 @@ fieldset[disabled] .checkbox label {
2482
2517
  padding-right: 0;
2483
2518
  }
2484
2519
  .input-sm,
2485
- .form-horizontal .form-group-sm .form-control {
2520
+ .form-group-sm .form-control {
2486
2521
  height: 30px;
2487
2522
  padding: 5px 10px;
2488
2523
  font-size: 12px;
2489
2524
  line-height: 1.5;
2490
2525
  border-radius: 3px;
2491
2526
  }
2492
- select.input-sm {
2527
+ select.input-sm,
2528
+ select.form-group-sm .form-control {
2493
2529
  height: 30px;
2494
2530
  line-height: 30px;
2495
2531
  }
2496
2532
  textarea.input-sm,
2497
- select[multiple].input-sm {
2533
+ textarea.form-group-sm .form-control,
2534
+ select[multiple].input-sm,
2535
+ select[multiple].form-group-sm .form-control {
2498
2536
  height: auto;
2499
2537
  }
2500
2538
  .input-lg,
2501
- .form-horizontal .form-group-lg .form-control {
2539
+ .form-group-lg .form-control {
2502
2540
  height: 54px;
2503
2541
  padding: 14px 16px;
2504
2542
  font-size: 18px;
2505
2543
  line-height: 1.33;
2506
2544
  border-radius: 6px;
2507
2545
  }
2508
- select.input-lg {
2546
+ select.input-lg,
2547
+ select.form-group-lg .form-control {
2509
2548
  height: 54px;
2510
2549
  line-height: 54px;
2511
2550
  }
2512
2551
  textarea.input-lg,
2513
- select[multiple].input-lg {
2552
+ textarea.form-group-lg .form-control,
2553
+ select[multiple].input-lg,
2554
+ select[multiple].form-group-lg .form-control {
2514
2555
  height: auto;
2515
2556
  }
2516
2557
  .has-feedback {
@@ -2521,7 +2562,7 @@ select[multiple].input-lg {
2521
2562
  }
2522
2563
  .form-control-feedback {
2523
2564
  position: absolute;
2524
- top: 25px;
2565
+ top: 0;
2525
2566
  right: 0;
2526
2567
  z-index: 2;
2527
2568
  display: block;
@@ -2529,6 +2570,7 @@ select[multiple].input-lg {
2529
2570
  height: 38px;
2530
2571
  line-height: 38px;
2531
2572
  text-align: center;
2573
+ pointer-events: none;
2532
2574
  }
2533
2575
  .input-lg + .form-control-feedback {
2534
2576
  width: 54px;
@@ -2545,7 +2587,11 @@ select[multiple].input-lg {
2545
2587
  .has-success .radio,
2546
2588
  .has-success .checkbox,
2547
2589
  .has-success .radio-inline,
2548
- .has-success .checkbox-inline {
2590
+ .has-success .checkbox-inline,
2591
+ .has-success.radio label,
2592
+ .has-success.checkbox label,
2593
+ .has-success.radio-inline label,
2594
+ .has-success.checkbox-inline label {
2549
2595
  color: #ffffff;
2550
2596
  }
2551
2597
  .has-success .form-control {
@@ -2571,7 +2617,11 @@ select[multiple].input-lg {
2571
2617
  .has-warning .radio,
2572
2618
  .has-warning .checkbox,
2573
2619
  .has-warning .radio-inline,
2574
- .has-warning .checkbox-inline {
2620
+ .has-warning .checkbox-inline,
2621
+ .has-warning.radio label,
2622
+ .has-warning.checkbox label,
2623
+ .has-warning.radio-inline label,
2624
+ .has-warning.checkbox-inline label {
2575
2625
  color: #ffffff;
2576
2626
  }
2577
2627
  .has-warning .form-control {
@@ -2597,7 +2647,11 @@ select[multiple].input-lg {
2597
2647
  .has-error .radio,
2598
2648
  .has-error .checkbox,
2599
2649
  .has-error .radio-inline,
2600
- .has-error .checkbox-inline {
2650
+ .has-error .checkbox-inline,
2651
+ .has-error.radio label,
2652
+ .has-error.checkbox label,
2653
+ .has-error.radio-inline label,
2654
+ .has-error.checkbox-inline label {
2601
2655
  color: #ffffff;
2602
2656
  }
2603
2657
  .has-error .form-control {
@@ -2618,6 +2672,9 @@ select[multiple].input-lg {
2618
2672
  .has-error .form-control-feedback {
2619
2673
  color: #ffffff;
2620
2674
  }
2675
+ .has-feedback label ~ .form-control-feedback {
2676
+ top: 25px;
2677
+ }
2621
2678
  .has-feedback label.sr-only ~ .form-control-feedback {
2622
2679
  top: 0;
2623
2680
  }
@@ -2638,6 +2695,9 @@ select[multiple].input-lg {
2638
2695
  width: auto;
2639
2696
  vertical-align: middle;
2640
2697
  }
2698
+ .form-inline .form-control-static {
2699
+ display: inline-block;
2700
+ }
2641
2701
  .form-inline .input-group {
2642
2702
  display: inline-table;
2643
2703
  vertical-align: middle;
@@ -2698,7 +2758,6 @@ select[multiple].input-lg {
2698
2758
  }
2699
2759
  }
2700
2760
  .form-horizontal .has-feedback .form-control-feedback {
2701
- top: 0;
2702
2761
  right: 15px;
2703
2762
  }
2704
2763
  @media (min-width: 768px) {
@@ -2717,6 +2776,7 @@ select[multiple].input-lg {
2717
2776
  font-weight: normal;
2718
2777
  text-align: center;
2719
2778
  vertical-align: middle;
2779
+ touch-action: manipulation;
2720
2780
  cursor: pointer;
2721
2781
  background-image: none;
2722
2782
  border: 1px solid transparent;
@@ -2732,13 +2792,17 @@ select[multiple].input-lg {
2732
2792
  }
2733
2793
  .btn:focus,
2734
2794
  .btn:active:focus,
2735
- .btn.active:focus {
2795
+ .btn.active:focus,
2796
+ .btn.focus,
2797
+ .btn:active.focus,
2798
+ .btn.active.focus {
2736
2799
  outline: thin dotted;
2737
2800
  outline: 5px auto -webkit-focus-ring-color;
2738
2801
  outline-offset: -2px;
2739
2802
  }
2740
2803
  .btn:hover,
2741
- .btn:focus {
2804
+ .btn:focus,
2805
+ .btn.focus {
2742
2806
  color: #ffffff;
2743
2807
  text-decoration: none;
2744
2808
  }
@@ -2766,6 +2830,7 @@ fieldset[disabled] .btn {
2766
2830
  }
2767
2831
  .btn-default:hover,
2768
2832
  .btn-default:focus,
2833
+ .btn-default.focus,
2769
2834
  .btn-default:active,
2770
2835
  .btn-default.active,
2771
2836
  .open > .dropdown-toggle.btn-default {
@@ -2787,6 +2852,9 @@ fieldset[disabled] .btn-default:hover,
2787
2852
  .btn-default.disabled:focus,
2788
2853
  .btn-default[disabled]:focus,
2789
2854
  fieldset[disabled] .btn-default:focus,
2855
+ .btn-default.disabled.focus,
2856
+ .btn-default[disabled].focus,
2857
+ fieldset[disabled] .btn-default.focus,
2790
2858
  .btn-default.disabled:active,
2791
2859
  .btn-default[disabled]:active,
2792
2860
  fieldset[disabled] .btn-default:active,
@@ -2807,6 +2875,7 @@ fieldset[disabled] .btn-default.active {
2807
2875
  }
2808
2876
  .btn-primary:hover,
2809
2877
  .btn-primary:focus,
2878
+ .btn-primary.focus,
2810
2879
  .btn-primary:active,
2811
2880
  .btn-primary.active,
2812
2881
  .open > .dropdown-toggle.btn-primary {
@@ -2828,6 +2897,9 @@ fieldset[disabled] .btn-primary:hover,
2828
2897
  .btn-primary.disabled:focus,
2829
2898
  .btn-primary[disabled]:focus,
2830
2899
  fieldset[disabled] .btn-primary:focus,
2900
+ .btn-primary.disabled.focus,
2901
+ .btn-primary[disabled].focus,
2902
+ fieldset[disabled] .btn-primary.focus,
2831
2903
  .btn-primary.disabled:active,
2832
2904
  .btn-primary[disabled]:active,
2833
2905
  fieldset[disabled] .btn-primary:active,
@@ -2848,6 +2920,7 @@ fieldset[disabled] .btn-primary.active {
2848
2920
  }
2849
2921
  .btn-success:hover,
2850
2922
  .btn-success:focus,
2923
+ .btn-success.focus,
2851
2924
  .btn-success:active,
2852
2925
  .btn-success.active,
2853
2926
  .open > .dropdown-toggle.btn-success {
@@ -2869,6 +2942,9 @@ fieldset[disabled] .btn-success:hover,
2869
2942
  .btn-success.disabled:focus,
2870
2943
  .btn-success[disabled]:focus,
2871
2944
  fieldset[disabled] .btn-success:focus,
2945
+ .btn-success.disabled.focus,
2946
+ .btn-success[disabled].focus,
2947
+ fieldset[disabled] .btn-success.focus,
2872
2948
  .btn-success.disabled:active,
2873
2949
  .btn-success[disabled]:active,
2874
2950
  fieldset[disabled] .btn-success:active,
@@ -2889,6 +2965,7 @@ fieldset[disabled] .btn-success.active {
2889
2965
  }
2890
2966
  .btn-info:hover,
2891
2967
  .btn-info:focus,
2968
+ .btn-info.focus,
2892
2969
  .btn-info:active,
2893
2970
  .btn-info.active,
2894
2971
  .open > .dropdown-toggle.btn-info {
@@ -2910,6 +2987,9 @@ fieldset[disabled] .btn-info:hover,
2910
2987
  .btn-info.disabled:focus,
2911
2988
  .btn-info[disabled]:focus,
2912
2989
  fieldset[disabled] .btn-info:focus,
2990
+ .btn-info.disabled.focus,
2991
+ .btn-info[disabled].focus,
2992
+ fieldset[disabled] .btn-info.focus,
2913
2993
  .btn-info.disabled:active,
2914
2994
  .btn-info[disabled]:active,
2915
2995
  fieldset[disabled] .btn-info:active,
@@ -2930,6 +3010,7 @@ fieldset[disabled] .btn-info.active {
2930
3010
  }
2931
3011
  .btn-warning:hover,
2932
3012
  .btn-warning:focus,
3013
+ .btn-warning.focus,
2933
3014
  .btn-warning:active,
2934
3015
  .btn-warning.active,
2935
3016
  .open > .dropdown-toggle.btn-warning {
@@ -2951,6 +3032,9 @@ fieldset[disabled] .btn-warning:hover,
2951
3032
  .btn-warning.disabled:focus,
2952
3033
  .btn-warning[disabled]:focus,
2953
3034
  fieldset[disabled] .btn-warning:focus,
3035
+ .btn-warning.disabled.focus,
3036
+ .btn-warning[disabled].focus,
3037
+ fieldset[disabled] .btn-warning.focus,
2954
3038
  .btn-warning.disabled:active,
2955
3039
  .btn-warning[disabled]:active,
2956
3040
  fieldset[disabled] .btn-warning:active,
@@ -2971,6 +3055,7 @@ fieldset[disabled] .btn-warning.active {
2971
3055
  }
2972
3056
  .btn-danger:hover,
2973
3057
  .btn-danger:focus,
3058
+ .btn-danger.focus,
2974
3059
  .btn-danger:active,
2975
3060
  .btn-danger.active,
2976
3061
  .open > .dropdown-toggle.btn-danger {
@@ -2992,6 +3077,9 @@ fieldset[disabled] .btn-danger:hover,
2992
3077
  .btn-danger.disabled:focus,
2993
3078
  .btn-danger[disabled]:focus,
2994
3079
  fieldset[disabled] .btn-danger:focus,
3080
+ .btn-danger.disabled.focus,
3081
+ .btn-danger[disabled].focus,
3082
+ fieldset[disabled] .btn-danger.focus,
2995
3083
  .btn-danger.disabled:active,
2996
3084
  .btn-danger[disabled]:active,
2997
3085
  fieldset[disabled] .btn-danger:active,
@@ -3008,11 +3096,11 @@ fieldset[disabled] .btn-danger.active {
3008
3096
  .btn-link {
3009
3097
  color: #ffffff;
3010
3098
  font-weight: normal;
3011
- cursor: pointer;
3012
3099
  border-radius: 0;
3013
3100
  }
3014
3101
  .btn-link,
3015
3102
  .btn-link:active,
3103
+ .btn-link.active,
3016
3104
  .btn-link[disabled],
3017
3105
  fieldset[disabled] .btn-link {
3018
3106
  background-color: transparent;
@@ -3082,9 +3170,11 @@ input[type="button"].btn-block {
3082
3170
  }
3083
3171
  .collapse {
3084
3172
  display: none;
3173
+ visibility: hidden;
3085
3174
  }
3086
3175
  .collapse.in {
3087
3176
  display: block;
3177
+ visibility: visible;
3088
3178
  }
3089
3179
  tr.collapse.in {
3090
3180
  display: table-row;
@@ -3096,9 +3186,12 @@ tbody.collapse.in {
3096
3186
  position: relative;
3097
3187
  height: 0;
3098
3188
  overflow: hidden;
3099
- -webkit-transition: height 0.35s ease;
3100
- -o-transition: height 0.35s ease;
3101
- transition: height 0.35s ease;
3189
+ -webkit-transition-property: height, visibility;
3190
+ transition-property: height, visibility;
3191
+ -webkit-transition-duration: 0.35s;
3192
+ transition-duration: 0.35s;
3193
+ -webkit-transition-timing-function: ease;
3194
+ transition-timing-function: ease;
3102
3195
  }
3103
3196
  .caret {
3104
3197
  display: inline-block;
@@ -3403,12 +3496,13 @@ tbody.collapse.in {
3403
3496
  .btn-group-justified > .btn-group .dropdown-menu {
3404
3497
  left: auto;
3405
3498
  }
3406
- [data-toggle="buttons"] > .btn > input[type="radio"],
3407
- [data-toggle="buttons"] > .btn > input[type="checkbox"] {
3499
+ [data-toggle="buttons"] > .btn input[type="radio"],
3500
+ [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
3501
+ [data-toggle="buttons"] > .btn input[type="checkbox"],
3502
+ [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
3408
3503
  position: absolute;
3409
- z-index: -1;
3410
- opacity: 0;
3411
- filter: alpha(opacity=0);
3504
+ clip: rect(0, 0, 0, 0);
3505
+ pointer-events: none;
3412
3506
  }
3413
3507
  .input-group {
3414
3508
  position: relative;
@@ -3747,9 +3841,11 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3747
3841
  }
3748
3842
  .tab-content > .tab-pane {
3749
3843
  display: none;
3844
+ visibility: hidden;
3750
3845
  }
3751
3846
  .tab-content > .active {
3752
3847
  display: block;
3848
+ visibility: visible;
3753
3849
  }
3754
3850
  .nav-tabs .dropdown-menu {
3755
3851
  margin-top: -1px;
@@ -3791,6 +3887,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3791
3887
  }
3792
3888
  .navbar-collapse.collapse {
3793
3889
  display: block !important;
3890
+ visibility: visible !important;
3794
3891
  height: auto !important;
3795
3892
  padding-bottom: 0;
3796
3893
  overflow: visible !important;
@@ -3809,7 +3906,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3809
3906
  .navbar-fixed-bottom .navbar-collapse {
3810
3907
  max-height: 340px;
3811
3908
  }
3812
- @media (max-width: 480px) and (orientation: landscape) {
3909
+ @media (max-device-width: 480px) and (orientation: landscape) {
3813
3910
  .navbar-fixed-top .navbar-collapse,
3814
3911
  .navbar-fixed-bottom .navbar-collapse {
3815
3912
  max-height: 200px;
@@ -3846,8 +3943,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3846
3943
  right: 0;
3847
3944
  left: 0;
3848
3945
  z-index: 1030;
3849
- -webkit-transform: translate3d(0, 0, 0);
3850
- transform: translate3d(0, 0, 0);
3851
3946
  }
3852
3947
  @media (min-width: 768px) {
3853
3948
  .navbar-fixed-top,
@@ -3875,6 +3970,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3875
3970
  .navbar-brand:focus {
3876
3971
  text-decoration: none;
3877
3972
  }
3973
+ .navbar-brand > img {
3974
+ display: block;
3975
+ }
3878
3976
  @media (min-width: 768px) {
3879
3977
  .navbar > .container .navbar-brand,
3880
3978
  .navbar > .container-fluid .navbar-brand {
@@ -3952,17 +4050,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3952
4050
  padding-top: 15px;
3953
4051
  padding-bottom: 15px;
3954
4052
  }
3955
- .navbar-nav.navbar-right:last-child {
3956
- margin-right: -15px;
3957
- }
3958
- }
3959
- @media (min-width: 768px) {
3960
- .navbar-left {
3961
- float: left !important;
3962
- }
3963
- .navbar-right {
3964
- float: right !important;
3965
- }
3966
4053
  }
3967
4054
  .navbar-form {
3968
4055
  margin-left: -15px;
@@ -3986,6 +4073,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3986
4073
  width: auto;
3987
4074
  vertical-align: middle;
3988
4075
  }
4076
+ .navbar-form .form-control-static {
4077
+ display: inline-block;
4078
+ }
3989
4079
  .navbar-form .input-group {
3990
4080
  display: inline-table;
3991
4081
  vertical-align: middle;
@@ -4026,6 +4116,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4026
4116
  .navbar-form .form-group {
4027
4117
  margin-bottom: 5px;
4028
4118
  }
4119
+ .navbar-form .form-group:last-child {
4120
+ margin-bottom: 0;
4121
+ }
4029
4122
  }
4030
4123
  @media (min-width: 768px) {
4031
4124
  .navbar-form {
@@ -4038,9 +4131,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4038
4131
  -webkit-box-shadow: none;
4039
4132
  box-shadow: none;
4040
4133
  }
4041
- .navbar-form.navbar-right:last-child {
4042
- margin-right: -15px;
4043
- }
4044
4134
  }
4045
4135
  .navbar-nav > li > .dropdown-menu {
4046
4136
  margin-top: 0;
@@ -4073,7 +4163,16 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4073
4163
  margin-left: 15px;
4074
4164
  margin-right: 15px;
4075
4165
  }
4076
- .navbar-text.navbar-right:last-child {
4166
+ }
4167
+ @media (min-width: 768px) {
4168
+ .navbar-left {
4169
+ float: left !important;
4170
+ }
4171
+ .navbar-right {
4172
+ float: right !important;
4173
+ margin-right: -15px;
4174
+ }
4175
+ .navbar-right ~ .navbar-right {
4077
4176
  margin-right: 0;
4078
4177
  }
4079
4178
  }
@@ -4531,7 +4630,7 @@ a.list-group-item.active > .badge,
4531
4630
  margin-left: 3px;
4532
4631
  }
4533
4632
  .jumbotron {
4534
- padding: 30px;
4633
+ padding: 30px 15px;
4535
4634
  margin-bottom: 30px;
4536
4635
  color: inherit;
4537
4636
  background-color: #1c1e22;
@@ -4548,7 +4647,8 @@ a.list-group-item.active > .badge,
4548
4647
  .jumbotron > hr {
4549
4648
  border-top-color: #050506;
4550
4649
  }
4551
- .container .jumbotron {
4650
+ .container .jumbotron,
4651
+ .container-fluid .jumbotron {
4552
4652
  border-radius: 6px;
4553
4653
  }
4554
4654
  .jumbotron .container {
@@ -4556,8 +4656,7 @@ a.list-group-item.active > .badge,
4556
4656
  }
4557
4657
  @media screen and (min-width: 768px) {
4558
4658
  .jumbotron {
4559
- padding-top: 48px;
4560
- padding-bottom: 48px;
4659
+ padding: 48px 0;
4561
4660
  }
4562
4661
  .container .jumbotron {
4563
4662
  padding-left: 60px;
@@ -4576,9 +4675,9 @@ a.list-group-item.active > .badge,
4576
4675
  background-color: #1c1e22;
4577
4676
  border: 1px solid #0c0d0e;
4578
4677
  border-radius: 4px;
4579
- -webkit-transition: all 0.2s ease-in-out;
4580
- -o-transition: all 0.2s ease-in-out;
4581
- transition: all 0.2s ease-in-out;
4678
+ -webkit-transition: border 0.2s ease-in-out;
4679
+ -o-transition: border 0.2s ease-in-out;
4680
+ transition: border 0.2s ease-in-out;
4582
4681
  }
4583
4682
  .thumbnail > img,
4584
4683
  .thumbnail a > img {
@@ -4722,17 +4821,6 @@ a.thumbnail.active {
4722
4821
  -o-animation: progress-bar-stripes 2s linear infinite;
4723
4822
  animation: progress-bar-stripes 2s linear infinite;
4724
4823
  }
4725
- .progress-bar[aria-valuenow="1"],
4726
- .progress-bar[aria-valuenow="2"] {
4727
- min-width: 30px;
4728
- }
4729
- .progress-bar[aria-valuenow="0"] {
4730
- color: #7a8288;
4731
- min-width: 30px;
4732
- background-color: transparent;
4733
- background-image: none;
4734
- box-shadow: none;
4735
- }
4736
4824
  .progress-bar-success {
4737
4825
  background-color: #62c462;
4738
4826
  }
@@ -4765,29 +4853,35 @@ a.thumbnail.active {
4765
4853
  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);
4766
4854
  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);
4767
4855
  }
4768
- .media,
4769
- .media-body {
4770
- overflow: hidden;
4771
- zoom: 1;
4772
- }
4773
- .media,
4774
- .media .media {
4856
+ .media {
4775
4857
  margin-top: 15px;
4776
4858
  }
4777
4859
  .media:first-child {
4778
4860
  margin-top: 0;
4779
4861
  }
4780
- .media-object {
4781
- display: block;
4782
- }
4783
- .media-heading {
4784
- margin: 0 0 5px;
4862
+ .media-right,
4863
+ .media > .pull-right {
4864
+ padding-left: 10px;
4785
4865
  }
4866
+ .media-left,
4786
4867
  .media > .pull-left {
4787
- margin-right: 10px;
4868
+ padding-right: 10px;
4788
4869
  }
4789
- .media > .pull-right {
4790
- margin-left: 10px;
4870
+ .media-left,
4871
+ .media-right,
4872
+ .media-body {
4873
+ display: table-cell;
4874
+ vertical-align: top;
4875
+ }
4876
+ .media-middle {
4877
+ vertical-align: middle;
4878
+ }
4879
+ .media-bottom {
4880
+ vertical-align: bottom;
4881
+ }
4882
+ .media-heading {
4883
+ margin-top: 0;
4884
+ margin-bottom: 5px;
4791
4885
  }
4792
4886
  .media-list {
4793
4887
  padding-left: 0;
@@ -4837,6 +4931,7 @@ a.list-group-item:focus {
4837
4931
  .list-group-item.disabled:focus {
4838
4932
  background-color: #999999;
4839
4933
  color: #7a8288;
4934
+ cursor: not-allowed;
4840
4935
  }
4841
4936
  .list-group-item.disabled .list-group-item-heading,
4842
4937
  .list-group-item.disabled:hover .list-group-item-heading,
@@ -5004,19 +5099,23 @@ a.list-group-item-danger.active:focus {
5004
5099
  border-bottom-right-radius: 3px;
5005
5100
  border-bottom-left-radius: 3px;
5006
5101
  }
5007
- .panel > .list-group {
5102
+ .panel > .list-group,
5103
+ .panel > .panel-collapse > .list-group {
5008
5104
  margin-bottom: 0;
5009
5105
  }
5010
- .panel > .list-group .list-group-item {
5106
+ .panel > .list-group .list-group-item,
5107
+ .panel > .panel-collapse > .list-group .list-group-item {
5011
5108
  border-width: 1px 0;
5012
5109
  border-radius: 0;
5013
5110
  }
5014
- .panel > .list-group:first-child .list-group-item:first-child {
5111
+ .panel > .list-group:first-child .list-group-item:first-child,
5112
+ .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
5015
5113
  border-top: 0;
5016
5114
  border-top-right-radius: 3px;
5017
5115
  border-top-left-radius: 3px;
5018
5116
  }
5019
- .panel > .list-group:last-child .list-group-item:last-child {
5117
+ .panel > .list-group:last-child .list-group-item:last-child,
5118
+ .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
5020
5119
  border-bottom: 0;
5021
5120
  border-bottom-right-radius: 3px;
5022
5121
  border-bottom-left-radius: 3px;
@@ -5032,11 +5131,24 @@ a.list-group-item-danger.active:focus {
5032
5131
  .panel > .panel-collapse > .table {
5033
5132
  margin-bottom: 0;
5034
5133
  }
5134
+ .panel > .table caption,
5135
+ .panel > .table-responsive > .table caption,
5136
+ .panel > .panel-collapse > .table caption {
5137
+ padding-left: 15px;
5138
+ padding-right: 15px;
5139
+ }
5035
5140
  .panel > .table:first-child,
5036
5141
  .panel > .table-responsive:first-child > .table:first-child {
5037
5142
  border-top-right-radius: 3px;
5038
5143
  border-top-left-radius: 3px;
5039
5144
  }
5145
+ .panel > .table:first-child > thead:first-child > tr:first-child,
5146
+ .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
5147
+ .panel > .table:first-child > tbody:first-child > tr:first-child,
5148
+ .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
5149
+ border-top-left-radius: 3px;
5150
+ border-top-right-radius: 3px;
5151
+ }
5040
5152
  .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
5041
5153
  .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
5042
5154
  .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
@@ -5062,6 +5174,13 @@ a.list-group-item-danger.active:focus {
5062
5174
  border-bottom-right-radius: 3px;
5063
5175
  border-bottom-left-radius: 3px;
5064
5176
  }
5177
+ .panel > .table:last-child > tbody:last-child > tr:last-child,
5178
+ .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
5179
+ .panel > .table:last-child > tfoot:last-child > tr:last-child,
5180
+ .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
5181
+ border-bottom-left-radius: 3px;
5182
+ border-bottom-right-radius: 3px;
5183
+ }
5065
5184
  .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
5066
5185
  .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
5067
5186
  .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
@@ -5083,7 +5202,9 @@ a.list-group-item-danger.active:focus {
5083
5202
  border-bottom-right-radius: 3px;
5084
5203
  }
5085
5204
  .panel > .panel-body + .table,
5086
- .panel > .panel-body + .table-responsive {
5205
+ .panel > .panel-body + .table-responsive,
5206
+ .panel > .table + .panel-body,
5207
+ .panel > .table-responsive + .panel-body {
5087
5208
  border-top: 1px solid #1c1e22;
5088
5209
  }
5089
5210
  .panel > .table > tbody:first-child > tr:first-child th,
@@ -5159,7 +5280,8 @@ a.list-group-item-danger.active:focus {
5159
5280
  .panel-group .panel-heading {
5160
5281
  border-bottom: 0;
5161
5282
  }
5162
- .panel-group .panel-heading + .panel-collapse > .panel-body {
5283
+ .panel-group .panel-heading + .panel-collapse > .panel-body,
5284
+ .panel-group .panel-heading + .panel-collapse > .list-group {
5163
5285
  border-top: 1px solid rgba(0, 0, 0, 0.6);
5164
5286
  }
5165
5287
  .panel-group .panel-footer {
@@ -5286,7 +5408,8 @@ a.list-group-item-danger.active:focus {
5286
5408
  .embed-responsive .embed-responsive-item,
5287
5409
  .embed-responsive iframe,
5288
5410
  .embed-responsive embed,
5289
- .embed-responsive object {
5411
+ .embed-responsive object,
5412
+ .embed-responsive video {
5290
5413
  position: absolute;
5291
5414
  top: 0;
5292
5415
  left: 0;
@@ -5359,21 +5482,25 @@ button.close {
5359
5482
  right: 0;
5360
5483
  bottom: 0;
5361
5484
  left: 0;
5362
- z-index: 1050;
5485
+ z-index: 1040;
5363
5486
  -webkit-overflow-scrolling: touch;
5364
5487
  outline: 0;
5365
5488
  }
5366
5489
  .modal.fade .modal-dialog {
5367
- -webkit-transform: translate3d(0, -25%, 0);
5368
- transform: translate3d(0, -25%, 0);
5490
+ -webkit-transform: translate(0, -25%);
5491
+ -ms-transform: translate(0, -25%);
5492
+ -o-transform: translate(0, -25%);
5493
+ transform: translate(0, -25%);
5369
5494
  -webkit-transition: -webkit-transform 0.3s ease-out;
5370
5495
  -moz-transition: -moz-transform 0.3s ease-out;
5371
5496
  -o-transition: -o-transform 0.3s ease-out;
5372
5497
  transition: transform 0.3s ease-out;
5373
5498
  }
5374
5499
  .modal.in .modal-dialog {
5375
- -webkit-transform: translate3d(0, 0, 0);
5376
- transform: translate3d(0, 0, 0);
5500
+ -webkit-transform: translate(0, 0);
5501
+ -ms-transform: translate(0, 0);
5502
+ -o-transform: translate(0, 0);
5503
+ transform: translate(0, 0);
5377
5504
  }
5378
5505
  .modal-open .modal {
5379
5506
  overflow-x: hidden;
@@ -5401,7 +5528,6 @@ button.close {
5401
5528
  right: 0;
5402
5529
  bottom: 0;
5403
5530
  left: 0;
5404
- z-index: 1040;
5405
5531
  background-color: #000000;
5406
5532
  }
5407
5533
  .modal-backdrop.fade {
@@ -5574,6 +5700,9 @@ button.close {
5574
5700
  display: none;
5575
5701
  max-width: 276px;
5576
5702
  padding: 1px;
5703
+ font-size: 14px;
5704
+ font-weight: normal;
5705
+ line-height: 1.42857143;
5577
5706
  text-align: left;
5578
5707
  background-color: #2e3338;
5579
5708
  background-clip: padding-box;
@@ -5600,8 +5729,6 @@ button.close {
5600
5729
  margin: 0;
5601
5730
  padding: 8px 14px;
5602
5731
  font-size: 14px;
5603
- font-weight: normal;
5604
- line-height: 18px;
5605
5732
  background-color: #2e3338;
5606
5733
  border-bottom: 1px solid #22262a;
5607
5734
  border-radius: 5px 5px 0 0;
@@ -5704,6 +5831,29 @@ button.close {
5704
5831
  .carousel-inner > .item > a > img {
5705
5832
  line-height: 1;
5706
5833
  }
5834
+ @media all and (transform-3d), (-webkit-transform-3d) {
5835
+ .carousel-inner > .item {
5836
+ transition: transform 0.6s ease-in-out;
5837
+ backface-visibility: hidden;
5838
+ perspective: 1000;
5839
+ }
5840
+ .carousel-inner > .item.next,
5841
+ .carousel-inner > .item.active.right {
5842
+ transform: translate3d(100%, 0, 0);
5843
+ left: 0;
5844
+ }
5845
+ .carousel-inner > .item.prev,
5846
+ .carousel-inner > .item.active.left {
5847
+ transform: translate3d(-100%, 0, 0);
5848
+ left: 0;
5849
+ }
5850
+ .carousel-inner > .item.next.left,
5851
+ .carousel-inner > .item.prev.right,
5852
+ .carousel-inner > .item.active {
5853
+ transform: translate3d(0, 0, 0);
5854
+ left: 0;
5855
+ }
5856
+ }
5707
5857
  .carousel-inner > .active,
5708
5858
  .carousel-inner > .next,
5709
5859
  .carousel-inner > .prev {
@@ -5957,8 +6107,6 @@ button.close {
5957
6107
  }
5958
6108
  .affix {
5959
6109
  position: fixed;
5960
- -webkit-transform: translate3d(0, 0, 0);
5961
- transform: translate3d(0, 0, 0);
5962
6110
  }
5963
6111
  @-ms-viewport {
5964
6112
  width: device-width;