bootswatch-rails 3.1.1.1 → 3.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/HISTORY.md +4 -0
  3. data/README.md +4 -3
  4. data/converter +9 -0
  5. data/lib/bootswatch-rails/version.rb +1 -1
  6. data/vendor/assets/stylesheets/bootswatch/amelia/_bootswatch.scss +16 -4
  7. data/vendor/assets/stylesheets/bootswatch/amelia/_variables.scss +80 -63
  8. data/vendor/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +5 -5
  9. data/vendor/assets/stylesheets/bootswatch/cerulean/_variables.scss +53 -38
  10. data/vendor/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +16 -13
  11. data/vendor/assets/stylesheets/bootswatch/cosmo/_variables.scss +55 -40
  12. data/vendor/assets/stylesheets/bootswatch/custom/_variables.scss +7 -7
  13. data/vendor/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +18 -11
  14. data/vendor/assets/stylesheets/bootswatch/cyborg/_variables.scss +64 -49
  15. data/vendor/assets/stylesheets/bootswatch/darkly/_bootswatch.scss +6 -1
  16. data/vendor/assets/stylesheets/bootswatch/darkly/_variables.scss +68 -53
  17. data/vendor/assets/stylesheets/bootswatch/flatly/_bootswatch.scss +15 -9
  18. data/vendor/assets/stylesheets/bootswatch/flatly/_variables.scss +66 -49
  19. data/vendor/assets/stylesheets/bootswatch/journal/_bootswatch.scss +4 -3
  20. data/vendor/assets/stylesheets/bootswatch/journal/_variables.scss +53 -37
  21. data/vendor/assets/stylesheets/bootswatch/lumen/_bootswatch.scss +27 -10
  22. data/vendor/assets/stylesheets/bootswatch/lumen/_variables.scss +164 -147
  23. data/vendor/assets/stylesheets/bootswatch/readable/_bootswatch.scss +15 -11
  24. data/vendor/assets/stylesheets/bootswatch/readable/_variables.scss +66 -50
  25. data/vendor/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +1 -1
  26. data/vendor/assets/stylesheets/bootswatch/simplex/_variables.scss +64 -48
  27. data/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss +22 -9
  28. data/vendor/assets/stylesheets/bootswatch/slate/_variables.scss +179 -168
  29. data/vendor/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +3 -3
  30. data/vendor/assets/stylesheets/bootswatch/spacelab/_variables.scss +59 -43
  31. data/vendor/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +25 -12
  32. data/vendor/assets/stylesheets/bootswatch/superhero/_variables.scss +182 -169
  33. data/vendor/assets/stylesheets/bootswatch/united/_bootswatch.scss +1 -1
  34. data/vendor/assets/stylesheets/bootswatch/united/_variables.scss +53 -38
  35. data/vendor/assets/stylesheets/bootswatch/yeti/_bootswatch.scss +9 -4
  36. data/vendor/assets/stylesheets/bootswatch/yeti/_variables.scss +64 -47
  37. metadata +2 -2
@@ -1,4 +1,4 @@
1
- // Flatly 3.1.1
1
+ // Flatly 3.2.0
2
2
  // Bootswatch
3
3
  // -----------------------------------------------------
4
4
 
@@ -9,6 +9,7 @@
9
9
  .navbar {
10
10
  border-width: 0;
11
11
  }
12
+
12
13
  .navbar-default {
13
14
 
14
15
  .badge {
@@ -95,6 +96,7 @@ table,
95
96
  border: none;
96
97
  }
97
98
  }
99
+
98
100
  .table-bordered > thead > tr > th,
99
101
  .table-bordered > tbody > tr > th,
100
102
  .table-bordered > tfoot > tr > th,
@@ -185,7 +187,7 @@ input, {
185
187
  .open > a,
186
188
  .open > a:hover,
187
189
  .open > a:focus {
188
- border-color: transparent;
190
+ border-color: hsla(0, 100%, 100%, 0);
189
191
  }
190
192
  }
