volt-bootstrap 0.0.6 → 0.0.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6d78280d42dfbdbb1818cac8fd9b9008a03f51a8
4
- data.tar.gz: 9c3085f8d6aa8f69ff34a9f301c20a4fb52c0ffe
3
+ metadata.gz: e8bd43866e11758f146eac479dbb30a739cb01ba
4
+ data.tar.gz: 45f3067c89cecb1cfdc638a47da20c4c74c474c0
5
5
  SHA512:
6
- metadata.gz: 8869d31e1ce6c239a1a9da034e3927f1d0d26bda440583c0b31be6df4838cf9c1342bdb922d05ced3acefa8b40600973f48a14ee1f9cedde73bc1ce49cc5e838
7
- data.tar.gz: 933201c8676bd8ad91b27f210b4a9af718672b5354ea2e58f3cc48f886609f44fd443ce256cac7a02757db89760dd34256b29a8b4abd3312afcf71a568060b79
6
+ metadata.gz: 411101265112d657d7ef1ba9a33bf25ab9e79345c0c301653d310f3c4f9eeef5c7324bc5225c87e58c412cbf0b0787b609299fd19933341a582afe85e5e0ff4e
7
+ data.tar.gz: 1d04776cdf3d9d9e6b6b35109c1bc043682a9d90e93bb0c2710fc5dc6abb7a95fcb65c485e242e18b9211d4090aff684104a635dd4a341aceb47499b5b75f879
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Volt::Bootstrap
2
2
 
3
- TODO: Write a gem description
3
+ Adds Twitter Bootstrap to your Volt app!
4
4
 
5
5
  ## Installation
6
6
 
@@ -8,17 +8,17 @@ Add this line to your application's Gemfile:
8
8
 
9
9
  gem 'volt-bootstrap'
10
10
 
11
- And then execute:
11
+ Add the bootstrap component to your application's `app/main/config/dependencies.rb`:
12
12
 
13
- $ bundle
13
+ component 'bootstrap'
14
14
 
15
- Or install it yourself as:
15
+ And then execute:
16
16
 
17
- $ gem install volt-bootstrap
17
+ $ bundle
18
18
 
19
19
  ## Usage
20
20
 
