bootswatch-rails 3.2.4 → 3.3.4
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/README.md +23 -19
- data/bootswatch-rails.gemspec +1 -1
- data/lib/bootswatch-rails/version.rb +1 -1
- data/vendor/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +11 -5
- data/vendor/assets/stylesheets/bootswatch/cerulean/_variables.scss +60 -43
- data/vendor/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +38 -1
- data/vendor/assets/stylesheets/bootswatch/cosmo/_variables.scss +61 -44
- data/vendor/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +47 -1
- data/vendor/assets/stylesheets/bootswatch/cyborg/_variables.scss +57 -40
- data/vendor/assets/stylesheets/bootswatch/darkly/_bootswatch.scss +57 -4
- data/vendor/assets/stylesheets/bootswatch/darkly/_variables.scss +65 -48
- data/vendor/assets/stylesheets/bootswatch/flatly/_bootswatch.scss +57 -3
- data/vendor/assets/stylesheets/bootswatch/flatly/_variables.scss +61 -44
- data/vendor/assets/stylesheets/bootswatch/journal/_bootswatch.scss +2 -2
- data/vendor/assets/stylesheets/bootswatch/journal/_variables.scss +59 -42
- data/vendor/assets/stylesheets/bootswatch/lumen/_bootswatch.scss +70 -9
- data/vendor/assets/stylesheets/bootswatch/lumen/_variables.scss +147 -128
- data/vendor/assets/stylesheets/bootswatch/paper/_bootswatch.scss +307 -84
- data/vendor/assets/stylesheets/bootswatch/paper/_variables.scss +37 -22
- data/vendor/assets/stylesheets/bootswatch/readable/_bootswatch.scss +15 -20
- data/vendor/assets/stylesheets/bootswatch/readable/_variables.scss +69 -52
- data/vendor/assets/stylesheets/bootswatch/sandstone/_bootswatch.scss +11 -12
- data/vendor/assets/stylesheets/bootswatch/sandstone/_variables.scss +32 -16
- data/vendor/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +1 -1
- data/vendor/assets/stylesheets/bootswatch/simplex/_variables.scss +59 -42
- data/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss +43 -1
- data/vendor/assets/stylesheets/bootswatch/slate/_variables.scss +69 -50
- data/vendor/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +3 -3
- data/vendor/assets/stylesheets/bootswatch/spacelab/_variables.scss +59 -42
- data/vendor/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +47 -1
- data/vendor/assets/stylesheets/bootswatch/superhero/_variables.scss +211 -190
- data/vendor/assets/stylesheets/bootswatch/united/_bootswatch.scss +15 -1
- data/vendor/assets/stylesheets/bootswatch/united/_variables.scss +58 -41
- data/vendor/assets/stylesheets/bootswatch/yeti/_bootswatch.scss +6 -1
- data/vendor/assets/stylesheets/bootswatch/yeti/_variables.scss +45 -30
- metadata +10 -10
@@ -1,4 +1,4 @@
|
|
1
|
-
// Slate 3.
|
1
|
+
// Slate 3.3.4
|
2
2
|
// Variables
|
3
3
|
// --------------------------------------------------
|
4
4
|
|
@@ -7,9 +7,10 @@
|
|
7
7
|
//
|
8
8
|
//## Gray and brand colors for use across Bootstrap.
|
9
9
|
|
10
|
-
$gray:
|
10
|
+
$gray-base: #000 !default;
|
11
11
|
$gray-darker: #272B30 !default; // #222
|
12
12
|
$gray-dark: #3A3F44 !default; // #333
|
13
|
+
$gray: #52575C !default; // #555
|
13
14
|
$gray-light: #7A8288 !default; // #999
|
14
15
|
$gray-lighter: #999 !default; // #eee
|
15
16
|
|
@@ -19,7 +20,6 @@ $brand-info: #5bc0de !default;
|
|
19
20
|
$brand-warning: #f89406 !default;
|
20
21
|
$brand-danger: #ee5f5b !default;
|
21
22
|
|
22
|
-
$navbar-default-bg: $gray-dark !default;
|
23
23
|
|
24
24
|
//== Scaffolding
|
25
25
|
//
|
@@ -34,6 +34,8 @@ $text-color: #C8C8C8 !default;
|
|
34
34
|
$link-color: #fff !default;
|
35
35
|
//** Link hover color set via `darken()` function.
|
36
36
|
$link-hover-color: #fff !default;
|
37
|
+
//** Link hover decoration.
|
38
|
+
$link-hover-decoration: underline !default;
|
37
39
|
|
38
40
|
|
39
41
|
//== Typography
|
@@ -96,7 +98,7 @@ $padding-small-horizontal: 10px !default;
|
|
96
98
|
$padding-xs-vertical: 1px !default;
|
97
99
|
$padding-xs-horizontal: 5px !default;
|
98
100
|
|
99
|
-
$line-height-large: 1.
|
101
|
+
$line-height-large: 1.3333333 !default; // extra decimals for Win 8.1 Chrome
|
100
102
|
$line-height-small: 1.5 !default;
|
101
103
|
|
102
104
|
$border-radius-base: 4px !default;
|
@@ -142,7 +144,7 @@ $table-border-color: darken($gray-darker, 5%) !default;
|
|
142
144
|
$btn-font-weight: normal !default;
|
143
145
|
|
144
146
|
$btn-default-color: #fff !default;
|
145
|
-
$btn-default-bg: $
|
147
|
+
$btn-default-bg: $gray-dark !default;
|
146
148
|
$btn-default-border: $btn-default-bg !default;
|
147
149
|
|
148
150
|
$btn-primary-color: $btn-default-color !default;
|
@@ -181,8 +183,16 @@ $input-bg-disabled: $gray-lighter !default;
|
|
181
183
|
$input-color: $gray-darker !default;
|
182
184
|
//** `<input>` border color
|
183
185
|
$input-border: #ccc !default;
|
184
|
-
|
186
|
+
|
187
|
+
// TODO: Rename `@input-border-radius` to `@input-border-radius-base` in v4
|
188
|
+
//** Default `.form-control` border radius
|
189
|
+
// This has no effect on `<select>`s in some browsers, due to the limited stylability of `<select>`s in CSS.
|
185
190
|
$input-border-radius: $border-radius-base !default;
|
191
|
+
//** Large `.form-control` border radius
|
192
|
+
$input-border-radius-large: $border-radius-large !default;
|
193
|
+
//** Small `.form-control` border radius
|
194
|
+
$input-border-radius-small: $border-radius-small !default;
|
195
|
+
|
186
196
|
//** Border color for inputs on focus
|
187
197
|
$input-border-focus: #66afe9 !default;
|
188
198
|
|
@@ -196,6 +206,9 @@ $input-height-large: (ceil($font-size-large * $line-height-large) +
|
|
196
206
|
//** Small `.form-control` height
|
197
207
|
$input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
|
198
208
|
|
209
|
+
//** `.form-group` margin
|
210
|
+
$form-group-margin-bottom: 15px !default;
|
211
|
+
|
199
212
|
$legend-color: $text-color !default;
|
200
213
|
$legend-border-color: darken($gray-darker, 5%) !default;
|
201
214
|
|
@@ -204,30 +217,9 @@ $input-group-addon-bg: $gray-lighter !default;
|
|
204
217
|
//** Border color for textual input addons
|
205
218
|
$input-group-addon-border-color: $input-border !default;
|
206
219
|
|
207
|
-
|
208
|
-
|
209
|
-
//##
|
220
|
+
//** Disabled cursor for form controls and buttons.
|
221
|
+
$cursor-disabled: not-allowed !default;
|
210
222
|
|
211
|
-
//** Horizontal offset for forms and lists.
|
212
|
-
$component-offset-horizontal: 180px !default;
|
213
|
-
//** Text muted color
|
214
|
-
$text-muted: $gray-light !default;
|
215
|
-
//** Abbreviations and acronyms border color
|
216
|
-
$abbr-border-color: $gray-light !default;
|
217
|
-
//** Headings small color
|
218
|
-
$headings-small-color: $gray-light !default;
|
219
|
-
//** Blockquote small color
|
220
|
-
$blockquote-small-color: $gray-light !default;
|
221
|
-
//** Blockquote font size
|
222
|
-
$blockquote-font-size: ($font-size-base * 1.25) !default;
|
223
|
-
//** Blockquote border color
|
224
|
-
$blockquote-border-color: $gray-light !default;
|
225
|
-
//** Page header border color
|
226
|
-
$page-header-border-color: darken($gray-darker, 5%) !default;
|
227
|
-
//** Width of horizontal description list titles
|
228
|
-
$dl-horizontal-offset: $component-offset-horizontal !default;
|
229
|
-
//** Horizontal line color.
|
230
|
-
$hr-border: darken($gray-darker, 5%) !default;
|
231
223
|
|
232
224
|
//== Dropdowns
|
233
225
|
//
|
@@ -242,23 +234,23 @@ $dropdown-fallback-border: $gray-darker !default;
|
|
242
234
|
//** Divider color for between dropdown items.
|
243
235
|
$dropdown-divider-bg: $gray-darker !default;
|
244
236
|
|
245
|
-
//** Active dropdown menu item background color.
|
246
|
-
$dropdown-link-active-bg: $gray-darker !default;
|
247
237
|
//** Dropdown link text color.
|
248
238
|
$dropdown-link-color: $text-color !default;
|
249
239
|
//** Hover color for dropdown links.
|
250
240
|
$dropdown-link-hover-color: #fff !default;
|
251
241
|
//** Hover background for dropdown links.
|
252
|
-
$dropdown-link-hover-bg: $
|
242
|
+
$dropdown-link-hover-bg: $gray-darker !default;
|
253
243
|
|
254
244
|
//** Active dropdown menu item text color.
|
255
245
|
$dropdown-link-active-color: #fff !default;
|
246
|
+
//** Active dropdown menu item background color.
|
247
|
+
$dropdown-link-active-bg: $gray-darker !default;
|
256
248
|
|
257
249
|
//** Disabled dropdown menu item background color.
|
258
|
-
$dropdown-link-disabled-color: $
|
250
|
+
$dropdown-link-disabled-color: $gray-light !default;
|
259
251
|
|
260
252
|
//** Text color for headers within dropdown menus.
|
261
|
-
$dropdown-header-color: $
|
253
|
+
$dropdown-header-color: $gray-light !default;
|
262
254
|
|
263
255
|
//** Deprecated `@dropdown-caret-color` as of v3.1.0
|
264
256
|
$dropdown-caret-color: #000 !default;
|
@@ -339,17 +331,17 @@ $grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
|
|
339
331
|
//## Define the maximum width of `.container` for different screen sizes.
|
340
332
|
|
341
333
|
// Small screen / tablet
|
342
|
-
$container-tablet: (
|
334
|
+
$container-tablet: (720px + $grid-gutter-width) !default;
|
343
335
|
//** For `@screen-sm-min` and up.
|
344
336
|
$container-sm: $container-tablet !default;
|
345
337
|
|
346
338
|
// Medium screen / desktop
|
347
|
-
$container-desktop: (
|
339
|
+
$container-desktop: (940px + $grid-gutter-width) !default;
|
348
340
|
//** For `@screen-md-min` and up.
|
349
341
|
$container-md: $container-desktop !default;
|
350
342
|
|
351
343
|
// Large screen / wide desktop
|
352
|
-
$container-large-desktop: (
|
344
|
+
$container-large-desktop: (1140px + $grid-gutter-width) !default;
|
353
345
|
//** For `@screen-lg-min` and up.
|
354
346
|
$container-lg: $container-large-desktop !default;
|
355
347
|
|
@@ -367,6 +359,7 @@ $navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2
|
|
367
359
|
$navbar-collapse-max-height: 340px !default;
|
368
360
|
|
369
361
|
$navbar-default-color: $text-color !default;
|
362
|
+
$navbar-default-bg: $gray-dark !default;
|
370
363
|
$navbar-default-border: darken($navbar-default-bg, 6.5%) !default;
|
371
364
|
|
372
365
|
// Navbar links
|
@@ -426,8 +419,6 @@ $nav-link-hover-bg: lighten($body-bg, 10%) !default;
|
|
426
419
|
$nav-disabled-link-color: $gray-light !default;
|
427
420
|
$nav-disabled-link-hover-color: $gray-light !default;
|
428
421
|
|
429
|
-
$nav-open-link-hover-color: #fff !default;
|
430
|
-
|
431
422
|
//== Tabs
|
432
423
|
$nav-tabs-border-color: darken($gray-darker, 5%) !default;
|
433
424
|
|
@@ -524,7 +515,7 @@ $tooltip-max-width: 200px !default;
|
|
524
515
|
//** Tooltip text color
|
525
516
|
$tooltip-color: #fff !default;
|
526
517
|
//** Tooltip background color
|
527
|
-
$tooltip-bg:
|
518
|
+
$tooltip-bg: #000 !default;
|
528
519
|
$tooltip-opacity: .9 !default;
|
529
520
|
|
530
521
|
//** Tooltip arrow width
|
@@ -651,6 +642,8 @@ $alert-danger-border: $state-danger-border !default;
|
|
651
642
|
$progress-bg: darken($body-bg, 5%) !default;
|
652
643
|
//** Progress bar text color
|
653
644
|
$progress-bar-color: #fff !default;
|
645
|
+
//** Variable for setting rounded corners on progress bar.
|
646
|
+
$progress-border-radius: $border-radius-base !default;
|
654
647
|
|
655
648
|
//** Default progress bar color
|
656
649
|
$progress-bar-bg: $brand-primary !default;
|
@@ -709,12 +702,12 @@ $panel-footer-padding: $panel-heading-padding !default;
|
|
709
702
|
$panel-border-radius: $border-radius-base !default;
|
710
703
|
|
711
704
|
//** Border color for elements within panels
|
712
|
-
$panel-default-heading-bg: lighten($body-bg, 10%) !default;
|
713
705
|
$panel-inner-border: rgba(0, 0, 0, 0.6) !default;
|
714
|
-
$panel-footer-bg: $
|
706
|
+
$panel-footer-bg: lighten($body-bg, 10%) !default;
|
715
707
|
|
716
708
|
$panel-default-text: $text-color !default;
|
717
709
|
$panel-default-border: rgba(0, 0, 0, 0.6) !default;
|
710
|
+
$panel-default-heading-bg: $panel-footer-bg !default;
|
718
711
|
|
719
712
|
$panel-primary-text: #fff !default;
|
720
713
|
$panel-primary-border: $panel-default-border !default;
|
@@ -736,12 +729,6 @@ $panel-danger-text: $state-danger-text !default;
|
|
736
729
|
$panel-danger-border: $panel-default-border !default;
|
737
730
|
$panel-danger-heading-bg: $state-danger-bg !default;
|
738
731
|
|
739
|
-
//== Wells
|
740
|
-
//
|
741
|
-
//##
|
742
|
-
|
743
|
-
$well-bg: darken($body-bg, 5%) !default;
|
744
|
-
$well-border: darken($well-bg, 7%) !default;
|
745
732
|
|
746
733
|
//== Thumbnails
|
747
734
|
//
|
@@ -750,9 +737,9 @@ $well-border: darken($well-bg, 7%) !default;
|
|
750
737
|
//** Padding around the thumbnail image
|
751
738
|
$thumbnail-padding: 4px !default;
|
752
739
|
//** Thumbnail background color
|
753
|
-
$thumbnail-bg: $
|
740
|
+
$thumbnail-bg: darken($body-bg, 5%) !default;
|
754
741
|
//** Thumbnail border color
|
755
|
-
$thumbnail-border: $
|
742
|
+
$thumbnail-border: darken($thumbnail-bg, 7%) !default;
|
756
743
|
//** Thumbnail border radius
|
757
744
|
$thumbnail-border-radius: $border-radius-base !default;
|
758
745
|
|
@@ -762,6 +749,14 @@ $thumbnail-caption-color: $text-color !default;
|
|
762
749
|
$thumbnail-caption-padding: 9px !default;
|
763
750
|
|
764
751
|
|
752
|
+
//== Wells
|
753
|
+
//
|
754
|
+
//##
|
755
|
+
|
756
|
+
$well-bg: $thumbnail-bg !default;
|
757
|
+
$well-border: $thumbnail-border !default;
|
758
|
+
|
759
|
+
|
765
760
|
//== Badges
|
766
761
|
//
|
767
762
|
//##
|
@@ -839,3 +834,27 @@ $pre-border-color: #ccc !default;
|
|
839
834
|
$pre-scrollable-max-height: 340px !default;
|
840
835
|
|
841
836
|
|
837
|
+
//== Type
|
838
|
+
//
|
839
|
+
//##
|
840
|
+
|
841
|
+
//** Horizontal offset for forms and lists.
|
842
|
+
$component-offset-horizontal: 180px !default;
|
843
|
+
//** Text muted color
|
844
|
+
$text-muted: $gray-light !default;
|
845
|
+
//** Abbreviations and acronyms border color
|
846
|
+
$abbr-border-color: $gray-light !default;
|
847
|
+
//** Headings small color
|
848
|
+
$headings-small-color: $gray-light !default;
|
849
|
+
//** Blockquote small color
|
850
|
+
$blockquote-small-color: $gray-light !default;
|
851
|
+
//** Blockquote font size
|
852
|
+
$blockquote-font-size: ($font-size-base * 1.25) !default;
|
853
|
+
//** Blockquote border color
|
854
|
+
$blockquote-border-color: $gray-light !default;
|
855
|
+
//** Page header border color
|
856
|
+
$page-header-border-color: darken($gray-darker, 5%) !default;
|
857
|
+
//** Width of horizontal description list titles
|
858
|
+
$dl-horizontal-offset: $component-offset-horizontal !default;
|
859
|
+
//** Horizontal line color.
|
860
|
+
$hr-border: darken($gray-darker, 5%) !default;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Spacelab 3.
|
1
|
+
// Spacelab 3.3.4
|
2
2
|
// Bootswatch
|
3
3
|
// -----------------------------------------------------
|
4
4
|
|
@@ -44,8 +44,8 @@
|
|
44
44
|
|
45
45
|
.navbar-nav > li > a,
|
46
46
|
.navbar-nav > li > a:hover {
|
47
|
-
padding-top: $navbar-padding-vertical + 2px;
|
48
|
-
padding-bottom: $navbar-padding-vertical - 2px;
|
47
|
+
padding-top: ($navbar-padding-vertical + 2px);
|
48
|
+
padding-bottom: ($navbar-padding-vertical - 2px);
|
49
49
|
@include transition(color ease-in-out .2s);
|
50
50
|
}
|
51
51
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Spacelab 3.
|
1
|
+
// Spacelab 3.3.4
|
2
2
|
// Variables
|
3
3
|
// --------------------------------------------------
|
4
4
|
|
@@ -7,11 +7,12 @@
|
|
7
7
|
//
|
8
8
|
//## Gray and brand colors for use across Bootstrap.
|
9
9
|
|
10
|
-
$gray:
|
10
|
+
$gray-base: #000 !default;
|
11
11
|
$gray-darker: #2d2d2d !default; // #222
|
12
|
-
$gray-dark: lighten(
|
13
|
-
$gray
|
14
|
-
$gray-
|
12
|
+
$gray-dark: lighten($gray-base, 20%) !default; // #333
|
13
|
+
$gray: #666 !default; // #555
|
14
|
+
$gray-light: lighten($gray-base, 60%) !default; // #999
|
15
|
+
$gray-lighter: lighten($gray-base, 93.5%) !default; // #eee
|
15
16
|
|
16
17
|
$brand-primary: #446E9B !default;
|
17
18
|
$brand-success: #3CB521 !default;
|
@@ -33,6 +34,8 @@ $text-color: $gray !default;
|
|
33
34
|
$link-color: $brand-info !default;
|
34
35
|
//** Link hover color set via `darken()` function.
|
35
36
|
$link-hover-color: $link-color !default;
|
37
|
+
//** Link hover decoration.
|
38
|
+
$link-hover-decoration: underline !default;
|
36
39
|
|
37
40
|
|
38
41
|
//== Typography
|
@@ -95,7 +98,7 @@ $padding-small-horizontal: 10px !default;
|
|
95
98
|
$padding-xs-vertical: 1px !default;
|
96
99
|
$padding-xs-horizontal: 5px !default;
|
97
100
|
|
98
|
-
$line-height-large: 1.
|
101
|
+
$line-height-large: 1.3333333 !default; // extra decimals for Win 8.1 Chrome
|
99
102
|
$line-height-small: 1.5 !default;
|
100
103
|
|
101
104
|
$border-radius-base: 4px !default;
|
@@ -180,8 +183,16 @@ $input-bg-disabled: $gray-lighter !default;
|
|
180
183
|
$input-color: $text-color !default;
|
181
184
|
//** `<input>` border color
|
182
185
|
$input-border: #ccc !default;
|
183
|
-
|
186
|
+
|
187
|
+
// TODO: Rename `@input-border-radius` to `@input-border-radius-base` in v4
|
188
|
+
//** Default `.form-control` border radius
|
189
|
+
// This has no effect on `<select>`s in some browsers, due to the limited stylability of `<select>`s in CSS.
|
184
190
|
$input-border-radius: $border-radius-base !default;
|
191
|
+
//** Large `.form-control` border radius
|
192
|
+
$input-border-radius-large: $border-radius-large !default;
|
193
|
+
//** Small `.form-control` border radius
|
194
|
+
$input-border-radius-small: $border-radius-small !default;
|
195
|
+
|
185
196
|
//** Border color for inputs on focus
|
186
197
|
$input-border-focus: #66afe9 !default;
|
187
198
|
|
@@ -195,6 +206,9 @@ $input-height-large: (ceil($font-size-large * $line-height-large) +
|
|
195
206
|
//** Small `.form-control` height
|
196
207
|
$input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
|
197
208
|
|
209
|
+
//** `.form-group` margin
|
210
|
+
$form-group-margin-bottom: 15px !default;
|
211
|
+
|
198
212
|
$legend-color: $text-color !default;
|
199
213
|
$legend-border-color: #e5e5e5 !default;
|
200
214
|
|
@@ -203,30 +217,9 @@ $input-group-addon-bg: $gray-lighter !default;
|
|
203
217
|
//** Border color for textual input addons
|
204
218
|
$input-group-addon-border-color: $input-border !default;
|
205
219
|
|
206
|
-
|
207
|
-
|
208
|
-
//##
|
220
|
+
//** Disabled cursor for form controls and buttons.
|
221
|
+
$cursor-disabled: not-allowed !default;
|
209
222
|
|
210
|
-
//** Horizontal offset for forms and lists.
|
211
|
-
$component-offset-horizontal: 180px !default;
|
212
|
-
//** Text muted color
|
213
|
-
$text-muted: $gray-light !default;
|
214
|
-
//** Abbreviations and acronyms border color
|
215
|
-
$abbr-border-color: $gray-light !default;
|
216
|
-
//** Headings small color
|
217
|
-
$headings-small-color: $gray-light !default;
|
218
|
-
//** Blockquote small color
|
219
|
-
$blockquote-small-color: $gray-light !default;
|
220
|
-
//** Blockquote font size
|
221
|
-
$blockquote-font-size: ($font-size-base * 1.25) !default;
|
222
|
-
//** Blockquote border color
|
223
|
-
$blockquote-border-color: $gray-lighter !default;
|
224
|
-
//** Page header border color
|
225
|
-
$page-header-border-color: $gray-lighter !default;
|
226
|
-
//** Width of horizontal description list titles
|
227
|
-
$dl-horizontal-offset: $component-offset-horizontal !default;
|
228
|
-
//** Horizontal line color.
|
229
|
-
$hr-border: $gray-lighter !default;
|
230
223
|
|
231
224
|
//== Dropdowns
|
232
225
|
//
|
@@ -241,23 +234,23 @@ $dropdown-fallback-border: #ccc !default;
|
|
241
234
|
//** Divider color for between dropdown items.
|
242
235
|
$dropdown-divider-bg: #e5e5e5 !default;
|
243
236
|
|
244
|
-
//** Active dropdown menu item background color.
|
245
|
-
$dropdown-link-active-bg: $component-active-bg !default;
|
246
237
|
//** Dropdown link text color.
|
247
238
|
$dropdown-link-color: $gray-dark !default;
|
248
239
|
//** Hover color for dropdown links.
|
249
240
|
$dropdown-link-hover-color: #fff !default;
|
250
241
|
//** Hover background for dropdown links.
|
251
|
-
$dropdown-link-hover-bg: $
|
242
|
+
$dropdown-link-hover-bg: $component-active-bg !default;
|
252
243
|
|
253
244
|
//** Active dropdown menu item text color.
|
254
245
|
$dropdown-link-active-color: #fff !default;
|
246
|
+
//** Active dropdown menu item background color.
|
247
|
+
$dropdown-link-active-bg: $component-active-bg !default;
|
255
248
|
|
256
249
|
//** Disabled dropdown menu item background color.
|
257
|
-
$dropdown-link-disabled-color: $
|
250
|
+
$dropdown-link-disabled-color: $gray-light !default;
|
258
251
|
|
259
252
|
//** Text color for headers within dropdown menus.
|
260
|
-
$dropdown-header-color: $
|
253
|
+
$dropdown-header-color: $gray-light !default;
|
261
254
|
|
262
255
|
//** Deprecated `@dropdown-caret-color` as of v3.1.0
|
263
256
|
$dropdown-caret-color: #000 !default;
|
@@ -338,17 +331,17 @@ $grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
|
|
338
331
|
//## Define the maximum width of `.container` for different screen sizes.
|
339
332
|
|
340
333
|
// Small screen / tablet
|
341
|
-
$container-tablet: (
|
334
|
+
$container-tablet: (720px + $grid-gutter-width) !default;
|
342
335
|
//** For `@screen-sm-min` and up.
|
343
336
|
$container-sm: $container-tablet !default;
|
344
337
|
|
345
338
|
// Medium screen / desktop
|
346
|
-
$container-desktop: (
|
339
|
+
$container-desktop: (940px + $grid-gutter-width) !default;
|
347
340
|
//** For `@screen-md-min` and up.
|
348
341
|
$container-md: $container-desktop !default;
|
349
342
|
|
350
343
|
// Large screen / wide desktop
|
351
|
-
$container-large-desktop: (
|
344
|
+
$container-large-desktop: (1140px + $grid-gutter-width) !default;
|
352
345
|
//** For `@screen-lg-min` and up.
|
353
346
|
$container-lg: $container-large-desktop !default;
|
354
347
|
|
@@ -426,8 +419,6 @@ $nav-link-hover-bg: $gray-lighter !default;
|
|
426
419
|
$nav-disabled-link-color: $gray-light !default;
|
427
420
|
$nav-disabled-link-hover-color: $gray-light !default;
|
428
421
|
|
429
|
-
$nav-open-link-hover-color: #fff !default;
|
430
|
-
|
431
422
|
//== Tabs
|
432
423
|
$nav-tabs-border-color: #ddd !default;
|
433
424
|
|
@@ -524,7 +515,7 @@ $tooltip-max-width: 200px !default;
|
|
524
515
|
//** Tooltip text color
|
525
516
|
$tooltip-color: #fff !default;
|
526
517
|
//** Tooltip background color
|
527
|
-
$tooltip-bg:
|
518
|
+
$tooltip-bg: #000 !default;
|
528
519
|
$tooltip-opacity: .9 !default;
|
529
520
|
|
530
521
|
//** Tooltip arrow width
|
@@ -552,7 +543,7 @@ $popover-title-bg: darken($popover-bg, 3%) !default;
|
|
552
543
|
//** Popover arrow width
|
553
544
|
$popover-arrow-width: 10px !default;
|
554
545
|
//** Popover arrow color
|
555
|
-
$popover-arrow-color:
|
546
|
+
$popover-arrow-color: $popover-bg !default;
|
556
547
|
|
557
548
|
//** Popover outer arrow width
|
558
549
|
$popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
|
@@ -651,6 +642,8 @@ $alert-danger-border: $state-danger-border !default;
|
|
651
642
|
$progress-bg: #f5f5f5 !default;
|
652
643
|
//** Progress bar text color
|
653
644
|
$progress-bar-color: #fff !default;
|
645
|
+
//** Variable for setting rounded corners on progress bar.
|
646
|
+
$progress-border-radius: $border-radius-base !default;
|
654
647
|
|
655
648
|
//** Default progress bar color
|
656
649
|
$progress-bar-bg: $brand-primary !default;
|
@@ -841,3 +834,27 @@ $pre-border-color: #ccc !default;
|
|
841
834
|
$pre-scrollable-max-height: 340px !default;
|
842
835
|
|
843
836
|
|
837
|
+
//== Type
|
838
|
+
//
|
839
|
+
//##
|
840
|
+
|
841
|
+
//** Horizontal offset for forms and lists.
|
842
|
+
$component-offset-horizontal: 180px !default;
|
843
|
+
//** Text muted color
|
844
|
+
$text-muted: $gray-light !default;
|
845
|
+
//** Abbreviations and acronyms border color
|
846
|
+
$abbr-border-color: $gray-light !default;
|
847
|
+
//** Headings small color
|
848
|
+
$headings-small-color: $gray-light !default;
|
849
|
+
//** Blockquote small color
|
850
|
+
$blockquote-small-color: $gray-light !default;
|
851
|
+
//** Blockquote font size
|
852
|
+
$blockquote-font-size: ($font-size-base * 1.25) !default;
|
853
|
+
//** Blockquote border color
|
854
|
+
$blockquote-border-color: $gray-lighter !default;
|
855
|
+
//** Page header border color
|
856
|
+
$page-header-border-color: $gray-lighter !default;
|
857
|
+
//** Width of horizontal description list titles
|
858
|
+
$dl-horizontal-offset: $component-offset-horizontal !default;
|
859
|
+
//** Horizontal line color.
|
860
|
+
$hr-border: $gray-lighter !default;
|