191
193
 
@@ -216,15 +218,19 @@ input, {
216
218
  }
217
219
 
218
220
  .close {
219
- color: #fff;
220
221
  text-decoration: none;
221
- opacity: 0.4;
222
+ }
223
+ }
222
224
 
223
- &:hover,
224
- &:focus {
225
- color: #fff;
226
- opacity: 1;
227
- }
225
+ .close {
226
+ color: #fff;
227
+ text-decoration: none;
228
+ opacity: 0.4;
229
+
230
+ &:hover,
231
+ &:focus {
232
+ color: #fff;
233
+ opacity: 1;
228
234
  }
229
235
  }
230
236
 
@@ -1,4 +1,4 @@
1
- // Flatly 3.1.1
1
+ // Flatly 3.2.0
2
2
  // Variables
3
3
  // --------------------------------------------------
4
4
 
@@ -22,7 +22,7 @@ $brand-danger: #E74C3C !default;
22
22
 
23
23
  //== Scaffolding
24
24
  //
25
- // ## Settings for some of the most global styles.
25
+ //## Settings for some of the most global styles.
26
26
 
27
27
  //** Background color for `<body>`.
28
28
  $body-bg: #fff !default;
@@ -68,10 +68,24 @@ $headings-line-height: 1.1 !default;
68
68
  $headings-color: inherit !default;
69
69
 
70
70
 
71
+ //== Iconography
72
+ //
73
+ //## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
74
+
75
+ //** Load fonts from this directory.
76
+ //** File name for all font files.
77
+ $icon-font-name: "glyphicons-halflings-regular" !default;
78
+ //** Element ID within SVG icon file.
79
+ $icon-font-svg-id: "glyphicons_halflingsregular" !default;
80
+
81
+
82
+
71
83
  //== Type
72
84
  //
73
85
  //##
74
86
 
87
+ //** Horizontal offset for forms and lists.
88
+ $component-offset-horizontal: 180px !default;
75
89
  //** Text muted color
76
90
  $text-muted: $gray-light !default;
77
91
  //** Abbreviations and acronyms border color
@@ -85,27 +99,13 @@ $blockquote-font-size: ($font-size-base * 1.25) !default;
85
99
  //** Blockquote border color
86
100
  $blockquote-border-color: $gray-lighter !default;
87
101
  //** Page header border color
88
- $page-header-border-color: transparent !default;
89
-
90
-
91
- //== Miscellaneous
92
- //
93
- //##
94
-
102
+ $page-header-border-color: hsla(0, 100%, 100%, 0) !default;
103
+ //** Width of horizontal description list titles
104
+ $dl-horizontal-offset: $component-offset-horizontal !default;
95
105
  //** Horizontal line color.
96
106
  $hr-border: $gray-lighter !default;
97
107
 
98
- //** Horizontal offset for forms and lists.
99
- $component-offset-horizontal: 180px !default;
100
-
101
108
 
102
- //-- Iconography
103
- //
104
- //## Specify custom locations of the include Glyphicons icon font. Useful for those including Bootstrap via Bower.
105
-
106
-
107
- $icon-font-name: "glyphicons-halflings-regular" !default;
108
- $icon-font-svg-id: "glyphicons_halflingsregular" !default;
109
109
 
110
110
  //== Components
111
111
  //
@@ -151,7 +151,7 @@ $table-cell-padding: 8px !default;
151
151
  $table-condensed-cell-padding: 5px !default;
152
152
 
153
153
  //** Default background color used for all tables.
154
- $table-bg: transparent !default;
154
+ $table-bg: hsla(0, 100%, 100%, 0) !default;
155
155
  //** Background color used for `.table-striped`.
156
156
  $table-bg-accent: #f9f9f9 !default;
157
157
  //** Background color used for `.table-hover`.