21
- TODO: Write usage instructions here
21
+ Now you can use Twitter Bootstrap in your application's views. See it in action in [Volt's ContactsDemo app](https://github.com/voltrb/contactsdemo/).
22
22
 
23
23
  ## Contributing
24
24
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.6
1
+ 0.0.7
@@ -1,10 +1,10 @@
1
1
  /*!
2
- * Bootstrap v3.2.0 (http://getbootstrap.com)
2
+ * Bootstrap v3.3.1 (http://getbootstrap.com)
3
3
  * Copyright 2011-2014 Twitter, Inc.
4
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
5
  */
6
6
 
7
- /*! normalize.css v3.0.1 | MIT License | git.io/normalize */
7
+ /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
8
8
  html {
9
9
  font-family: sans-serif;
10
10
  -webkit-text-size-adjust: 100%;
@@ -22,6 +22,7 @@ footer,
22
22
  header,
23
23
  hgroup,
24
24
  main,
25
+ menu,
25
26
  nav,
26
27
  section,
27
28
  summary {
@@ -43,7 +44,7 @@ template {
43
44
  display: none;
44
45
  }
45
46
  a {
46
- background: transparent;
47
+ background-color: transparent;
47
48
  }
48
49
  a:active,
49
50
  a:hover {
@@ -187,8 +188,11 @@ td,
187
188
  th {
188
189
  padding: 0;
189
190
  }
191
+ /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
190
192
  @media print {
191
- * {
193
+ *,
194
+ *:before,
195
+ *:after {
192
196
  color: #000 !important;
193
197
  text-shadow: none !important;
194
198
  background: transparent !important;
@@ -205,8 +209,8 @@ th {
205
209
  abbr[title]:after {
206
210
  content: " (" attr(title) ")";
207
211
  }
208
- a[href^="javascript:"]:after,
209
- a[href^="#"]:after {
212
+ a[href^="#"]:after,
213
+ a[href^="javascript:"]:after {
210
214
  content: "";
211
215
  }
212
216
  pre,
@@ -241,10 +245,6 @@ th {
241
245
  .navbar {
242
246
  display: none;
243
247
  }
244
- .table td,
245
- .table th {
246
- background-color: #fff !important;
247
- }
248
248
  .btn > .caret,
249
249
  .dropup > .btn > .caret {
250
250
  border-top-color: #000 !important;
@@ -255,6 +255,10 @@ th {
255
255
  .table {
256
256
  border-collapse: collapse !important;
257
257
  }
258
+ .table td,
259
+ .table th {
260
+ background-color: #fff !important;
261
+ }
258
262
  .table-bordered th,
259
263
  .table-bordered td {
260
264
  border: 1px solid #ddd !important;
@@ -284,7 +288,8 @@ th {
284
288
  .glyphicon-plus:before {
285
289
  content: "\2b";
286
290
  }
287
- .glyphicon-euro:before {
291
+ .glyphicon-euro:before,
292
+ .glyphicon-eur:before {
288
293
  content: "\20ac";
289
294
  }
290
295
  .glyphicon-minus:before {
@@ -910,12 +915,12 @@ textarea {
910
915
  line-height: inherit;
911
916
  }
912
917
  a {
913
- color: #428bca;
918
+ color: #337ab7;
914
919
  text-decoration: none;
915
920
  }
916
921
  a:hover,
917
922
  a:focus {
918
- color: #2a6496;
923
+ color: #23527c;
919
924
  text-decoration: underline;
920
925
  }
921
926
  a:focus {
@@ -935,7 +940,6 @@ img {
935
940
  .carousel-inner > .item > img,
936
941
  .carousel-inner > .item > a > img {
937
942
  display: block;
938
- width: 100% \9;
939
943
  max-width: 100%;
940
944
  height: auto;
941
945
  }
@@ -944,7 +948,6 @@ img {
944
948
  }
945
949
  .img-thumbnail {
946
950
  display: inline-block;
947
- width: 100% \9;
948
951
  max-width: 100%;
949
952
  height: auto;
950
953
  padding: 4px;
@@ -1117,9 +1120,6 @@ small,
1117
1120
  .small {
1118
1121
  font-size: 85%;
1119
1122
  }
1120
- cite {
1121
- font-style: normal;
1122
- }
1123
1123
  mark,
1124
1124
  .mark {
1125
1125
  padding: .2em;
@@ -1153,10 +1153,10 @@ mark,
1153
1153
  color: #777;
1154
1154
  }
1155
1155
  .text-primary {
1156
- color: #428bca;
1156
+ color: #337ab7;
1157
1157
  }
1158
1158
  a.text-primary:hover {
1159
- color: #3071a9;
1159
+ color: #286090;
1160
1160
  }
1161
1161
  .text-success {
1162
1162
  color: #3c763d;
@@ -1184,10 +1184,10 @@ a.text-danger:hover {
1184
1184
  }
1185
1185
  .bg-primary {
1186
1186
  color: #fff;
1187
- background-color: #428bca;
1187
+ background-color: #337ab7;
1188
1188
  }
1189
1189
  a.bg-primary:hover {
1190
- background-color: #3071a9;
1190
+ background-color: #286090;
1191
1191
  }
1192
1192
  .bg-success {
1193
1193
  background-color: #dff0d8;
@@ -1328,10 +1328,6 @@ blockquote.pull-right small:after,
1328
1328
  blockquote.pull-right .small:after {
1329
1329
  content: '\00A0 \2014';
1330
1330
  }
1331
- blockquote:before,
1332
- blockquote:after {
1333
- content: "";
1334
- }
1335
1331
  address {
1336
1332
  margin-bottom: 20px;
1337
1333
  font-style: normal;
@@ -1362,6 +1358,7 @@ kbd {
1362
1358
  kbd kbd {
1363
1359
  padding: 0;
1364
1360
  font-size: 100%;
1361
+ font-weight: bold;
1365
1362
  -webkit-box-shadow: none;
1366
1363
  box-shadow: none;
1367
1364
  }
@@ -2060,6 +2057,12 @@ pre code {
2060
2057
  table {
2061
2058
  background-color: transparent;
2062
2059
  }
2060
+ caption {
2061
+ padding-top: 8px;
2062
+ padding-bottom: 8px;
2063
+ color: #777;
2064
+ text-align: left;
2065
+ }
2063
2066
  th {
2064
2067
  text-align: left;
2065
2068
  }
@@ -2120,12 +2123,10 @@ th {
2120
2123
  .table-bordered > thead > tr > td {
2121
2124
  border-bottom-width: 2px;
2122
2125
  }
2123
- .table-striped > tbody > tr:nth-child(odd) > td,
2124
- .table-striped > tbody > tr:nth-child(odd) > th {
2126
+ .table-striped > tbody > tr:nth-child(odd) {
2125
2127
  background-color: #f9f9f9;
2126
2128
  }
2127
- .table-hover > tbody > tr:hover > td,
2128
- .table-hover > tbody > tr:hover > th {
2129
+ .table-hover > tbody > tr:hover {
2129
2130
  background-color: #f5f5f5;
2130
2131
  }
2131
2132
  table col[class*="col-"] {
@@ -2244,13 +2245,15 @@ table th[class*="col-"] {
2244
2245
  .table-hover > tbody > tr.danger:hover > th {
2245
2246
  background-color: #ebcccc;
2246
2247
  }
2248
+ .table-responsive {
2249
+ min-height: .01%;
2250
+ overflow-x: auto;
2251
+ }
2247
2252
  @media screen and (max-width: 767px) {
2248
2253
  .table-responsive {
2249
2254
  width: 100%;
2250
2255
  margin-bottom: 15px;
2251
- overflow-x: auto;
2252
2256
  overflow-y: hidden;
2253
- -webkit-overflow-scrolling: touch;
2254
2257
  -ms-overflow-style: -ms-autohiding-scrollbar;
2255
2258
  border: 1px solid #ddd;
2256
2259
  }
@@ -2375,14 +2378,14 @@ output {
2375
2378
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
2376
2379
  }
2377
2380
  .form-control::-moz-placeholder {
2378
- color: #777;
2381
+ color: #999;
2379
2382
  opacity: 1;
2380
2383
  }
2381
2384
  .form-control:-ms-input-placeholder {
2382
- color: #777;
2385
+ color: #999;
2383
2386
  }
2384
2387
  .form-control::-webkit-input-placeholder {
2385
- color: #777;
2388
+ color: #999;
2386
2389
  }
2387
2390
  .form-control[disabled],
2388
2391
  .form-control[readonly],
@@ -2397,24 +2400,25 @@ textarea.form-control {
2397
2400
  input[type="search"] {
2398
2401
  -webkit-appearance: none;
2399
2402
  }
2400
- input[type="date"],
2401
- input[type="time"],
2402
- input[type="datetime-local"],
2403
- input[type="month"] {
2404
- line-height: 34px;
2405
- line-height: 1.42857143 \0;
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: 46px;
2403
+ @media screen and (-webkit-min-device-pixel-ratio: 0) {
2404
+ input[type="date"],
2405
+ input[type="time"],
2406
+ input[type="datetime-local"],
2407
+ input[type="month"] {
2408
+ line-height: 34px;
2409
+ }
2410
+ input[type="date"].input-sm,
2411
+ input[type="time"].input-sm,
2412
+ input[type="datetime-local"].input-sm,
2413
+ input[type="month"].input-sm {
2414
+ line-height: 30px;
2415
+ }
2416
+ input[type="date"].input-lg,
2417
+ input[type="time"].input-lg,
2418
+ input[type="datetime-local"].input-lg,
2419
+ input[type="month"].input-lg {
2420
+ line-height: 46px;
2421
+ }
2418
2422
  }
2419
2423
  .form-group {
2420
2424
  margin-bottom: 15px;
@@ -2423,12 +2427,12 @@ input[type="month"].input-lg {
2423
2427
  .checkbox {
2424
2428
  position: relative;
2425
2429
  display: block;
2426
- min-height: 20px;
2427
2430
  margin-top: 10px;
2428
2431
  margin-bottom: 10px;
2429
2432
  }
2430
2433
  .radio label,
2431
2434
  .checkbox label {
2435
+ min-height: 20px;
2432
2436
  padding-left: 20px;
2433
2437
  margin-bottom: 0;
2434
2438
  font-weight: normal;
@@ -2491,35 +2495,41 @@ fieldset[disabled] .checkbox label {
2491
2495
  padding-left: 0;
2492
2496
  }
2493
2497
  .input-sm,
2494
- .form-horizontal .form-group-sm .form-control {
2498
+ .form-group-sm .form-control {
2495
2499
  height: 30px;
2496
2500
  padding: 5px 10px;
2497
2501
  font-size: 12px;
2498
2502
  line-height: 1.5;
2499
2503
  border-radius: 3px;
2500
2504
  }
2501
- select.input-sm {
2505
+ select.input-sm,
2506
+ select.form-group-sm .form-control {
2502
2507
  height: 30px;
2503
2508
  line-height: 30px;
2504
2509
  }
2505
2510
  textarea.input-sm,
2506
- select[multiple].input-sm {
2511
+ textarea.form-group-sm .form-control,
2512
+ select[multiple].input-sm,
2513
+ select[multiple].form-group-sm .form-control {
2507
2514
  height: auto;
2508
2515
  }
2509
2516
  .input-lg,
2510
- .form-horizontal .form-group-lg .form-control {
2517
+ .form-group-lg .form-control {
2511
2518
  height: 46px;
2512
2519
  padding: 10px 16px;
2513
2520
  font-size: 18px;
2514
2521
  line-height: 1.33;
2515
2522
  border-radius: 6px;
2516
2523
  }
2517
- select.input-lg {
2524
+ select.input-lg,
2525
+ select.form-group-lg .form-control {
2518
2526
  height: 46px;
2519
2527
  line-height: 46px;
2520
2528
  }
2521
2529
  textarea.input-lg,
2522
- select[multiple].input-lg {
2530
+ textarea.form-group-lg .form-control,
2531
+ select[multiple].input-lg,
2532
+ select[multiple].form-group-lg .form-control {
2523
2533
  height: auto;
2524
2534
  }
2525
2535
  .has-feedback {
@@ -2530,7 +2540,7 @@ select[multiple].input-lg {
2530
2540
  }
2531
2541
  .form-control-feedback {
2532
2542
  position: absolute;
2533
- top: 25px;
2543
+ top: 0;
2534
2544
  right: 0;
2535
2545
  z-index: 2;
2536
2546
  display: block;
@@ -2538,6 +2548,7 @@ select[multiple].input-lg {
2538
2548
  height: 34px;
2539
2549
  line-height: 34px;
2540
2550
  text-align: center;
2551
+ pointer-events: none;
2541
2552
  }
2542
2553
  .input-lg + .form-control-feedback {
2543
2554
  width: 46px;
@@ -2554,7 +2565,11 @@ select[multiple].input-lg {
2554
2565
  .has-success .radio,
2555
2566
  .has-success .checkbox,
2556
2567
  .has-success .radio-inline,
2557
- .has-success .checkbox-inline {
2568
+ .has-success .checkbox-inline,
2569
+ .has-success.radio label,
2570
+ .has-success.checkbox label,
2571
+ .has-success.radio-inline label,
2572
+ .has-success.checkbox-inline label {
2558
2573
  color: #3c763d;
2559
2574
  }
2560
2575
  .has-success .form-control {
@@ -2580,7 +2595,11 @@ select[multiple].input-lg {
2580
2595
  .has-warning .radio,
2581
2596
  .has-warning .checkbox,
2582
2597
  .has-warning .radio-inline,
2583
- .has-warning .checkbox-inline {
2598
+ .has-warning .checkbox-inline,
2599
+ .has-warning.radio label,
2600
+ .has-warning.checkbox label,
2601
+ .has-warning.radio-inline label,
2602
+ .has-warning.checkbox-inline label {
2584
2603
  color: #8a6d3b;
2585
2604
  }
2586
2605
  .has-warning .form-control {
@@ -2606,7 +2625,11 @@ select[multiple].input-lg {
2606
2625
  .has-error .radio,
2607
2626
  .has-error .checkbox,
2608
2627
  .has-error .radio-inline,
2609
- .has-error .checkbox-inline {
2628
+ .has-error .checkbox-inline,
2629
+ .has-error.radio label,
2630
+ .has-error.checkbox label,
2631
+ .has-error.radio-inline label,
2632
+ .has-error.checkbox-inline label {
2610
2633
  color: #a94442;
2611
2634
  }
2612
2635
  .has-error .form-control {
@@ -2627,6 +2650,9 @@ select[multiple].input-lg {
2627
2650
  .has-error .form-control-feedback {
2628
2651
  color: #a94442;
2629
2652
  }
2653
+ .has-feedback label ~ .form-control-feedback {
2654
+ top: 25px;
2655
+ }
2630
2656
  .has-feedback label.sr-only ~ .form-control-feedback {
2631
2657
  top: 0;
2632
2658
  }
@@ -2647,6 +2673,9 @@ select[multiple].input-lg {
2647
2673
  width: auto;
2648
2674
  vertical-align: middle;
2649
2675
  }
2676
+ .form-inline .form-control-static {
2677
+ display: inline-block;
2678
+ }
2650
2679
  .form-inline .input-group {
2651
2680
  display: inline-table;
2652
2681
  vertical-align: middle;
@@ -2707,7 +2736,6 @@ select[multiple].input-lg {
2707
2736
  }
2708
2737
  }
2709
2738
  .form-horizontal .has-feedback .form-control-feedback {
2710
- top: 0;
2711
2739
  right: 15px;
2712
2740
  }
2713
2741
  @media (min-width: 768px) {
@@ -2730,6 +2758,8 @@ select[multiple].input-lg {
2730
2758
  text-align: center;
2731
2759
  white-space: nowrap;
2732
2760
  vertical-align: middle;
2761
+ -ms-touch-action: manipulation;
2762
+ touch-action: manipulation;
2733
2763
  cursor: pointer;
2734
2764
  -webkit-user-select: none;
2735
2765
  -moz-user-select: none;
@@ -2741,13 +2771,17 @@ select[multiple].input-lg {
2741
2771
  }
2742
2772
  .btn:focus,
2743
2773
  .btn:active:focus,
2744
- .btn.active:focus {
2774
+ .btn.active:focus,
2775
+ .btn.focus,
2776
+ .btn:active.focus,
2777
+ .btn.active.focus {
2745
2778
  outline: thin dotted;
2746
2779
  outline: 5px auto -webkit-focus-ring-color;
2747
2780
  outline-offset: -2px;
2748
2781
  }
2749
2782
  .btn:hover,
2750
- .btn:focus {
2783
+ .btn:focus,
2784
+ .btn.focus {
2751
2785
  color: #333;
2752
2786
  text-decoration: none;
2753
2787
  }
@@ -2775,6 +2809,7 @@ fieldset[disabled] .btn {
2775
2809
  }
2776
2810
  .btn-default:hover,
2777
2811
  .btn-default:focus,
2812
+ .btn-default.focus,
2778
2813
  .btn-default:active,
2779
2814
  .btn-default.active,
2780
2815
  .open > .dropdown-toggle.btn-default {
@@ -2796,6 +2831,9 @@ fieldset[disabled] .btn-default:hover,
2796
2831
  .btn-default.disabled:focus,
2797
2832
  .btn-default[disabled]:focus,
2798
2833
  fieldset[disabled] .btn-default:focus,
2834
+ .btn-default.disabled.focus,
2835
+ .btn-default[disabled].focus,
2836
+ fieldset[disabled] .btn-default.focus,
2799
2837
  .btn-default.disabled:active,
2800
2838
  .btn-default[disabled]:active,
2801
2839
  fieldset[disabled] .btn-default:active,
@@ -2811,17 +2849,18 @@ fieldset[disabled] .btn-default.active {
2811
2849
  }
2812
2850
  .btn-primary {
2813
2851
  color: #fff;
2814
- background-color: #428bca;
2815
- border-color: #357ebd;
2852
+ background-color: #337ab7;
2853
+ border-color: #2e6da4;
2816
2854
  }
2817
2855
  .btn-primary:hover,
2818
2856
  .btn-primary:focus,
2857
+ .btn-primary.focus,
2819
2858
  .btn-primary:active,
2820
2859
  .btn-primary.active,
2821
2860
  .open > .dropdown-toggle.btn-primary {
2822
2861
  color: #fff;
2823
- background-color: #3071a9;
2824
- border-color: #285e8e;
2862
+ background-color: #286090;
2863
+ border-color: #204d74;
2825
2864
  }
2826
2865
  .btn-primary:active,
2827
2866
  .btn-primary.active,
@@ -2837,17 +2876,20 @@ fieldset[disabled] .btn-primary:hover,
2837
2876
  .btn-primary.disabled:focus,
2838
2877
  .btn-primary[disabled]:focus,
2839
2878
  fieldset[disabled] .btn-primary:focus,
2879
+ .btn-primary.disabled.focus,
2880
+ .btn-primary[disabled].focus,
2881
+ fieldset[disabled] .btn-primary.focus,
2840
2882
  .btn-primary.disabled:active,
2841
2883
  .btn-primary[disabled]:active,
2842
2884
  fieldset[disabled] .btn-primary:active,
2843
2885
  .btn-primary.disabled.active,
2844
2886
  .btn-primary[disabled].active,
2845
2887
  fieldset[disabled] .btn-primary.active {
2846
- background-color: #428bca;
2847
- border-color: #357ebd;
2888
+ background-color: #337ab7;
2889
+ border-color: #2e6da4;
2848
2890
  }
2849
2891
  .btn-primary .badge {
2850
- color: #428bca;
2892
+ color: #337ab7;
2851
2893
  background-color: #fff;
2852
2894
  }
2853
2895
  .btn-success {
@@ -2857,6 +2899,7 @@ fieldset[disabled] .btn-primary.active {
2857
2899
  }
2858
2900
  .btn-success:hover,
2859
2901
  .btn-success:focus,
2902
+ .btn-success.focus,
2860
2903
  .btn-success:active,
2861
2904
  .btn-success.active,
2862
2905
  .open > .dropdown-toggle.btn-success {
@@ -2878,6 +2921,9 @@ fieldset[disabled] .btn-success:hover,
2878
2921
  .btn-success.disabled:focus,
2879
2922
  .btn-success[disabled]:focus,
2880
2923
  fieldset[disabled] .btn-success:focus,
2924
+ .btn-success.disabled.focus,
2925
+ .btn-success[disabled].focus,
2926
+ fieldset[disabled] .btn-success.focus,
2881
2927
  .btn-success.disabled:active,
2882
2928
  .btn-success[disabled]:active,
2883
2929
  fieldset[disabled] .btn-success:active,
@@ -2898,6 +2944,7 @@ fieldset[disabled] .btn-success.active {
2898
2944
  }
2899
2945
  .btn-info:hover,
2900
2946
  .btn-info:focus,
2947
+ .btn-info.focus,
2901
2948
  .btn-info:active,
2902
2949
  .btn-info.active,
2903
2950
  .open > .dropdown-toggle.btn-info {
@@ -2919,6 +2966,9 @@ fieldset[disabled] .btn-info:hover,
2919
2966
  .btn-info.disabled:focus,
2920
2967
  .btn-info[disabled]:focus,
2921
2968
  fieldset[disabled] .btn-info:focus,
2969
+ .btn-info.disabled.focus,
2970
+ .btn-info[disabled].focus,
2971
+ fieldset[disabled] .btn-info.focus,
2922
2972
  .btn-info.disabled:active,
2923
2973
  .btn-info[disabled]:active,
2924
2974
  fieldset[disabled] .btn-info:active,
@@ -2939,6 +2989,7 @@ fieldset[disabled] .btn-info.active {
2939
2989
  }
2940
2990
  .btn-warning:hover,
2941
2991
  .btn-warning:focus,
2992
+ .btn-warning.focus,
2942
2993
  .btn-warning:active,
2943
2994
  .btn-warning.active,
2944
2995
  .open > .dropdown-toggle.btn-warning {
@@ -2960,6 +3011,9 @@ fieldset[disabled] .btn-warning:hover,
2960
3011
  .btn-warning.disabled:focus,
2961
3012
  .btn-warning[disabled]:focus,
2962
3013
  fieldset[disabled] .btn-warning:focus,
3014
+ .btn-warning.disabled.focus,
3015
+ .btn-warning[disabled].focus,
3016
+ fieldset[disabled] .btn-warning.focus,
2963
3017
  .btn-warning.disabled:active,
2964
3018
  .btn-warning[disabled]:active,
2965
3019
  fieldset[disabled] .btn-warning:active,
@@ -2980,6 +3034,7 @@ fieldset[disabled] .btn-warning.active {
2980
3034
  }
2981
3035
  .btn-danger:hover,
2982
3036
  .btn-danger:focus,
3037
+ .btn-danger.focus,
2983
3038
  .btn-danger:active,
2984
3039
  .btn-danger.active,
2985
3040
  .open > .dropdown-toggle.btn-danger {
@@ -3001,6 +3056,9 @@ fieldset[disabled] .btn-danger:hover,
3001
3056
  .btn-danger.disabled:focus,
3002
3057
  .btn-danger[disabled]:focus,
3003
3058
  fieldset[disabled] .btn-danger:focus,
3059
+ .btn-danger.disabled.focus,
3060
+ .btn-danger[disabled].focus,
3061
+ fieldset[disabled] .btn-danger.focus,
3004
3062
  .btn-danger.disabled:active,
3005
3063
  .btn-danger[disabled]:active,
3006
3064
  fieldset[disabled] .btn-danger:active,
@@ -3016,12 +3074,12 @@ fieldset[disabled] .btn-danger.active {
3016
3074
  }
3017
3075
  .btn-link {
3018
3076
  font-weight: normal;
3019
- color: #428bca;
3020
- cursor: pointer;
3077
+ color: #337ab7;
3021
3078
  border-radius: 0;
3022
3079
  }
3023
3080
  .btn-link,
3024
3081
  .btn-link:active,
3082
+ .btn-link.active,
3025
3083
  .btn-link[disabled],
3026
3084
  fieldset[disabled] .btn-link {
3027
3085
  background-color: transparent;
@@ -3036,7 +3094,7 @@ fieldset[disabled] .btn-link {
3036
3094
  }
3037
3095
  .btn-link:hover,
3038
3096
  .btn-link:focus {
3039
- color: #2a6496;
3097
+ color: #23527c;
3040
3098
  text-decoration: underline;
3041
3099
  background-color: transparent;
3042
3100
  }
@@ -3091,9 +3149,11 @@ input[type="button"].btn-block {
3091
3149
  }
3092
3150
  .collapse {
3093
3151
  display: none;
3152
+ visibility: hidden;
3094
3153
  }
3095
3154
  .collapse.in {
3096
3155
  display: block;
3156
+ visibility: visible;
3097
3157
  }
3098
3158
  tr.collapse.in {
3099
3159
  display: table-row;
@@ -3105,9 +3165,15 @@ tbody.collapse.in {
3105
3165
  position: relative;
3106
3166
  height: 0;
3107
3167
  overflow: hidden;
3108
- -webkit-transition: height .35s ease;
3109
- -o-transition: height .35s ease;
3110
- transition: height .35s ease;
3168
+ -webkit-transition-timing-function: ease;
3169
+ -o-transition-timing-function: ease;
3170
+ transition-timing-function: ease;
3171
+ -webkit-transition-duration: .35s;
3172
+ -o-transition-duration: .35s;
3173
+ transition-duration: .35s;
3174
+ -webkit-transition-property: height, visibility;
3175
+ -o-transition-property: height, visibility;
3176
+ transition-property: height, visibility;
3111
3177
  }
3112
3178
  .caret {
3113
3179
  display: inline-block;
@@ -3177,7 +3243,7 @@ tbody.collapse.in {
3177
3243
  .dropdown-menu > .active > a:focus {
3178
3244
  color: #fff;
3179
3245
  text-decoration: none;
3180
- background-color: #428bca;
3246
+ background-color: #337ab7;
3181
3247
  outline: 0;
3182
3248
  }
3183
3249
  .dropdown-menu > .disabled > a,
@@ -3270,10 +3336,6 @@ tbody.collapse.in {
3270
3336
  .btn-group-vertical > .btn.active {
3271
3337
  z-index: 2;
3272
3338
  }
3273
- .btn-group > .btn:focus,
3274
- .btn-group-vertical > .btn:focus {
3275
- outline: 0;
3276
- }
3277
3339
  .btn-group .btn + .btn,
3278
3340
  .btn-group .btn + .btn-group,
3279
3341
  .btn-group .btn-group + .btn,
@@ -3413,12 +3475,13 @@ tbody.collapse.in {
3413
3475
  .btn-group-justified > .btn-group .dropdown-menu {
3414
3476
  left: auto;
3415
3477
  }
3416
- [data-toggle="buttons"] > .btn > input[type="radio"],
3417
- [data-toggle="buttons"] > .btn > input[type="checkbox"] {
3478
+ [data-toggle="buttons"] > .btn input[type="radio"],
3479
+ [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
3480
+ [data-toggle="buttons"] > .btn input[type="checkbox"],
3481
+ [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
3418
3482
  position: absolute;
3419
- z-index: -1;
3420
- filter: alpha(opacity=0);
3421
- opacity: 0;
3483
+ clip: rect(0, 0, 0, 0);
3484
+ pointer-events: none;
3422
3485
  }
3423
3486
  .input-group {
3424
3487
  position: relative;
@@ -3607,7 +3670,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3607
3670
  .nav .open > a:hover,
3608
3671
  .nav .open > a:focus {
3609
3672
  background-color: #eee;
3610
- border-color: #428bca;
3673
+ border-color: #337ab7;
3611
3674
  }
3612
3675
  .nav .nav-divider {
3613
3676
  height: 1px;
@@ -3700,7 +3763,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3700
3763
  .nav-pills > li.active > a:hover,
3701
3764
  .nav-pills > li.active > a:focus {
3702
3765
  color: #fff;
3703
- background-color: #428bca;
3766
+ background-color: #337ab7;
3704
3767
  }
3705
3768
  .nav-stacked > li {
3706
3769
  float: none;
@@ -3757,9 +3820,11 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3757
3820
  }
3758
3821
  .tab-content > .tab-pane {
3759
3822
  display: none;
3823
+ visibility: hidden;
3760
3824
  }
3761
3825
  .tab-content > .active {
3762
3826
  display: block;
3827
+ visibility: visible;
3763
3828
  }
3764
3829
  .nav-tabs .dropdown-menu {
3765
3830
  margin-top: -1px;
@@ -3806,6 +3871,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3806
3871
  height: auto !important;
3807
3872
  padding-bottom: 0;
3808
3873
  overflow: visible !important;
3874
+ visibility: visible !important;
3809
3875
  }
3810
3876
  .navbar-collapse.in {
3811
3877
  overflow-y: visible;
@@ -3821,7 +3887,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3821
3887
  .navbar-fixed-bottom .navbar-collapse {
3822
3888
  max-height: 340px;
3823
3889
  }
3824
- @media (max-width: 480px) and (orientation: landscape) {
3890
+ @media (max-device-width: 480px) and (orientation: landscape) {
3825
3891
  .navbar-fixed-top .navbar-collapse,
3826
3892
  .navbar-fixed-bottom .navbar-collapse {
3827
3893
  max-height: 200px;
@@ -3858,9 +3924,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3858
3924
  right: 0;
3859
3925
  left: 0;
3860
3926
  z-index: 1030;
3861
- -webkit-transform: translate3d(0, 0, 0);
3862
- -o-transform: translate3d(0, 0, 0);
3863
- transform: translate3d(0, 0, 0);
3864
3927
  }
3865
3928
  @media (min-width: 768px) {
3866
3929
  .navbar-fixed-top,
@@ -3888,6 +3951,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3888
3951
  .navbar-brand:focus {
3889
3952
  text-decoration: none;
3890
3953
  }
3954
+ .navbar-brand > img {
3955
+ display: block;
3956
+ }
3891
3957
  @media (min-width: 768px) {
3892
3958
  .navbar > .container .navbar-brand,
3893
3959
  .navbar > .container-fluid .navbar-brand {
@@ -3966,17 +4032,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
3966
4032
  padding-top: 15px;
3967
4033
  padding-bottom: 15px;
3968
4034
  }
3969
- .navbar-nav.navbar-right:last-child {
3970
- margin-right: -15px;
3971
- }
3972
- }
3973
- @media (min-width: 768px) {
3974
- .navbar-left {
3975
- float: left !important;
3976
- }
3977
- .navbar-right {
3978
- float: right !important;
3979
- }
3980
4035
  }
3981
4036
  .navbar-form {
3982
4037
  padding: 10px 15px;
@@ -4000,6 +4055,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4000
4055
  width: auto;
4001
4056
  vertical-align: middle;
4002
4057
  }
4058
+ .navbar-form .form-control-static {
4059
+ display: inline-block;
4060
+ }
4003
4061
  .navbar-form .input-group {
4004
4062
  display: inline-table;
4005
4063
  vertical-align: middle;
@@ -4040,6 +4098,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4040
4098
  .navbar-form .form-group {
4041
4099
  margin-bottom: 5px;
4042
4100
  }
4101
+ .navbar-form .form-group:last-child {
4102
+ margin-bottom: 0;
4103
+ }
4043
4104
  }
4044
4105
  @media (min-width: 768px) {
4045
4106
  .navbar-form {
@@ -4052,9 +4113,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4052
4113
  -webkit-box-shadow: none;
4053
4114
  box-shadow: none;
4054
4115
  }
4055
- .navbar-form.navbar-right:last-child {
4056
- margin-right: -15px;
4057
- }
4058
4116
  }
4059
4117
  .navbar-nav > li > .dropdown-menu {
4060
4118
  margin-top: 0;
@@ -4062,6 +4120,8 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4062
4120
  border-top-right-radius: 0;
4063
4121
  }
4064
4122
  .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
4123
+ border-top-left-radius: 4px;
4124
+ border-top-right-radius: 4px;
4065
4125
  border-bottom-right-radius: 0;
4066
4126
  border-bottom-left-radius: 0;
4067
4127
  }
@@ -4087,7 +4147,16 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
4087
4147
  margin-right: 15px;
4088
4148
  margin-left: 15px;
4089
4149
  }
4090
- .navbar-text.navbar-right:last-child {
4150
+ }
4151
+ @media (min-width: 768px) {
4152
+ .navbar-left {
4153
+ float: left !important;
4154
+ }
4155
+ .navbar-right {
4156
+ float: right !important;
4157
+ margin-right: -15px;
4158
+ }
4159
+ .navbar-right ~ .navbar-right {
4091
4160
  margin-right: 0;
4092
4161
  }
4093
4162
  }
@@ -4192,7 +4261,7 @@ fieldset[disabled] .navbar-default .btn-link:focus {
4192
4261
  border-color: #080808;
4193
4262
  }
4194
4263
  .navbar-inverse .navbar-brand {
4195
- color: #777;
4264
+ color: #9d9d9d;
4196
4265
  }
4197
4266
  .navbar-inverse .navbar-brand:hover,
4198
4267
  .navbar-inverse .navbar-brand:focus {
@@ -4200,10 +4269,10 @@ fieldset[disabled] .navbar-default .btn-link:focus {
4200
4269
  background-color: transparent;
4201
4270
  }
4202
4271
  .navbar-inverse .navbar-text {
4203
- color: #777;
4272
+ color: #9d9d9d;
4204
4273
  }
4205
4274
  .navbar-inverse .navbar-nav > li > a {
4206
- color: #777;
4275
+ color: #9d9d9d;
4207
4276
  }
4208
4277
  .navbar-inverse .navbar-nav > li > a:hover,
4209
4278
  .navbar-inverse .navbar-nav > li > a:focus {
@@ -4250,7 +4319,7 @@ fieldset[disabled] .navbar-default .btn-link:focus {
4250
4319
  background-color: #080808;
4251
4320
  }
4252
4321
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
4253
- color: #777;
4322
+ color: #9d9d9d;
4254
4323
  }
4255
4324
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
4256
4325
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
@@ -4271,13 +4340,13 @@ fieldset[disabled] .navbar-default .btn-link:focus {
4271
4340
  }
4272
4341
  }
4273
4342
  .navbar-inverse .navbar-link {
4274
- color: #777;
4343
+ color: #9d9d9d;
4275
4344
  }
4276
4345
  .navbar-inverse .navbar-link:hover {
4277
4346
  color: #fff;
4278
4347
  }
4279
4348
  .navbar-inverse .btn-link {
4280
- color: #777;
4349
+ color: #9d9d9d;
4281
4350
  }
4282
4351
  .navbar-inverse .btn-link:hover,
4283
4352
  .navbar-inverse .btn-link:focus {
@@ -4323,7 +4392,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
4323
4392
  padding: 6px 12px;
4324
4393
  margin-left: -1px;
4325
4394
  line-height: 1.42857143;
4326
- color: #428bca;
4395
+ color: #337ab7;
4327
4396
  text-decoration: none;
4328
4397
  background-color: #fff;
4329
4398
  border: 1px solid #ddd;
@@ -4343,7 +4412,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
4343
4412
  .pagination > li > span:hover,
4344
4413
  .pagination > li > a:focus,
4345
4414
  .pagination > li > span:focus {
4346
- color: #2a6496;
4415
+ color: #23527c;
4347
4416
  background-color: #eee;
4348
4417
  border-color: #ddd;
4349
4418
  }
@@ -4356,8 +4425,8 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
4356
4425
  z-index: 2;
4357
4426
  color: #fff;
4358
4427
  cursor: default;
4359
- background-color: #428bca;
4360
- border-color: #428bca;
4428
+ background-color: #337ab7;
4429
+ border-color: #337ab7;
4361
4430
  }
4362
4431
  .pagination > .disabled > span,
4363
4432
  .pagination > .disabled > span:hover,
@@ -4471,11 +4540,11 @@ a.label:focus {
4471
4540
  background-color: #5e5e5e;
4472
4541
  }
4473
4542
  .label-primary {
4474
- background-color: #428bca;
4543
+ background-color: #337ab7;
4475
4544
  }
4476
4545
  .label-primary[href]:hover,
4477
4546
  .label-primary[href]:focus {
4478
- background-color: #3071a9;
4547
+ background-color: #286090;
4479
4548
  }
4480
4549
  .label-success {
4481
4550
  background-color: #5cb85c;
@@ -4536,16 +4605,22 @@ a.badge:focus {
4536
4605
  text-decoration: none;
4537
4606
  cursor: pointer;
4538
4607
  }
4539
- a.list-group-item.active > .badge,
4608
+ .list-group-item.active > .badge,
4540
4609
  .nav-pills > .active > a > .badge {
4541
- color: #428bca;
4610
+ color: #337ab7;
4542
4611
  background-color: #fff;
4543
4612
  }
4613
+ .list-group-item > .badge {
4614
+ float: right;
4615
+ }
4616
+ .list-group-item > .badge + .badge {
4617
+ margin-right: 5px;
4618
+ }
4544
4619
  .nav-pills > li > a > .badge {
4545
4620
  margin-left: 3px;
4546
4621
  }
4547
4622
  .jumbotron {
4548
- padding: 30px;
4623
+ padding: 30px 15px;
4549
4624
  margin-bottom: 30px;
4550
4625
  color: inherit;
4551
4626
  background-color: #eee;
@@ -4562,7 +4637,8 @@ a.list-group-item.active > .badge,
4562
4637
  .jumbotron > hr {
4563
4638
  border-top-color: #d5d5d5;
4564
4639
  }
4565
- .container .jumbotron {
4640
+ .container .jumbotron,
4641
+ .container-fluid .jumbotron {
4566
4642
  border-radius: 6px;
4567
4643
  }
4568
4644
  .jumbotron .container {
@@ -4570,10 +4646,10 @@ a.list-group-item.active > .badge,
4570
4646
  }
4571
4647
  @media screen and (min-width: 768px) {
4572
4648
  .jumbotron {
4573
- padding-top: 48px;
4574
- padding-bottom: 48px;
4649
+ padding: 48px 0;
4575
4650
  }
4576
- .container .jumbotron {
4651
+ .container .jumbotron,
4652
+ .container-fluid .jumbotron {
4577
4653
  padding-right: 60px;
4578
4654
  padding-left: 60px;
4579
4655
  }
@@ -4590,9 +4666,9 @@ a.list-group-item.active > .badge,
4590
4666
  background-color: #fff;
4591
4667
  border: 1px solid #ddd;
4592
4668
  border-radius: 4px;
4593
- -webkit-transition: all .2s ease-in-out;
4594
- -o-transition: all .2s ease-in-out;
4595
- transition: all .2s ease-in-out;
4669
+ -webkit-transition: border .2s ease-in-out;
4670
+ -o-transition: border .2s ease-in-out;
4671
+ transition: border .2s ease-in-out;
4596
4672
  }
4597
4673
  .thumbnail > img,
4598
4674
  .thumbnail a > img {
@@ -4602,7 +4678,7 @@ a.list-group-item.active > .badge,
4602
4678
  a.thumbnail:hover,
4603
4679
  a.thumbnail:focus,
4604
4680
  a.thumbnail.active {
4605
- border-color: #428bca;
4681
+ border-color: #337ab7;
4606
4682
  }
4607
4683
  .thumbnail .caption {
4608
4684
  padding: 9px;
@@ -4724,7 +4800,7 @@ a.thumbnail.active {
4724
4800
  line-height: 20px;
4725
4801
  color: #fff;
4726
4802
  text-align: center;
4727
- background-color: #428bca;
4803
+ background-color: #337ab7;
4728
4804
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
4729
4805
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
4730
4806
  -webkit-transition: width .6s ease;
@@ -4745,18 +4821,6 @@ a.thumbnail.active {
4745
4821
  -o-animation: progress-bar-stripes 2s linear infinite;
4746
4822
  animation: progress-bar-stripes 2s linear infinite;
4747
4823
  }
4748
- .progress-bar[aria-valuenow="1"],
4749
- .progress-bar[aria-valuenow="2"] {
4750
- min-width: 30px;
4751
- }
4752
- .progress-bar[aria-valuenow="0"] {
4753
- min-width: 30px;
4754
- color: #777;
4755
- background-color: transparent;
4756
- background-image: none;
4757
- -webkit-box-shadow: none;
4758
- box-shadow: none;
4759
- }
4760
4824
  .progress-bar-success {
4761
4825
  background-color: #5cb85c;
4762
4826
  }
@@ -4789,29 +4853,35 @@ a.thumbnail.active {
4789
4853
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4790
4854
  background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4791
4855
  }
4792
- .media,
4793
- .media-body {
4794
- overflow: hidden;
4795
- zoom: 1;
4796
- }
4797
- .media,
4798
- .media .media {
4856
+ .media {
4799
4857
  margin-top: 15px;
4800
4858
  }
4801
4859
  .media:first-child {
4802
4860
  margin-top: 0;
4803
4861
  }
4804
- .media-object {
4805
- display: block;
4806
- }
4807
- .media-heading {
4808
- margin: 0 0 5px;
4862
+ .media-right,
4863
+ .media > .pull-right {
4864
+ padding-left: 10px;
4809
4865
  }
4866
+ .media-left,
4810
4867
  .media > .pull-left {
4811
- margin-right: 10px;
4868
+ padding-right: 10px;
4812
4869
  }
4813
- .media > .pull-right {
4814
- 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;
4815
4885
  }
4816
4886
  .media-list {
4817
4887
  padding-left: 0;
@@ -4838,12 +4908,6 @@ a.thumbnail.active {
4838
4908
  border-bottom-right-radius: 4px;
4839
4909
  border-bottom-left-radius: 4px;
4840
4910
  }
4841
- .list-group-item > .badge {
4842
- float: right;
4843
- }
4844
- .list-group-item > .badge + .badge {
4845
- margin-right: 5px;
4846
- }
4847
4911
  a.list-group-item {
4848
4912
  color: #555;
4849
4913
  }
@@ -4860,6 +4924,7 @@ a.list-group-item:focus {
4860
4924
  .list-group-item.disabled:hover,
4861
4925
  .list-group-item.disabled:focus {
4862
4926
  color: #777;
4927
+ cursor: not-allowed;
4863
4928
  background-color: #eee;
4864
4929
  }
4865
4930
  .list-group-item.disabled .list-group-item-heading,
@@ -4877,8 +4942,8 @@ a.list-group-item:focus {
4877
4942
  .list-group-item.active:focus {
4878
4943
  z-index: 2;
4879
4944
  color: #fff;
4880
- background-color: #428bca;
4881
- border-color: #428bca;
4945
+ background-color: #337ab7;
4946
+ border-color: #337ab7;
4882
4947
  }
4883
4948
  .list-group-item.active .list-group-item-heading,
4884
4949
  .list-group-item.active:hover .list-group-item-heading,
@@ -4894,7 +4959,7 @@ a.list-group-item:focus {
4894
4959
  .list-group-item.active .list-group-item-text,
4895
4960
  .list-group-item.active:hover .list-group-item-text,
4896
4961
  .list-group-item.active:focus .list-group-item-text {
4897
- color: #e1edf7;
4962
+ color: #c7ddef;
4898
4963
  }
4899
4964
  .list-group-item-success {
4900
4965
  color: #3c763d;
@@ -5028,19 +5093,23 @@ a.list-group-item-danger.active:focus {
5028
5093
  border-bottom-right-radius: 3px;
5029
5094
  border-bottom-left-radius: 3px;
5030
5095
  }
5031
- .panel > .list-group {
5096
+ .panel > .list-group,
5097
+ .panel > .panel-collapse > .list-group {
5032
5098
  margin-bottom: 0;
5033
5099
  }
5034
- .panel > .list-group .list-group-item {
5100
+ .panel > .list-group .list-group-item,
5101
+ .panel > .panel-collapse > .list-group .list-group-item {
5035
5102
  border-width: 1px 0;
5036
5103
  border-radius: 0;
5037
5104
  }
5038
- .panel > .list-group:first-child .list-group-item:first-child {
5105
+ .panel > .list-group:first-child .list-group-item:first-child,
5106
+ .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
5039
5107
  border-top: 0;
5040
5108
  border-top-left-radius: 3px;
5041
5109
  border-top-right-radius: 3px;
5042
5110
  }
5043
- .panel > .list-group:last-child .list-group-item:last-child {
5111
+ .panel > .list-group:last-child .list-group-item:last-child,
5112
+ .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
5044
5113
  border-bottom: 0;
5045
5114
  border-bottom-right-radius: 3px;
5046
5115
  border-bottom-left-radius: 3px;
@@ -5056,11 +5125,24 @@ a.list-group-item-danger.active:focus {
5056
5125
  .panel > .panel-collapse > .table {
5057
5126
  margin-bottom: 0;
5058
5127
  }
5128
+ .panel > .table caption,
5129
+ .panel > .table-responsive > .table caption,
5130
+ .panel > .panel-collapse > .table caption {
5131
+ padding-right: 15px;
5132
+ padding-left: 15px;
5133
+ }
5059
5134
  .panel > .table:first-child,
5060
5135
  .panel > .table-responsive:first-child > .table:first-child {
5061
5136
  border-top-left-radius: 3px;
5062
5137
  border-top-right-radius: 3px;
5063
5138
  }
5139
+ .panel > .table:first-child > thead:first-child > tr:first-child,
5140
+ .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
5141
+ .panel > .table:first-child > tbody:first-child > tr:first-child,
5142
+ .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
5143
+ border-top-left-radius: 3px;
5144
+ border-top-right-radius: 3px;
5145
+ }
5064
5146
  .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
5065
5147
  .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
5066
5148
  .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
@@ -5086,6 +5168,13 @@ a.list-group-item-danger.active:focus {
5086
5168
  border-bottom-right-radius: 3px;
5087
5169
  border-bottom-left-radius: 3px;
5088
5170
  }
5171
+ .panel > .table:last-child > tbody:last-child > tr:last-child,
5172
+ .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
5173
+ .panel > .table:last-child > tfoot:last-child > tr:last-child,
5174
+ .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
5175
+ border-bottom-right-radius: 3px;
5176
+ border-bottom-left-radius: 3px;
5177
+ }
5089
5178
  .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
5090
5179
  .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
5091
5180
  .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
@@ -5107,7 +5196,9 @@ a.list-group-item-danger.active:focus {
5107
5196
  border-bottom-right-radius: 3px;
5108
5197
  }
5109
5198
  .panel > .panel-body + .table,
5110
- .panel > .panel-body + .table-responsive {
5199
+ .panel > .panel-body + .table-responsive,
5200
+ .panel > .table + .panel-body,
5201
+ .panel > .table-responsive + .panel-body {
5111
5202
  border-top: 1px solid #ddd;
5112
5203
  }
5113
5204
  .panel > .table > tbody:first-child > tr:first-child th,
@@ -5183,7 +5274,8 @@ a.list-group-item-danger.active:focus {
5183
5274
  .panel-group .panel-heading {
5184
5275
  border-bottom: 0;
5185
5276
  }
5186
- .panel-group .panel-heading + .panel-collapse > .panel-body {
5277
+ .panel-group .panel-heading + .panel-collapse > .panel-body,
5278
+ .panel-group .panel-heading + .panel-collapse > .list-group {
5187
5279
  border-top: 1px solid #ddd;
5188
5280
  }
5189
5281
  .panel-group .panel-footer {
@@ -5211,22 +5303,22 @@ a.list-group-item-danger.active:focus {
5211
5303
  border-bottom-color: #ddd;
5212
5304
  }
5213
5305
  .panel-primary {
5214
- border-color: #428bca;
5306
+ border-color: #337ab7;
5215
5307
  }
5216
5308
  .panel-primary > .panel-heading {
5217
5309
  color: #fff;
5218
- background-color: #428bca;
5219
- border-color: #428bca;
5310
+ background-color: #337ab7;
5311
+ border-color: #337ab7;
5220
5312
  }
5221
5313
  .panel-primary > .panel-heading + .panel-collapse > .panel-body {
5222
- border-top-color: #428bca;
5314
+ border-top-color: #337ab7;
5223
5315
  }
5224
5316
  .panel-primary > .panel-heading .badge {
5225
- color: #428bca;
5317
+ color: #337ab7;
5226
5318
  background-color: #fff;
5227
5319
  }
5228
5320
  .panel-primary > .panel-footer + .panel-collapse > .panel-body {
5229
- border-bottom-color: #428bca;
5321
+ border-bottom-color: #337ab7;
5230
5322
  }
5231
5323
  .panel-success {
5232
5324
  border-color: #d6e9c6;
@@ -5310,7 +5402,8 @@ a.list-group-item-danger.active:focus {
5310
5402
  .embed-responsive .embed-responsive-item,
5311
5403
  .embed-responsive iframe,
5312
5404
  .embed-responsive embed,
5313
- .embed-responsive object {
5405
+ .embed-responsive object,
5406
+ .embed-responsive video {
5314
5407
  position: absolute;
5315
5408
  top: 0;
5316
5409
  bottom: 0;
@@ -5381,7 +5474,7 @@ button.close {
5381
5474
  right: 0;
5382
5475
  bottom: 0;
5383
5476
  left: 0;
5384
- z-index: 1050;
5477
+ z-index: 1040;
5385
5478
  display: none;
5386
5479
  overflow: hidden;
5387
5480
  -webkit-overflow-scrolling: touch;
@@ -5391,14 +5484,16 @@ button.close {
5391
5484
  -webkit-transition: -webkit-transform .3s ease-out;
5392
5485
  -o-transition: -o-transform .3s ease-out;
5393
5486
  transition: transform .3s ease-out;
5394
- -webkit-transform: translate3d(0, -25%, 0);
5395
- -o-transform: translate3d(0, -25%, 0);
5396
- transform: translate3d(0, -25%, 0);
5487
+ -webkit-transform: translate(0, -25%);
5488
+ -ms-transform: translate(0, -25%);
5489
+ -o-transform: translate(0, -25%);
5490
+ transform: translate(0, -25%);
5397
5491
  }
5398
5492
  .modal.in .modal-dialog {
5399
- -webkit-transform: translate3d(0, 0, 0);
5400
- -o-transform: translate3d(0, 0, 0);
5401
- transform: translate3d(0, 0, 0);
5493
+ -webkit-transform: translate(0, 0);
5494
+ -ms-transform: translate(0, 0);
5495
+ -o-transform: translate(0, 0);
5496
+ transform: translate(0, 0);
5402
5497
  }
5403
5498
  .modal-open .modal {
5404
5499
  overflow-x: hidden;
@@ -5422,12 +5517,10 @@ button.close {
5422
5517
  box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
5423
5518
  }
5424
5519
  .modal-backdrop {
5425
- position: fixed;
5520
+ position: absolute;
5426
5521
  top: 0;
5427
5522
  right: 0;
5428
- bottom: 0;
5429
5523
  left: 0;
5430
- z-index: 1040;
5431
5524
  background-color: #000;
5432
5525
  }
5433
5526
  .modal-backdrop.fade {
@@ -5498,7 +5591,9 @@ button.close {
5498
5591
  position: absolute;
5499
5592
  z-index: 1070;
5500
5593
  display: block;
5594
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
5501
5595
  font-size: 12px;
5596
+ font-weight: normal;
5502
5597
  line-height: 1.4;
5503
5598
  visibility: visible;
5504
5599
  filter: alpha(opacity=0);
@@ -5548,14 +5643,16 @@ button.close {
5548
5643
  border-top-color: #000;
5549
5644
  }
5550
5645
  .tooltip.top-left .tooltip-arrow {
5646
+ right: 5px;
5551
5647
  bottom: 0;
5552
- left: 5px;
5648
+ margin-bottom: -5px;
5553
5649
  border-width: 5px 5px 0;
5554
5650
  border-top-color: #000;
5555
5651
  }
5556
5652
  .tooltip.top-right .tooltip-arrow {
5557
- right: 5px;
5558
5653
  bottom: 0;
5654
+ left: 5px;
5655
+ margin-bottom: -5px;
5559
5656
  border-width: 5px 5px 0;
5560
5657
  border-top-color: #000;
5561
5658
  }
@@ -5582,13 +5679,15 @@ button.close {
5582
5679
  }
5583
5680
  .tooltip.bottom-left .tooltip-arrow {
5584
5681
  top: 0;
5585
- left: 5px;
5682
+ right: 5px;
5683
+ margin-top: -5px;
5586
5684
  border-width: 0 5px 5px;
5587
5685
  border-bottom-color: #000;
5588
5686
  }
5589
5687
  .tooltip.bottom-right .tooltip-arrow {
5590
5688
  top: 0;
5591
- right: 5px;
5689
+ left: 5px;
5690
+ margin-top: -5px;
5592
5691
  border-width: 0 5px 5px;
5593
5692
  border-bottom-color: #000;
5594
5693
  }
@@ -5600,6 +5699,10 @@ button.close {
5600
5699
  display: none;
5601
5700
  max-width: 276px;
5602
5701
  padding: 1px;
5702
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
5703
+ font-size: 14px;
5704
+ font-weight: normal;
5705
+ line-height: 1.42857143;
5603
5706
  text-align: left;
5604
5707
  white-space: normal;
5605
5708
  background-color: #fff;
@@ -5627,8 +5730,6 @@ button.close {
5627
5730
  padding: 8px 14px;
5628
5731
  margin: 0;
5629
5732
  font-size: 14px;
5630
- font-weight: normal;
5631
- line-height: 18px;
5632
5733
  background-color: #f7f7f7;
5633
5734
  border-bottom: 1px solid #ebebeb;
5634
5735
  border-radius: 5px 5px 0 0;
@@ -5731,6 +5832,37 @@ button.close {
5731
5832
  .carousel-inner > .item > a > img {
5732
5833
  line-height: 1;
5733
5834
  }
5835
+ @media all and (transform-3d), (-webkit-transform-3d) {
5836
+ .carousel-inner > .item {
5837
+ -webkit-transition: -webkit-transform .6s ease-in-out;
5838
+ -o-transition: -o-transform .6s ease-in-out;
5839
+ transition: transform .6s ease-in-out;
5840
+
5841
+ -webkit-backface-visibility: hidden;
5842
+ backface-visibility: hidden;
5843
+ -webkit-perspective: 1000;
5844
+ perspective: 1000;
5845
+ }
5846
+ .carousel-inner > .item.next,
5847
+ .carousel-inner > .item.active.right {
5848
+ left: 0;
5849
+ -webkit-transform: translate3d(100%, 0, 0);
5850
+ transform: translate3d(100%, 0, 0);
5851
+ }
5852
+ .carousel-inner > .item.prev,
5853
+ .carousel-inner > .item.active.left {
5854
+ left: 0;
5855
+ -webkit-transform: translate3d(-100%, 0, 0);
5856
+ transform: translate3d(-100%, 0, 0);
5857
+ }
5858
+ .carousel-inner > .item.next.left,
5859
+ .carousel-inner > .item.prev.right,
5860
+ .carousel-inner > .item.active {
5861
+ left: 0;
5862
+ -webkit-transform: translate3d(0, 0, 0);
5863
+ transform: translate3d(0, 0, 0);
5864
+ }
5865
+ }
5734
5866
  .carousel-inner > .active,
5735
5867
  .carousel-inner > .next,
5736
5868
  .carousel-inner > .prev {
@@ -5986,9 +6118,6 @@ button.close {
5986
6118
  }
5987
6119
  .affix {
5988
6120
  position: fixed;
5989
- -webkit-transform: translate3d(0, 0, 0);
5990
- -o-transform: translate3d(0, 0, 0);
5991
- transform: translate3d(0, 0, 0);
5992
6121
  }
5993
6122
  @-ms-viewport {
5994
6123
  width: device-width;
@@ -6200,3 +6329,4 @@ button.close {
6200
6329
  display: none !important;
6201
6330
  }
6202
6331
  }
6332
+ /*# sourceMappingURL=bootstrap.css.map */