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
|
-
// Sandstone 3.
|
1
|
+
// Sandstone 3.3.4
|
2
2
|
// Bootswatch
|
3
3
|
// -----------------------------------------------------
|
4
4
|
|
@@ -68,10 +68,6 @@ input,
|
|
68
68
|
}
|
69
69
|
}
|
70
70
|
|
71
|
-
.input-sm {
|
72
|
-
padding: 15px 10px;
|
73
|
-
}
|
74
|
-
|
75
71
|
// Navs =======================================================================
|
76
72
|
|
77
73
|
.nav {
|
@@ -182,13 +178,16 @@ input,
|
|
182
178
|
|
183
179
|
.panel {
|
184
180
|
@include box-shadow(none);
|
185
|
-
}
|
186
181
|
|
187
|
-
.panel-heading,
|
188
|
-
.panel-title
|
189
|
-
|
190
|
-
|
191
|
-
|
182
|
+
.panel-heading,
|
183
|
+
.panel-title {
|
184
|
+
@include sandstone();
|
185
|
+
color: #fff;
|
186
|
+
}
|
187
|
+
|
188
|
+
.panel-footer {
|
189
|
+
@include sandstone();
|
190
|
+
}
|
192
191
|
}
|
193
192
|
|
194
193
|
.panel-default {
|
@@ -197,4 +196,4 @@ input,
|
|
197
196
|
.panel-footer {
|
198
197
|
color: $gray;
|
199
198
|
}
|
200
|
-
}
|
199
|
+
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Sandstone 3.
|
1
|
+
// Sandstone 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: #3E3F3A !default;
|
12
12
|
$gray-dark: #8E8C84 !default;
|
13
|
+
$gray: #98978B !default;
|
13
14
|
$gray-light: #DFD7CA !default;
|
14
15
|
$gray-lighter: #F8F5F0 !default;
|
15
16
|
|
@@ -33,6 +34,8 @@ $text-color: #3E3F3A !default;
|
|
33
34
|
$link-color: $brand-success !default;
|
34
35
|
//** Link hover color set via `darken()` function.
|
35
36
|
$link-hover-color: darken($link-color, 10%) !default;
|
37
|
+
//** Link hover decoration.
|
38
|
+
$link-hover-decoration: underline !default;
|
36
39
|
|
37
40
|
|
38
41
|
//== Typography
|
@@ -67,9 +70,6 @@ $headings-font-weight: 400 !default;
|
|
67
70
|
$headings-line-height: 1.1 !default;
|
68
71
|
$headings-color: inherit !default;
|
69
72
|
|
70
|
-
$navbar-default-color: $gray-dark !default;
|
71
|
-
$navbar-default-bg: $gray-darker !default;
|
72
|
-
$navbar-default-border: $gray-darker !default;
|
73
73
|
|
74
74
|
//== Iconography
|
75
75
|
//
|
@@ -98,7 +98,7 @@ $padding-small-horizontal: 10px !default;
|
|
98
98
|
$padding-xs-vertical: 1px !default;
|
99
99
|
$padding-xs-horizontal: 5px !default;
|
100
100
|
|
101
|
-
$line-height-large: 1.
|
101
|
+
$line-height-large: 1.3333333 !default; // extra decimals for Win 8.1 Chrome
|
102
102
|
$line-height-small: 1.5 !default;
|
103
103
|
|
104
104
|
$border-radius-base: 4px !default;
|
@@ -144,7 +144,7 @@ $table-border-color: $gray-light !default;
|
|
144
144
|
$btn-font-weight: normal !default;
|
145
145
|
|
146
146
|
$btn-default-color: #fff !default;
|
147
|
-
$btn-default-bg: $
|
147
|
+
$btn-default-bg: $gray-darker !default;
|
148
148
|
$btn-default-border: hsla(0, 100%, 100%, 0) !default;
|
149
149
|
|
150
150
|
$btn-primary-color: #fff !default;
|
@@ -183,8 +183,16 @@ $input-bg-disabled: $gray-lighter !default;
|
|
183
183
|
$input-color: $text-color !default;
|
184
184
|
//** `<input>` border color
|
185
185
|
$input-border: $gray-light !default;
|
186
|
-
|
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.
|
187
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
|
+
|
188
196
|
//** Border color for inputs on focus
|
189
197
|
$input-border-focus: hsla(0, 100%, 100%, 0) !default;
|
190
198
|
|
@@ -198,6 +206,9 @@ $input-height-large: (ceil($font-size-large * $line-height-large) +
|
|
198
206
|
//** Small `.form-control` height
|
199
207
|
$input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
|
200
208
|
|
209
|
+
//** `.form-group` margin
|
210
|
+
$form-group-margin-bottom: 15px !default;
|
211
|
+
|
201
212
|
$legend-color: $headings-color !default;
|
202
213
|
$legend-border-color: transparent !default;
|
203
214
|
|
@@ -206,6 +217,9 @@ $input-group-addon-bg: $gray-lighter !default;
|
|
206
217
|
//** Border color for textual input addons
|
207
218
|
$input-group-addon-border-color: $input-border !default;
|
208
219
|
|
220
|
+
//** Disabled cursor for form controls and buttons.
|
221
|
+
$cursor-disabled: not-allowed !default;
|
222
|
+
|
209
223
|
|
210
224
|
//== Dropdowns
|
211
225
|
//
|
@@ -317,17 +331,17 @@ $grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
|
|
317
331
|
//## Define the maximum width of `.container` for different screen sizes.
|
318
332
|
|
319
333
|
// Small screen / tablet
|
320
|
-
$container-tablet: (
|
334
|
+
$container-tablet: (720px + $grid-gutter-width) !default;
|
321
335
|
//** For `@screen-sm-min` and up.
|
322
336
|
$container-sm: $container-tablet !default;
|
323
337
|
|
324
338
|
// Medium screen / desktop
|
325
|
-
$container-desktop: (
|
339
|
+
$container-desktop: (940px + $grid-gutter-width) !default;
|
326
340
|
//** For `@screen-md-min` and up.
|
327
341
|
$container-md: $container-desktop !default;
|
328
342
|
|
329
343
|
// Large screen / wide desktop
|
330
|
-
$container-large-desktop: (
|
344
|
+
$container-large-desktop: (1140px + $grid-gutter-width) !default;
|
331
345
|
//** For `@screen-lg-min` and up.
|
332
346
|
$container-lg: $container-large-desktop !default;
|
333
347
|
|
@@ -344,6 +358,10 @@ $navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;
|
|
344
358
|
$navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;
|
345
359
|
$navbar-collapse-max-height: 340px !default;
|
346
360
|
|
361
|
+
$navbar-default-color: $gray-dark !default;
|
362
|
+
$navbar-default-bg: $gray-darker !default;
|
363
|
+
$navbar-default-border: $gray-darker !default;
|
364
|
+
|
347
365
|
// Navbar links
|
348
366
|
$navbar-default-link-color: $gray !default;
|
349
367
|
$navbar-default-link-hover-color: #fff !default;
|
@@ -401,8 +419,6 @@ $nav-link-hover-bg: $gray-lighter !default;
|
|
401
419
|
$nav-disabled-link-color: $gray-light !default;
|
402
420
|
$nav-disabled-link-hover-color: $gray-light !default;
|
403
421
|
|
404
|
-
$nav-open-link-hover-color: #fff !default;
|
405
|
-
|
406
422
|
//== Tabs
|
407
423
|
$nav-tabs-border-color: $gray-light !default;
|
408
424
|
|
@@ -527,7 +543,7 @@ $popover-title-bg: $gray-lighter !default;
|
|
527
543
|
//** Popover arrow width
|
528
544
|
$popover-arrow-width: 10px !default;
|
529
545
|
//** Popover arrow color
|
530
|
-
$popover-arrow-color:
|
546
|
+
$popover-arrow-color: $popover-bg !default;
|
531
547
|
|
532
548
|
//** Popover outer arrow width
|
533
549
|
$popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
|
@@ -626,6 +642,8 @@ $alert-danger-border: hsla(0, 100%, 100%, 0) !default;
|
|
626
642
|
$progress-bg: #f5f5f5 !default;
|
627
643
|
//** Progress bar text color
|
628
644
|
$progress-bar-color: #fff !default;
|
645
|
+
//** Variable for setting rounded corners on progress bar.
|
646
|
+
$progress-border-radius: $border-radius-base !default;
|
629
647
|
|
630
648
|
//** Default progress bar color
|
631
649
|
$progress-bar-bg: $brand-primary !default;
|
@@ -840,5 +858,3 @@ $page-header-border-color: $gray-lighter !default;
|
|
840
858
|
$dl-horizontal-offset: $component-offset-horizontal !default;
|
841
859
|
//** Horizontal line color.
|
842
860
|
$hr-border: $gray-lighter !default;
|
843
|
-
|
844
|
-
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Simplex 3.
|
1
|
+
// Simplex 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: #444 !default;
|
13
|
+
$gray: #777 !default;
|
13
14
|
$gray-light: #808080 !default;
|
14
15
|
$gray-lighter: #ddd !default;
|
15
16
|
|
@@ -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: #ddd !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;
|
@@ -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: $body-bg !default;
|
713
705
|
$panel-inner-border: #ddd !default;
|
714
|
-
$panel-footer-bg: $
|
706
|
+
$panel-footer-bg: $body-bg !default;
|
715
707
|
|
716
708
|
$panel-default-text: $gray-dark !default;
|
717
709
|
$panel-default-border: #ddd !default;
|
710
|
+
$panel-default-heading-bg: $panel-footer-bg !default;
|
718
711
|
|
719
712
|
$panel-primary-text: #fff !default;
|
720
713
|
$panel-primary-border: $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;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Slate 3.
|
1
|
+
// Slate 3.3.4
|
2
2
|
// Bootswatch
|
3
3
|
// -----------------------------------------------------
|
4
4
|
|
@@ -359,6 +359,48 @@ a.thumbnail.active {
|
|
359
359
|
border-color: $thumbnail-border;
|
360
360
|
}
|
361
361
|
|
362
|
+
a.list-group-item {
|
363
|
+
|
364
|
+
&.active,
|
365
|
+
&.active:hover,
|
366
|
+
&.active:focus {
|
367
|
+
border-color: $list-group-border;
|
368
|
+
}
|
369
|
+
}
|
370
|
+
|
371
|
+
a.list-group-item-success {
|
372
|
+
&.active {
|
373
|
+
background-color: $state-success-bg;
|
374
|
+
}
|
375
|
+
|
376
|
+
&.active:hover,
|
377
|
+
&.active:focus {
|
378
|
+
background-color: darken($state-success-bg, 5%);
|
379
|
+
}
|
380
|
+
}
|
381
|
+
|
382
|
+
a.list-group-item-warning {
|
383
|
+
&.active {
|
384
|
+
background-color: $state-warning-bg;
|
385
|
+
}
|
386
|
+
|
387
|
+
&.active:hover,
|
388
|
+
&.active:focus {
|
389
|
+
background-color: darken($state-warning-bg, 5%);
|
390
|
+
}
|
391
|
+
}
|
392
|
+
|
393
|
+
a.list-group-item-danger {
|
394
|
+
&.active {
|
395
|
+
background-color: $state-danger-bg;
|
396
|
+
}
|
397
|
+
|
398
|
+
&.active:hover,
|
399
|
+
&.active:focus {
|
400
|
+
background-color: darken($state-danger-bg, 5%);
|
401
|
+
}
|
402
|
+
}
|
403
|
+
|
362
404
|
.jumbotron {
|
363
405
|
border: 1px solid rgba(0, 0, 0, 0.6);
|
364
406
|
}
|