@@ -224,7 +224,7 @@ $input-height-large: (ceil($font-size-large * $line-height-large) +
224
224
  $input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
225
225
 
226
226
  $legend-color: $text-color !default;
227
- $legend-border-color: transparent !default;
227
+ $legend-border-color: hsla(0, 100%, 100%, 0) !default;
228
228
 
229
229
  //** Background color for textual input addons
230
230
  $input-group-addon-bg: $gray-lighter !default;
@@ -245,25 +245,25 @@ $dropdown-fallback-border: #ccc !default;
245
245
  //** Divider color for between dropdown items.
246
246
  $dropdown-divider-bg: #e5e5e5 !default;
247
247
 
248
- //** Active dropdown menu item text color.
249
- $dropdown-link-active-color: #fff !default;
250
- //** Active dropdown menu item background color.
251
- $dropdown-link-active-bg: $component-active-bg !default;
252
-
253
248
  //** Dropdown link text color.
254
249
  $dropdown-link-color: $gray-dark !default;
255
250
  //** Hover color for dropdown links.
256
251
  $dropdown-link-hover-color: #fff !default;
252
+ //** Active dropdown menu item background color.
253
+ $dropdown-link-active-bg: $component-active-bg !default;
257
254
  //** Hover background for dropdown links.
258
255
  $dropdown-link-hover-bg: $dropdown-link-active-bg !default;
259
256
 
257
+ //** Active dropdown menu item text color.
258
+ $dropdown-link-active-color: #fff !default;
259
+
260
260
  //** Disabled dropdown menu item background color.
261
261
  $dropdown-link-disabled-color: $text-muted !default;
262
262
 
263
263
  //** Text color for headers within dropdown menus.
264
264
  $dropdown-header-color: $text-muted !default;
265
265
 
266
- // Note: Deprecated @dropdown-caret-color as of v3.1.0
266
+ //** Deprecated `@dropdown-caret-color` as of v3.1.0
267
267
  $dropdown-caret-color: #000 !default;
268
268
 
269
269
 
@@ -276,8 +276,8 @@ $dropdown-caret-color: #000 !default;
276
276
 
277
277
  $zindex-navbar: 1000 !default;
278
278
  $zindex-dropdown: 1000 !default;
279
- $zindex-popover: 1010 !default;
280
- $zindex-tooltip: 1030 !default;
279
+ $zindex-popover: 1060 !default;
280
+ $zindex-tooltip: 1070 !default;
281
281
  $zindex-navbar-fixed: 1030 !default;
282
282
  $zindex-modal-background: 1040 !default;
283
283
  $zindex-modal: 1050 !default;
@@ -288,27 +288,32 @@ $zindex-modal: 1050 !default;
288
288
  //## Define the breakpoints at which your layout will change, adapting to different screen sizes.
289
289
 
290
290
  // Extra small screen / phone
291
- // Note: Deprecated @screen-xs and @screen-phone as of v3.0.1
291
+ //** Deprecated `@screen-xs` as of v3.0.1
292
292
  $screen-xs: 480px !default;
293
+ //** Deprecated `@screen-xs-min` as of v3.2.0
293
294
  $screen-xs-min: $screen-xs !default;
295
+ //** Deprecated `@screen-phone` as of v3.0.1
294
296
  $screen-phone: $screen-xs-min !default;
295
297
 
296
298
  // Small screen / tablet
297
- // Note: Deprecated @screen-sm and @screen-tablet as of v3.0.1
299
+ //** Deprecated `@screen-sm` as of v3.0.1
298
300
  $screen-sm: 768px !default;
299
301
  $screen-sm-min: $screen-sm !default;
302
+ //** Deprecated `@screen-tablet` as of v3.0.1
300
303
  $screen-tablet: $screen-sm-min !default;
301
304
 
302
305
  // Medium screen / desktop
303
- // Note: Deprecated @screen-md and @screen-desktop as of v3.0.1
306
+ //** Deprecated `@screen-md` as of v3.0.1
304
307
  $screen-md: 992px !default;
305
308
  $screen-md-min: $screen-md !default;
309
+ //** Deprecated `@screen-desktop` as of v3.0.1
306
310
  $screen-desktop: $screen-md-min !default;
307
311
 
308
312
  // Large screen / wide desktop
309
- // Note: Deprecated @screen-lg and @screen-lg-desktop as of v3.0.1
313
+ //** Deprecated `@screen-lg` as of v3.0.1
310
314
  $screen-lg: 1200px !default;
311
315
  $screen-lg-min: $screen-lg !default;
316
+ //** Deprecated `@screen-lg-desktop` as of v3.0.1
312
317
  $screen-lg-desktop: $screen-lg-min !default;
313
318
 
314
319
  // So media queries don't overlap when required, provide a maximum
@@ -366,21 +371,21 @@ $navbar-collapse-max-height: 340px !default;
366
371
 
367
372
  $navbar-default-color: #777 !default;
368
373
  $navbar-default-bg: $brand-primary !default;
369
- $navbar-default-border: transparent !default;
374
+ $navbar-default-border: hsla(0, 100%, 100%, 0) !default;
370
375
 
371
376
  // Navbar links
372
377
  $navbar-default-link-color: #fff !default;
373
378
  $navbar-default-link-hover-color: $brand-success !default;
374
- $navbar-default-link-hover-bg: transparent !default;
379
+ $navbar-default-link-hover-bg: hsla(0, 100%, 100%, 0) !default;
375
380
  $navbar-default-link-active-color: #fff !default;
376
381
  $navbar-default-link-active-bg: darken($navbar-default-bg, 10%) !default;
377
382
  $navbar-default-link-disabled-color: #ccc !default;
378
- $navbar-default-link-disabled-bg: transparent !default;
383
+ $navbar-default-link-disabled-bg: hsla(0, 100%, 100%, 0) !default;
379
384
 
380
385
  // Navbar brand label
381
386
  $navbar-default-brand-color: $navbar-default-link-color !default;
382
387
  $navbar-default-brand-hover-color: $navbar-default-link-hover-color !default;
383
- $navbar-default-brand-hover-bg: transparent !default;
388
+ $navbar-default-brand-hover-bg: hsla(0, 100%, 100%, 0) !default;
384
389
 
385
390
  // Navbar toggle
386
391
  $navbar-default-toggle-hover-bg: darken($navbar-default-bg, 10%) !default;
@@ -392,21 +397,21 @@ $navbar-default-toggle-border-color: darken($navbar-default-bg, 10%) !defa
392
397
  // Reset inverted navbar basics
393
398
  $navbar-inverse-color: #fff !default;
394
399
  $navbar-inverse-bg: $brand-success !default;
395
- $navbar-inverse-border: transparent !default;
400
+ $navbar-inverse-border: hsla(0, 100%, 100%, 0) !default;
396
401
 
397
402
  // Inverted navbar links
398
403
  $navbar-inverse-link-color: #fff !default;
399
404
  $navbar-inverse-link-hover-color: $brand-primary !default;
400
- $navbar-inverse-link-hover-bg: transparent !default;
405
+ $navbar-inverse-link-hover-bg: hsla(0, 100%, 100%, 0) !default;
401
406
  $navbar-inverse-link-active-color: #fff !default;
402
407
  $navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 5%) !default;
