bootswatch-rails 3.1.1.1 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/HISTORY.md +4 -0
- data/README.md +4 -3
- data/converter +9 -0
- data/lib/bootswatch-rails/version.rb +1 -1
- data/vendor/assets/stylesheets/bootswatch/amelia/_bootswatch.scss +16 -4
- data/vendor/assets/stylesheets/bootswatch/amelia/_variables.scss +80 -63
- data/vendor/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +5 -5
- data/vendor/assets/stylesheets/bootswatch/cerulean/_variables.scss +53 -38
- data/vendor/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +16 -13
- data/vendor/assets/stylesheets/bootswatch/cosmo/_variables.scss +55 -40
- data/vendor/assets/stylesheets/bootswatch/custom/_variables.scss +7 -7
- data/vendor/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +18 -11
- data/vendor/assets/stylesheets/bootswatch/cyborg/_variables.scss +64 -49
- data/vendor/assets/stylesheets/bootswatch/darkly/_bootswatch.scss +6 -1
- data/vendor/assets/stylesheets/bootswatch/darkly/_variables.scss +68 -53
- data/vendor/assets/stylesheets/bootswatch/flatly/_bootswatch.scss +15 -9
- data/vendor/assets/stylesheets/bootswatch/flatly/_variables.scss +66 -49
- data/vendor/assets/stylesheets/bootswatch/journal/_bootswatch.scss +4 -3
- data/vendor/assets/stylesheets/bootswatch/journal/_variables.scss +53 -37
- data/vendor/assets/stylesheets/bootswatch/lumen/_bootswatch.scss +27 -10
- data/vendor/assets/stylesheets/bootswatch/lumen/_variables.scss +164 -147
- data/vendor/assets/stylesheets/bootswatch/readable/_bootswatch.scss +15 -11
- data/vendor/assets/stylesheets/bootswatch/readable/_variables.scss +66 -50
- data/vendor/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +1 -1
- data/vendor/assets/stylesheets/bootswatch/simplex/_variables.scss +64 -48
- data/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss +22 -9
- data/vendor/assets/stylesheets/bootswatch/slate/_variables.scss +179 -168
- data/vendor/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +3 -3
- data/vendor/assets/stylesheets/bootswatch/spacelab/_variables.scss +59 -43
- data/vendor/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +25 -12
- data/vendor/assets/stylesheets/bootswatch/superhero/_variables.scss +182 -169
- data/vendor/assets/stylesheets/bootswatch/united/_bootswatch.scss +1 -1
- data/vendor/assets/stylesheets/bootswatch/united/_variables.scss +53 -38
- data/vendor/assets/stylesheets/bootswatch/yeti/_bootswatch.scss +9 -4
- data/vendor/assets/stylesheets/bootswatch/yeti/_variables.scss +64 -47
- metadata +2 -2
@@ -1,4 +1,4 @@
|
|
1
|
-
// Cerulean 3.
|
1
|
+
// Cerulean 3.2.0
|
2
2
|
// Variables
|
3
3
|
// --------------------------------------------------
|
4
4
|
|
@@ -22,7 +22,7 @@ $brand-danger: #C71C22 !default;
|
|
22
22
|
|
23
23
|
//== Scaffolding
|
24
24
|
//
|
25
|
-
|
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: #317EAC !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,27 +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
|
-
|
110
107
|
//== Components
|
111
108
|
//
|
112
109
|
//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
|
@@ -151,7 +148,7 @@ $table-cell-padding: 8px !default;
|
|
151
148
|
$table-condensed-cell-padding: 5px !default;
|
152
149
|
|
153
150
|
//** Default background color used for all tables.
|
154
|
-
$table-bg:
|
151
|
+
$table-bg: hsla(0, 100%, 100%, 0) !default;
|
155
152
|
//** Background color used for `.table-striped`.
|
156
153
|
$table-bg-accent: #f9f9f9 !default;
|
157
154
|
//** Background color used for `.table-hover`.
|
@@ -245,25 +242,25 @@ $dropdown-fallback-border: #ccc !default;
|
|
245
242
|
//** Divider color for between dropdown items.
|
246
243
|
$dropdown-divider-bg: #e5e5e5 !default;
|
247
244
|
|
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
245
|
//** Dropdown link text color.
|
254
246
|
$dropdown-link-color: $gray-dark !default;
|
255
247
|
//** Hover color for dropdown links.
|
256
248
|
$dropdown-link-hover-color: #fff !default;
|
249
|
+
//** Active dropdown menu item background color.
|
250
|
+
$dropdown-link-active-bg: $component-active-bg !default;
|
257
251
|
//** Hover background for dropdown links.
|
258
252
|
$dropdown-link-hover-bg: $dropdown-link-active-bg !default;
|
259
253
|
|
254
|
+
//** Active dropdown menu item text color.
|
255
|
+
$dropdown-link-active-color: #fff !default;
|
256
|
+
|
260
257
|
//** Disabled dropdown menu item background color.
|
261
258
|
$dropdown-link-disabled-color: $text-muted !default;
|
262
259
|
|
263
260
|
//** Text color for headers within dropdown menus.
|
264
261
|
$dropdown-header-color: $text-muted !default;
|
265
262
|
|
266
|
-
|
263
|
+
//** Deprecated `@dropdown-caret-color` as of v3.1.0
|
267
264
|
$dropdown-caret-color: #000 !default;
|
268
265
|
|
269
266
|
|
@@ -276,8 +273,8 @@ $dropdown-caret-color: #000 !default;
|
|
276
273
|
|
277
274
|
$zindex-navbar: 1000 !default;
|
278
275
|
$zindex-dropdown: 1000 !default;
|
279
|
-
$zindex-popover:
|
280
|
-
$zindex-tooltip:
|
276
|
+
$zindex-popover: 1060 !default;
|
277
|
+
$zindex-tooltip: 1070 !default;
|
281
278
|
$zindex-navbar-fixed: 1030 !default;
|
282
279
|
$zindex-modal-background: 1040 !default;
|
283
280
|
$zindex-modal: 1050 !default;
|
@@ -288,27 +285,32 @@ $zindex-modal: 1050 !default;
|
|
288
285
|
//## Define the breakpoints at which your layout will change, adapting to different screen sizes.
|
289
286
|
|
290
287
|
// Extra small screen / phone
|
291
|
-
|
288
|
+
//** Deprecated `@screen-xs` as of v3.0.1
|
292
289
|
$screen-xs: 480px !default;
|
290
|
+
//** Deprecated `@screen-xs-min` as of v3.2.0
|
293
291
|
$screen-xs-min: $screen-xs !default;
|
292
|
+
//** Deprecated `@screen-phone` as of v3.0.1
|
294
293
|
$screen-phone: $screen-xs-min !default;
|
295
294
|
|
296
295
|
// Small screen / tablet
|
297
|
-
|
296
|
+
//** Deprecated `@screen-sm` as of v3.0.1
|
298
297
|
$screen-sm: 768px !default;
|
299
298
|
$screen-sm-min: $screen-sm !default;
|
299
|
+
//** Deprecated `@screen-tablet` as of v3.0.1
|
300
300
|
$screen-tablet: $screen-sm-min !default;
|
301
301
|
|
302
302
|
// Medium screen / desktop
|
303
|
-
|
303
|
+
//** Deprecated `@screen-md` as of v3.0.1
|
304
304
|
$screen-md: 992px !default;
|
305
305
|
$screen-md-min: $screen-md !default;
|
306
|
+
//** Deprecated `@screen-desktop` as of v3.0.1
|
306
307
|
$screen-desktop: $screen-md-min !default;
|
307
308
|
|
308
309
|
// Large screen / wide desktop
|
309
|
-
|
310
|
+
//** Deprecated `@screen-lg` as of v3.0.1
|
310
311
|
$screen-lg: 1200px !default;
|
311
312
|
$screen-lg-min: $screen-lg !default;
|
313
|
+
//** Deprecated `@screen-lg-desktop` as of v3.0.1
|
312
314
|
$screen-lg-desktop: $screen-lg-min !default;
|
313
315
|
|
314
316
|
// So media queries don't overlap when required, provide a maximum
|
@@ -375,7 +377,7 @@ $navbar-default-link-hover-bg: darken($navbar-default-bg, 10%) !defa
|
|
375
377
|
$navbar-default-link-active-color: #fff !default;
|
376
378
|
$navbar-default-link-active-bg: darken($navbar-default-bg, 10%) !default;
|
377
379
|
$navbar-default-link-disabled-color: #ddd !default;
|
378
|
-
$navbar-default-link-disabled-bg:
|
380
|
+
$navbar-default-link-disabled-bg: hsla(0, 100%, 100%, 0) !default;
|
379
381
|
|
380
382
|
// Navbar brand label
|
381
383
|
$navbar-default-brand-color: $navbar-default-link-color !default;
|
@@ -401,7 +403,7 @@ $navbar-inverse-link-hover-bg: darken($navbar-inverse-bg, 5%) !defa
|
|
401
403
|
$navbar-inverse-link-active-color: #fff !default;
|
402
404
|
$navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 5%) !default;
|
403
405
|
$navbar-inverse-link-disabled-color: #ccc !default;
|
404
|
-
$navbar-inverse-link-disabled-bg:
|
406
|
+
$navbar-inverse-link-disabled-bg: hsla(0, 100%, 100%, 0) !default;
|
405
407
|
|
406
408
|
// Inverted navbar brand label
|
407
409
|
$navbar-inverse-brand-color: $navbar-inverse-link-color !default;
|
@@ -674,17 +676,26 @@ $list-group-border: #ddd !default;
|
|
674
676
|
//** List group border radius
|
675
677
|
$list-group-border-radius: $border-radius-base !default;
|
676
678
|
|
677
|
-
//** Background color of single list
|
679
|
+
//** Background color of single list items on hover
|
678
680
|
$list-group-hover-bg: #f5f5f5 !default;
|
679
|
-
//** Text color of active list
|
681
|
+
//** Text color of active list items
|
680
682
|
$list-group-active-color: $component-active-color !default;
|
681
|
-
//** Background color of active list
|
683
|
+
//** Background color of active list items
|
682
684
|
$list-group-active-bg: $component-active-bg !default;
|
683
685
|
//** Border color of active list elements
|
684
686
|
$list-group-active-border: $list-group-active-bg !default;
|
687
|
+
//** Text color for content within active list items
|
685
688
|
$list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
|
686
689
|
|
690
|
+
//** Text color of disabled list items
|
691
|
+
$list-group-disabled-color: $gray-light !default;
|
692
|
+
//** Background color of disabled list items
|
693
|
+
$list-group-disabled-bg: $gray-lighter !default;
|
694
|
+
//** Text color for content within disabled list items
|
695
|
+
$list-group-disabled-text-color: $list-group-disabled-color !default;
|
696
|
+
|
687
697
|
$list-group-link-color: #555 !default;
|
698
|
+
$list-group-link-hover-color: $list-group-link-color !default;
|
688
699
|
$list-group-link-heading-color: #333 !default;
|
689
700
|
|
690
701
|
|
@@ -694,6 +705,8 @@ $list-group-link-heading-color: #333 !default;
|
|
694
705
|
|
695
706
|
$panel-bg: #fff !default;
|
696
707
|
$panel-body-padding: 15px !default;
|
708
|
+
$panel-heading-padding: 10px 15px !default;
|
709
|
+
$panel-footer-padding: $panel-heading-padding !default;
|
697
710
|
$panel-border-radius: $border-radius-base !default;
|
698
711
|
|
699
712
|
//** Border color for elements within panels
|
@@ -827,3 +840,5 @@ $pre-bg: #f5f5f5 !default;
|
|
827
840
|
$pre-color: $gray-dark !default;
|
828
841
|
$pre-border-color: #ccc !default;
|
829
842
|
$pre-scrollable-max-height: 340px !default;
|
843
|
+
|
844
|
+
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Cosmo 3.
|
1
|
+
// Cosmo 3.2.0
|
2
2
|
// Bootswatch
|
3
3
|
// -----------------------------------------------------
|
4
4
|
|
@@ -79,7 +79,8 @@ table,
|
|
79
79
|
}
|
80
80
|
|
81
81
|
.form-control,
|
82
|
-
.form-control:focus
|
82
|
+
.form-control:focus,
|
83
|
+
.input-group-addon {
|
83
84
|
border: 1px solid $brand-warning;
|
84
85
|
}
|
85
86
|
}
|
@@ -92,7 +93,8 @@ table,
|
|
92
93
|
}
|
93
94
|
|
94
95
|
.form-control,
|
95
|
-
.form-control:focus
|
96
|
+
.form-control:focus,
|
97
|
+
.input-group-addon {
|
96
98
|
border: 1px solid $brand-danger;
|
97
99
|
}
|
98
100
|
}
|
@@ -105,7 +107,8 @@ table,
|
|
105
107
|
}
|
106
108
|
|
107
109
|
.form-control,
|
108
|
-
.form-control:focus
|
110
|
+
.form-control:focus,
|
111
|
+
.input-group-addon {
|
109
112
|
border: 1px solid $brand-success;
|
110
113
|
}
|
111
114
|
}
|
@@ -136,17 +139,17 @@ table,
|
|
136
139
|
text-decoration: underline;
|
137
140
|
color: #fff;
|
138
141
|
}
|
142
|
+
}
|
139
143
|
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
+
.close {
|
145
|
+
color: #fff;
|
146
|
+
text-decoration: none;
|
147
|
+
opacity: 0.4;
|
144
148
|
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
}
|
149
|
+
&:hover,
|
150
|
+
&:focus {
|
151
|
+
color: #fff;
|
152
|
+
opacity: 1;
|
150
153
|
}
|
151
154
|
}
|
152
155
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Cosmo 3.
|
1
|
+
// Cosmo 3.2.0
|
2
2
|
// Variables
|
3
3
|
// --------------------------------------------------
|
4
4
|
|
@@ -22,7 +22,7 @@ $brand-danger: #FF0039 !default;
|
|
22
22
|
|
23
23
|
//== Scaffolding
|
24
24
|
//
|
25
|
-
|
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: 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
|
+
|
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,27 +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
|
-
|
110
107
|
//== Components
|
111
108
|
//
|
112
109
|
//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
|
@@ -151,7 +148,7 @@ $table-cell-padding: 8px !default;
|
|
151
148
|
$table-condensed-cell-padding: 5px !default;
|
152
149
|
|
153
150
|
//** Default background color used for all tables.
|
154
|
-
$table-bg:
|
151
|
+
$table-bg: hsla(0, 100%, 100%, 0) !default;
|
155
152
|
//** Background color used for `.table-striped`.
|
156
153
|
$table-bg-accent: #f9f9f9 !default;
|
157
154
|
//** Background color used for `.table-hover`.
|
@@ -245,25 +242,25 @@ $dropdown-fallback-border: #ccc !default;
|
|
245
242
|
//** Divider color for between dropdown items.
|
246
243
|
$dropdown-divider-bg: #e5e5e5 !default;
|
247
244
|
|
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
245
|
//** Dropdown link text color.
|
254
246
|
$dropdown-link-color: $gray-dark !default;
|
255
247
|
//** Hover color for dropdown links.
|
256
248
|
$dropdown-link-hover-color: #fff !default;
|
249
|
+
//** Active dropdown menu item background color.
|
250
|
+
$dropdown-link-active-bg: $component-active-bg !default;
|
257
251
|
//** Hover background for dropdown links.
|
258
252
|
$dropdown-link-hover-bg: $dropdown-link-active-bg !default;
|
259
253
|
|
254
|
+
//** Active dropdown menu item text color.
|
255
|
+
$dropdown-link-active-color: #fff !default;
|
256
|
+
|
260
257
|
//** Disabled dropdown menu item background color.
|
261
258
|
$dropdown-link-disabled-color: $text-muted !default;
|
262
259
|
|
263
260
|
//** Text color for headers within dropdown menus.
|
264
261
|
$dropdown-header-color: $text-muted !default;
|
265
262
|
|
266
|
-
|
263
|
+
//** Deprecated `@dropdown-caret-color` as of v3.1.0
|
267
264
|
$dropdown-caret-color: #000 !default;
|
268
265
|
|
269
266
|
|
@@ -276,8 +273,8 @@ $dropdown-caret-color: #000 !default;
|
|
276
273
|
|
277
274
|
$zindex-navbar: 1000 !default;
|
278
275
|
$zindex-dropdown: 1000 !default;
|
279
|
-
$zindex-popover:
|
280
|
-
$zindex-tooltip:
|
276
|
+
$zindex-popover: 1060 !default;
|
277
|
+
$zindex-tooltip: 1070 !default;
|
281
278
|
$zindex-navbar-fixed: 1030 !default;
|
282
279
|
$zindex-modal-background: 1040 !default;
|
283
280
|
$zindex-modal: 1050 !default;
|
@@ -288,27 +285,32 @@ $zindex-modal: 1050 !default;
|
|
288
285
|
//## Define the breakpoints at which your layout will change, adapting to different screen sizes.
|
289
286
|
|
290
287
|
// Extra small screen / phone
|
291
|
-
|
288
|
+
//** Deprecated `@screen-xs` as of v3.0.1
|
292
289
|
$screen-xs: 480px !default;
|
290
|
+
//** Deprecated `@screen-xs-min` as of v3.2.0
|
293
291
|
$screen-xs-min: $screen-xs !default;
|
292
|
+
//** Deprecated `@screen-phone` as of v3.0.1
|
294
293
|
$screen-phone: $screen-xs-min !default;
|
295
294
|
|
296
295
|
// Small screen / tablet
|
297
|
-
|
296
|
+
//** Deprecated `@screen-sm` as of v3.0.1
|
298
297
|
$screen-sm: 768px !default;
|
299
298
|
$screen-sm-min: $screen-sm !default;
|
299
|
+
//** Deprecated `@screen-tablet` as of v3.0.1
|
300
300
|
$screen-tablet: $screen-sm-min !default;
|
301
301
|
|
302
302
|
// Medium screen / desktop
|
303
|
-
|
303
|
+
//** Deprecated `@screen-md` as of v3.0.1
|
304
304
|
$screen-md: 992px !default;
|
305
305
|
$screen-md-min: $screen-md !default;
|
306
|
+
//** Deprecated `@screen-desktop` as of v3.0.1
|
306
307
|
$screen-desktop: $screen-md-min !default;
|
307
308
|
|
308
309
|
// Large screen / wide desktop
|
309
|
-
|
310
|
+
//** Deprecated `@screen-lg` as of v3.0.1
|
310
311
|
$screen-lg: 1200px !default;
|
311
312
|
$screen-lg-min: $screen-lg !default;
|
313
|
+
//** Deprecated `@screen-lg-desktop` as of v3.0.1
|
312
314
|
$screen-lg-desktop: $screen-lg-min !default;
|
313
315
|
|
314
316
|
// So media queries don't overlap when required, provide a maximum
|
@@ -375,7 +377,7 @@ $navbar-default-link-hover-bg: darken($navbar-default-bg, 10%) !defa
|
|
375
377
|
$navbar-default-link-active-color: $navbar-default-link-hover-color !default;
|
376
378
|
$navbar-default-link-active-bg: $navbar-default-link-hover-bg !default;
|
377
379
|
$navbar-default-link-disabled-color: #ccc !default;
|
378
|
-
$navbar-default-link-disabled-bg:
|
380
|
+
$navbar-default-link-disabled-bg: hsla(0, 100%, 100%, 0) !default;
|
379
381
|
|
380
382
|
// Navbar brand label
|
381
383
|
$navbar-default-brand-color: $navbar-default-link-color !default;
|
@@ -385,7 +387,7 @@ $navbar-default-brand-hover-bg: none !default;
|
|
385
387
|
// Navbar toggle
|
386
388
|
$navbar-default-toggle-hover-bg: $navbar-default-link-hover-bg !default;
|
387
389
|
$navbar-default-toggle-icon-bar-bg: #fff !default;
|
388
|
-
$navbar-default-toggle-border-color:
|
390
|
+
$navbar-default-toggle-border-color: hsla(0, 100%, 100%, 0) !default;
|
389
391
|
|
390
392
|
|
391
393
|
// Inverted navbar
|
@@ -401,7 +403,7 @@ $navbar-inverse-link-hover-bg: darken($navbar-inverse-bg, 10%) !def
|
|
401
403
|
$navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default;
|
402
404
|
$navbar-inverse-link-active-bg: $navbar-inverse-link-hover-bg !default;
|
403
405
|
$navbar-inverse-link-disabled-color: #fff !default;
|
404
|
-
$navbar-inverse-link-disabled-bg:
|
406
|
+
$navbar-inverse-link-disabled-bg: hsla(0, 100%, 100%, 0) !default;
|
405
407
|
|
406
408
|
// Inverted navbar brand label
|
407
409
|
$navbar-inverse-brand-color: $navbar-inverse-link-color !default;
|
@@ -411,7 +413,7 @@ $navbar-inverse-brand-hover-bg: none !default;
|
|
411
413
|
// Inverted navbar toggle
|
412
414
|
$navbar-inverse-toggle-hover-bg: $navbar-inverse-link-hover-bg !default;
|
413
415
|
$navbar-inverse-toggle-icon-bar-bg: #fff !default;
|
414
|
-
$navbar-inverse-toggle-border-color:
|
416
|
+
$navbar-inverse-toggle-border-color: hsla(0, 100%, 100%, 0) !default;
|
415
417
|
|
416
418
|
|
417
419
|
//== Navs
|
@@ -674,17 +676,26 @@ $list-group-border: #ddd !default;
|
|
674
676
|
//** List group border radius
|
675
677
|
$list-group-border-radius: $border-radius-base !default;
|
676
678
|
|
677
|
-
//** Background color of single list
|
679
|
+
//** Background color of single list items on hover
|
678
680
|
$list-group-hover-bg: #f5f5f5 !default;
|
679
|
-
//** Text color of active list
|
681
|
+
//** Text color of active list items
|
680
682
|
$list-group-active-color: $component-active-color !default;
|
681
|
-
//** Background color of active list
|
683
|
+
//** Background color of active list items
|
682
684
|
$list-group-active-bg: $component-active-bg !default;
|
683
685
|
//** Border color of active list elements
|
684
686
|
$list-group-active-border: $list-group-active-bg !default;
|
687
|
+
//** Text color for content within active list items
|
685
688
|
$list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
|
686
689
|
|
690
|
+
//** Text color of disabled list items
|
691
|
+
$list-group-disabled-color: $gray-light !default;
|
692
|
+
//** Background color of disabled list items
|
693
|
+
$list-group-disabled-bg: $gray-lighter !default;
|
694
|
+
//** Text color for content within disabled list items
|
695
|
+
$list-group-disabled-text-color: $list-group-disabled-color !default;
|
696
|
+
|
687
697
|
$list-group-link-color: #555 !default;
|
698
|
+
$list-group-link-hover-color: $list-group-link-color !default;
|
688
699
|
$list-group-link-heading-color: #333 !default;
|
689
700
|
|
690
701
|
|
@@ -694,6 +705,8 @@ $list-group-link-heading-color: #333 !default;
|
|
694
705
|
|
695
706
|
$panel-bg: #fff !default;
|
696
707
|
$panel-body-padding: 15px !default;
|
708
|
+
$panel-heading-padding: 10px 15px !default;
|
709
|
+
$panel-footer-padding: $panel-heading-padding !default;
|
697
710
|
$panel-border-radius: $border-radius-base !default;
|
698
711
|
|
699
712
|
//** Border color for elements within panels
|
@@ -827,3 +840,5 @@ $pre-bg: #f5f5f5 !default;
|
|
827
840
|
$pre-color: $gray-dark !default;
|
828
841
|
$pre-border-color: #ccc !default;
|
829
842
|
$pre-scrollable-max-height: 340px !default;
|
843
|
+
|
844
|
+
|