bootswatch-rails 3.2.4 → 3.3.4
Sign up to get free protection for your applications and to get access to all the features.
- 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
|
-
// Flatly 3.
|
1
|
+
// Flatly 3.3.4
|
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 {
|
@@ -26,10 +27,15 @@
|
|
26
27
|
}
|
27
28
|
|
28
29
|
.navbar-brand {
|
29
|
-
|
30
|
+
line-height: 1;
|
30
31
|
}
|
32
|
+
|
31
33
|
// Buttons ====================================================================
|
32
34
|
|
35
|
+
.btn {
|
36
|
+
border-width: 2px;
|
37
|
+
}
|
38
|
+
|
33
39
|
.btn:active {
|
34
40
|
@include box-shadow(none);
|
35
41
|
}
|
@@ -74,13 +80,19 @@ table,
|
|
74
80
|
text-decoration: underline;
|
75
81
|
}
|
76
82
|
|
83
|
+
.dropdown-menu a {
|
84
|
+
text-decoration: none;
|
85
|
+
}
|
86
|
+
|
77
87
|
.success,
|
78
88
|
.warning,
|
79
89
|
.danger,
|
80
90
|
.info {
|
81
91
|
color: #fff;
|
82
92
|
|
83
|
-
a
|
93
|
+
> th > a,
|
94
|
+
> td > a,
|
95
|
+
> a {
|
84
96
|
color: #fff;
|
85
97
|
}
|
86
98
|
}
|
@@ -245,6 +257,48 @@ input, {
|
|
245
257
|
@include box-shadow(none);
|
246
258
|
}
|
247
259
|
|
260
|
+
a.list-group-item {
|
261
|
+
|
262
|
+
&.active,
|
263
|
+
&.active:hover,
|
264
|
+
&.active:focus {
|
265
|
+
border-color: $list-group-border;
|
266
|
+
}
|
267
|
+
}
|
268
|
+
|
269
|
+
a.list-group-item-success {
|
270
|
+
&.active {
|
271
|
+
background-color: $state-success-bg;
|
272
|
+
}
|
273
|
+
|
274
|
+
&.active:hover,
|
275
|
+
&.active:focus {
|
276
|
+
background-color: darken($state-success-bg, 5%);
|
277
|
+
}
|
278
|
+
}
|
279
|
+
|
280
|
+
a.list-group-item-warning {
|
281
|
+
&.active {
|
282
|
+
background-color: $state-warning-bg;
|
283
|
+
}
|
284
|
+
|
285
|
+
&.active:hover,
|
286
|
+
&.active:focus {
|
287
|
+
background-color: darken($state-warning-bg, 5%);
|
288
|
+
}
|
289
|
+
}
|
290
|
+
|
291
|
+
a.list-group-item-danger {
|
292
|
+
&.active {
|
293
|
+
background-color: $state-danger-bg;
|
294
|
+
}
|
295
|
+
|
296
|
+
&.active:hover,
|
297
|
+
&.active:focus {
|
298
|
+
background-color: darken($state-danger-bg, 5%);
|
299
|
+
}
|
300
|
+
}
|
301
|
+
|
248
302
|
.panel-default {
|
249
303
|
.close {
|
250
304
|
color: $text-color;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Flatly 3.
|
1
|
+
// Flatly 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:
|
11
|
-
$gray-darker: lighten(
|
10
|
+
$gray-base: #000 !default;
|
11
|
+
$gray-darker: lighten($gray-base, 13.5%) !default; // #222
|
12
12
|
$gray-dark: #7b8a8b !default; // #333
|
13
|
+
$gray: #95a5a6 !default; // #555
|
13
14
|
$gray-light: #b4bcc2 !default; // #999
|
14
15
|
$gray-lighter: #ecf0f1 !default; // #eee
|
15
16
|
|
@@ -33,6 +34,8 @@ $text-color: $brand-primary !default;
|
|
33
34
|
$link-color: $brand-success !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: 9px !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: #dce4ec !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: $brand-primary !default;
|
187
198
|
|
@@ -189,11 +200,14 @@ $input-border-focus: $brand-primary !default;
|
|
189
200
|
$input-color-placeholder: #acb6c0 !default;
|
190
201
|
|
191
202
|
//** Default `.form-control` height
|
192
|
-
$input-height-base: ($line-height-computed + ($padding-base-vertical * 2) +
|
203
|
+
$input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 4) !default;
|
193
204
|
//** Large `.form-control` height
|
194
|
-
$input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) +
|
205
|
+
$input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 4) !default;
|
195
206
|
//** Small `.form-control` height
|
196
|
-
$input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) +
|
207
|
+
$input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 4) !default;
|
208
|
+
|
209
|
+
//** `.form-group` margin
|
210
|
+
$form-group-margin-bottom: 15px !default;
|
197
211
|
|
198
212
|
$legend-color: $text-color !default;
|
199
213
|
$legend-border-color: transparent !default;
|
@@ -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: transparent !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
|
-
//** Hover background for dropdown links.
|
247
|
-
$dropdown-link-hover-bg: $dropdown-link-active-bg !default;
|
248
237
|
//** Dropdown link text color.
|
249
238
|
$dropdown-link-color: $gray-dark !default;
|
250
239
|
//** Hover color for dropdown links.
|
251
240
|
$dropdown-link-hover-color: #fff !default;
|
241
|
+
//** Hover background for dropdown links.
|
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: $gray-lighter !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: $gray-lighter !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: transparent !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;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Journal 3.
|
1
|
+
// Journal 3.3.4
|
2
2
|
// Bootswatch
|
3
3
|
// -----------------------------------------------------
|
4
4
|
|
@@ -29,7 +29,7 @@
|
|
29
29
|
}
|
30
30
|
|
31
31
|
.navbar-brand {
|
32
|
-
font-size:
|
32
|
+
font-size: inherit;
|
33
33
|
font-weight: $headings-font-weight;
|
34
34
|
text-transform: uppercase;
|
35
35
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Journal 3.
|
1
|
+
// Journal 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-base: #000 !default;
|
11
|
+
$gray-darker: lighten($gray-base, 13.5%) !default; // #222
|
12
|
+
$gray-dark: lighten($gray-base, 20%) !default; // #333
|
10
13
|
$gray: #777 !default; // #555
|
11
|
-
$gray-
|
12
|
-
$gray-
|
13
|
-
$gray-light: lighten(#000, 60%) !default; // #999
|
14
|
-
$gray-lighter: lighten(#000, 93.5%) !default; // #eee
|
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: #EB6864 !default;
|
17
18
|
$brand-success: #22B24C !default;
|
@@ -33,6 +34,8 @@ $text-color: $gray !default;
|
|
33
34
|
$link-color: $brand-primary !default;
|
34
35
|
//** Link hover color set via `darken()` function.
|
35
36
|
$link-hover-color: darken($link-color, 15%) !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;
|