403
408
  $navbar-inverse-link-disabled-color: #ccc !default;
404
- $navbar-inverse-link-disabled-bg: transparent !default;
409
+ $navbar-inverse-link-disabled-bg: hsla(0, 100%, 100%, 0) !default;
405
410
 
406
411
  // Inverted navbar brand label
407
412
  $navbar-inverse-brand-color: $navbar-inverse-link-color !default;
408
413
  $navbar-inverse-brand-hover-color: $navbar-inverse-link-hover-color !default;
409
- $navbar-inverse-brand-hover-bg: transparent !default;
414
+ $navbar-inverse-brand-hover-bg: hsla(0, 100%, 100%, 0) !default;
410
415
 
411
416
  // Inverted navbar toggle
412
417
  $navbar-inverse-toggle-hover-bg: darken($navbar-inverse-bg, 10%) !default;
@@ -451,19 +456,19 @@ $nav-pills-active-link-hover-color: $component-active-color !default;
451
456
 
452
457
  $pagination-color: #fff !default;
453
458
  $pagination-bg: $brand-success !default;
454
- $pagination-border: transparent !default;
459
+ $pagination-border: hsla(0, 100%, 100%, 0) !default;
455
460
 
456
461
  $pagination-hover-color: #fff !default;
457
462
  $pagination-hover-bg: darken($brand-success, 15%) !default;
458
- $pagination-hover-border: transparent !default;
463
+ $pagination-hover-border: hsla(0, 100%, 100%, 0) !default;
459
464
 
460
465
  $pagination-active-color: #fff !default;
461
466
  $pagination-active-bg: darken($brand-success, 15%) !default;
462
- $pagination-active-border: transparent !default;
467
+ $pagination-active-border: hsla(0, 100%, 100%, 0) !default;
463
468
 
464
469
  $pagination-disabled-color: $gray-lighter !default;
465
470
  $pagination-disabled-bg: lighten($brand-success, 15%) !default;;
466
- $pagination-disabled-border: transparent !default;
471
+ $pagination-disabled-border: hsla(0, 100%, 100%, 0) !default;
467
472
 
468
473
 
469
474
  //== Pager
@@ -674,17 +679,26 @@ $list-group-border: $gray-lighter !default;
674
679
  //** List group border radius
675
680
  $list-group-border-radius: $border-radius-base !default;
676
681
 
677
- //** Background color of single list elements on hover
682
+ //** Background color of single list items on hover
678
683
  $list-group-hover-bg: $gray-lighter !default;
679
- //** Text color of active list elements
684
+ //** Text color of active list items
680
685
  $list-group-active-color: $component-active-color !default;
681
- //** Background color of active list elements
686
+ //** Background color of active list items
682
687
  $list-group-active-bg: $component-active-bg !default;
683
688
  //** Border color of active list elements
684
689
  $list-group-active-border: $list-group-active-bg !default;
690
+ //** Text color for content within active list items
685
691
  $list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
686
692
 
693
+ //** Text color of disabled list items
694
+ $list-group-disabled-color: $gray-light !default;
695
+ //** Background color of disabled list items
696
+ $list-group-disabled-bg: $gray-lighter !default;
697
+ //** Text color for content within disabled list items
698
+ $list-group-disabled-text-color: $list-group-disabled-color !default;
699
+
687
700
  $list-group-link-color: #555 !default;
701
+ $list-group-link-hover-color: $list-group-link-color !default;
688
702
  $list-group-link-heading-color: #333 !default;
689
703
 
690
704
 
@@ -694,6 +708,8 @@ $list-group-link-heading-color: #333 !default;
694
708
 
695
709
  $panel-bg: #fff !default;
696
710
  $panel-body-padding: 15px !default;
711
+ $panel-heading-padding: 10px 15px !default;
712
+ $panel-footer-padding: $panel-heading-padding !default;
697
713
  $panel-border-radius: $border-radius-base !default;
698
714
 
699
715
  //** Border color for elements within panels
@@ -749,7 +765,7 @@ $thumbnail-caption-padding: 9px !default;
749
765
  //##
750
766
 
751
767
  $well-bg: $gray-lighter !default;
752
- $well-border: transparent !default;
768
+ $well-border: hsla(0, 100%, 100%, 0) !default;
753
769
 
754
770
 
755
771
  //== Badges
@@ -827,3 +843,4 @@ $pre-bg: $gray-lighter !default;
827
843
  $pre-color: $gray-dark !default;
828
844
  $pre-border-color: #ccc !default;
829
845
  $pre-scrollable-max-height: 340px !default;
846
+
@@ -1,4 +1,4 @@
1
- // Journal 3.1.1
1
+ // Journal 3.2.0
2
2
  // Bootswatch
3
3
  // -----------------------------------------------------
4
4
 
@@ -11,6 +11,7 @@
11
11
  font-family: $font-family-sans-serif;
12
12
  font-weight: $headings-font-weight;
13
13
  }
14
+
14
15
  .navbar-default {
15
16
 
16
17
  .badge {
@@ -26,6 +27,7 @@
26
27
  color: $navbar-inverse-bg;
27
28
  }
28
29
  }
30
+
29
31
  .navbar-brand {
30
32
  font-size: 18px;
31
33
  font-weight: $headings-font-weight;
@@ -110,5 +112,4 @@
110
112
  .panel-title {
111
113
  color: #fff;
112
114
  }
113
- }
114
-
115
+ }
@@ -1,4 +1,4 @@
1
- // Journal 3.1.1
1
+ // Journal 3.2.0
2
2
  // Variables
3
3
  // --------------------------------------------------
4
4
 
@@ -22,7 +22,7 @@ $brand-danger: #F57A00 !default;
22
22
 
23
23
  //== Scaffolding
24
24
  //
25
- // ## Settings for some of the most global styles.
25
+ //## Settings for some of the most global styles.
26
26
 
27
27
  //** Background color for `<body>`.
28
28
  $body-bg: #fff !default;
@@ -68,10 +68,23 @@ $headings-line-height: 1.1 !default;
68
68
  $headings-color: #000 !default;
69
69
 
70
70
 
71
+ //== Iconography
72
+ //
73
+ //## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
74
+
75
+ //** Load fonts from this directory.
76
+ //** File name for all font files.
77
+ $icon-font-name: "glyphicons-halflings-regular" !default;
78
+ //** Element ID within SVG icon file.
79
+ $icon-font-svg-id: "glyphicons_halflingsregular" !default;
80
+
81
+
71
82
  //== Type
72
83
  //
73
84
  //##
74
85
 
86
+ //** Horizontal offset for forms and lists.
87
+ $component-offset-horizontal: 180px !default;
75
88
  //** Text muted color
76
89
  $text-muted: $gray-light !default;
77
90
  //** Abbreviations and acronyms border color
@@ -86,26 +99,11 @@ $blockquote-font-size: ($font-size-base * 1.25) !default;
86
99
  $blockquote-border-color: $gray-lighter !default;
87
100
  //** Page header border color
88
101
  $page-header-border-color: $gray-lighter !default;
89
-
90
-
91
- //== Miscellaneous
92
- //
93
- //##
94
-
102
+ //** Width of horizontal description list titles
103
+ $dl-horizontal-offset: $component-offset-horizontal !default;
95
104
  //** Horizontal line color.
96
105
  $hr-border: $gray-lighter !default;
97
106
 
98
- //** Horizontal offset for forms and lists.
99
- $component-offset-horizontal: 180px !default;
100
-
101
-
102
- //-- Iconography
103
- //
104
- //## Specify custom locations of the include Glyphicons icon font. Useful for those including Bootstrap via Bower.
105
-
106
-
107
- $icon-font-name: "glyphicons-halflings-regular" !default;
108
- $icon-font-svg-id: "glyphicons_halflingsregular" !default;
109
107
 
110
108
  //== Components
111
109
  //
@@ -151,7 +149,7 @@ $table-cell-padding: 8px !default;
151
149
  $table-condensed-cell-padding: 5px !default;
152
150
 
153
151
  //** Default background color used for all tables.
154
- $table-bg: transparent !default;
152
+ $table-bg: hsla(0, 100%, 100%, 0) !default;
155
153
  //** Background color used for `.table-striped`.
156
154
  $table-bg-accent: #f9f9f9 !default;
157
155
  //** Background color used for `.table-hover`.
@@ -245,25 +243,25 @@ $dropdown-fallback-border: #ccc !default;
245
243
  //** Divider color for between dropdown items.
246
244
  $dropdown-divider-bg: #e5e5e5 !default;
247
245
 
248
- //** Active dropdown menu item text color.
249
- $dropdown-link-active-color: #fff !default;
250
- //** Active dropdown menu item background color.
251
- $dropdown-link-active-bg: $component-active-bg !default;
252
-
253
246
  //** Dropdown link text color.
254
247
  $dropdown-link-color: $gray-dark !default;
255
248
  //** Hover color for dropdown links.
256
249
  $dropdown-link-hover-color: #fff !default;
250
+ //** Active dropdown menu item background color.
251
+ $dropdown-link-active-bg: $component-active-bg !default;
257
252
  //** Hover background for dropdown links.
258
253
  $dropdown-link-hover-bg: $dropdown-link-active-bg !default;
259
254
 
255
+ //** Active dropdown menu item text color.
256
+ $dropdown-link-active-color: #fff !default;
257
+
260
258
  //** Disabled dropdown menu item background color.
261
259
  $dropdown-link-disabled-color: $text-muted !default;
262
260
 
263
261
  //** Text color for headers within dropdown menus.
264
262
  $dropdown-header-color: $text-muted !default;
265
263
 
266
- // Note: Deprecated @dropdown-caret-color as of v3.1.0
264
+ //** Deprecated `@dropdown-caret-color` as of v3.1.0
267
265
  $dropdown-caret-color: #000 !default;
268
266
 
269
267
 
@@ -276,8 +274,8 @@ $dropdown-caret-color: #000 !default;
276
274
 
277
275
  $zindex-navbar: 1000 !default;
278
276
  $zindex-dropdown: 1000 !default;
279
- $zindex-popover: 1010 !default;
280
- $zindex-tooltip: 1030 !default;
277
+ $zindex-popover: 1060 !default;
278
+ $zindex-tooltip: 1070 !default;
281
279
  $zindex-navbar-fixed: 1030 !default;
282
280
  $zindex-modal-background: 1040 !default;
283
281
  $zindex-modal: 1050 !default;
@@ -288,27 +286,32 @@ $zindex-modal: 1050 !default;
288
286
  //## Define the breakpoints at which your layout will change, adapting to different screen sizes.
289
287
 
290
288
  // Extra small screen / phone
291
- // Note: Deprecated @screen-xs and @screen-phone as of v3.0.1
289
+ //** Deprecated `@screen-xs` as of v3.0.1
292
290
  $screen-xs: 480px !default;
291
+ //** Deprecated `@screen-xs-min` as of v3.2.0
293
292
  $screen-xs-min: $screen-xs !default;
293
+ //** Deprecated `@screen-phone` as of v3.0.1
294
294
  $screen-phone: $screen-xs-min !default;
295
295
 
296
296
  // Small screen / tablet
297
- // Note: Deprecated @screen-sm and @screen-tablet as of v3.0.1
297
+ //** Deprecated `@screen-sm` as of v3.0.1
298
298
  $screen-sm: 768px !default;
299
299
  $screen-sm-min: $screen-sm !default;
300
+ //** Deprecated `@screen-tablet` as of v3.0.1
300
301
  $screen-tablet: $screen-sm-min !default;
301
302
 
302
303
  // Medium screen / desktop
303
- // Note: Deprecated @screen-md and @screen-desktop as of v3.0.1
304
+ //** Deprecated `@screen-md` as of v3.0.1
304
305
  $screen-md: 992px !default;
305
306
  $screen-md-min: $screen-md !default;
307
+ //** Deprecated `@screen-desktop` as of v3.0.1
306
308
  $screen-desktop: $screen-md-min !default;
307
309
 
308
310
  // Large screen / wide desktop
309
- // Note: Deprecated @screen-lg and @screen-lg-desktop as of v3.0.1
311
+ //** Deprecated `@screen-lg` as of v3.0.1
310
312
  $screen-lg: 1200px !default;
311
313
  $screen-lg-min: $screen-lg !default;
314
+ //** Deprecated `@screen-lg-desktop` as of v3.0.1
312
315
  $screen-lg-desktop: $screen-lg-min !default;
313
316
 
314
317
  // So media queries don't overlap when required, provide a maximum
@@ -375,7 +378,7 @@ $navbar-default-link-hover-bg: darken($navbar-default-bg, 6.5%) !def
375
378
  $navbar-default-link-active-color: #000 !default;
376
379
  $navbar-default-link-active-bg: darken($navbar-default-bg, 6.5%) !default;
377
380
  $navbar-default-link-disabled-color: #ccc !default;
378
- $navbar-default-link-disabled-bg: transparent !default;
381
+ $navbar-default-link-disabled-bg: hsla(0, 100%, 100%, 0) !default;
379
382
 
380
383
  // Navbar brand label
381
384
  $navbar-default-brand-color: $navbar-default-link-color !default;
@@ -401,7 +404,7 @@ $navbar-inverse-link-hover-bg: darken($navbar-inverse-bg, 6.5%) !de
401
404
  $navbar-inverse-link-active-color: #fff !default;
402
405
  $navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 6.5%) !default;
403
406
  $navbar-inverse-link-disabled-color: #444 !default;
404
- $navbar-inverse-link-disabled-bg: transparent !default;
407
+ $navbar-inverse-link-disabled-bg: hsla(0, 100%, 100%, 0) !default;
405
408
 
406
409
  // Inverted navbar brand label
407
410
  $navbar-inverse-brand-color: $navbar-inverse-link-color !default;
@@ -674,17 +677,26 @@ $list-group-border: #ddd !default;
674
677
  //** List group border radius
675
678
  $list-group-border-radius: $border-radius-base !default;
676
679
 
677
- //** Background color of single list elements on hover
680
+ //** Background color of single list items on hover
678
681
  $list-group-hover-bg: #f5f5f5 !default;
679
- //** Text color of active list elements
682
+ //** Text color of active list items
680
683
  $list-group-active-color: $component-active-color !default;
681
- //** Background color of active list elements
684
+ //** Background color of active list items
682
685
  $list-group-active-bg: $component-active-bg !default;
683
686
  //** Border color of active list elements
684
687
  $list-group-active-border: $list-group-active-bg !default;
688
+ //** Text color for content within active list items
685
689
  $list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
686
690
 
691
+ //** Text color of disabled list items
692
+ $list-group-disabled-color: $gray-light !default;
693
+ //** Background color of disabled list items
694
+ $list-group-disabled-bg: $gray-lighter !default;
695
+ //** Text color for content within disabled list items
696
+ $list-group-disabled-text-color: $list-group-disabled-color !default;
697
+
687
698
  $list-group-link-color: #555 !default;
699
+ $list-group-link-hover-color: $list-group-link-color !default;
688
700
  $list-group-link-heading-color: #333 !default;
689
701
 
690
702
 
@@ -694,6 +706,8 @@ $list-group-link-heading-color: #333 !default;
694
706
 
695
707
  $panel-bg: #fff !default;
696
708
  $panel-body-padding: 15px !default;
709
+ $panel-heading-padding: 10px 15px !default;
710
+ $panel-footer-padding: $panel-heading-padding !default;
697
711
  $panel-border-radius: $border-radius-base !default;
698
712
 
699
713
  //** Border color for elements within panels
@@ -827,3 +841,5 @@ $pre-bg: #f5f5f5 !default;
827
841
  $pre-color: $gray-dark !default;
828
842
  $pre-border-color: #ccc !default;
829
843
  $pre-scrollable-max-height: 340px !default;
844
+
845
+