bootswatch-rails 3.2.0 → 3.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/HISTORY.md +5 -0
- data/README.md +2 -0
- data/Rakefile +2 -1
- data/lib/bootswatch-rails/version.rb +1 -1
- data/rearranges +4 -4
- data/vendor/assets/stylesheets/bootswatch/amelia/_variables.scss +3 -3
- data/vendor/assets/stylesheets/bootswatch/cerulean/_variables.scss +30 -31
- data/vendor/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +32 -16
- data/vendor/assets/stylesheets/bootswatch/cosmo/_variables.scss +36 -37
- data/vendor/assets/stylesheets/bootswatch/custom/_variables.scss +116 -116
- data/vendor/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +2 -7
- data/vendor/assets/stylesheets/bootswatch/cyborg/_variables.scss +47 -48
- data/vendor/assets/stylesheets/bootswatch/darkly/_bootswatch.scss +14 -10
- data/vendor/assets/stylesheets/bootswatch/darkly/_variables.scss +45 -46
- data/vendor/assets/stylesheets/bootswatch/flatly/_bootswatch.scss +27 -17
- data/vendor/assets/stylesheets/bootswatch/flatly/_variables.scss +45 -48
- data/vendor/assets/stylesheets/bootswatch/journal/_bootswatch.scss +1 -1
- data/vendor/assets/stylesheets/bootswatch/journal/_variables.scss +30 -32
- data/vendor/assets/stylesheets/bootswatch/lumen/_bootswatch.scss +34 -24
- data/vendor/assets/stylesheets/bootswatch/lumen/_variables.scss +135 -138
- data/vendor/assets/stylesheets/bootswatch/paper/_bootswatch.scss +420 -0
- data/vendor/assets/stylesheets/bootswatch/paper/_variables.scss +845 -0
- data/vendor/assets/stylesheets/bootswatch/readable/_bootswatch.scss +34 -23
- data/vendor/assets/stylesheets/bootswatch/readable/_variables.scss +45 -47
- data/vendor/assets/stylesheets/bootswatch/sandstone/_bootswatch.scss +200 -0
- data/vendor/assets/stylesheets/bootswatch/sandstone/_variables.scss +844 -0
- data/vendor/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +6 -0
- data/vendor/assets/stylesheets/bootswatch/simplex/_variables.scss +49 -51
- data/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss +13 -14
- data/vendor/assets/stylesheets/bootswatch/slate/_variables.scss +43 -46
- data/vendor/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +3 -0
- data/vendor/assets/stylesheets/bootswatch/spacelab/_variables.scss +37 -39
- data/vendor/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +4 -4
- data/vendor/assets/stylesheets/bootswatch/superhero/_variables.scss +139 -143
- data/vendor/assets/stylesheets/bootswatch/united/_variables.scss +30 -31
- data/vendor/assets/stylesheets/bootswatch/yeti/_bootswatch.scss +36 -35
- data/vendor/assets/stylesheets/bootswatch/yeti/_variables.scss +28 -26
- metadata +6 -2
@@ -2,15 +2,10 @@
|
|
2
2
|
// Bootswatch
|
3
3
|
// -----------------------------------------------------
|
4
4
|
|
5
|
-
@import url("//fonts.googleapis.com/css?family=
|
5
|
+
@import url("//fonts.googleapis.com/css?family=Roboto:400,700");
|
6
6
|
|
7
7
|
// Navbar =====================================================================
|
8
8
|
|
9
|
-
.navbar {
|
10
|
-
|
11
|
-
border-bottom: 1px solid $gray-dark;
|
12
|
-
}
|
13
|
-
|
14
9
|
// Buttons ====================================================================
|
15
10
|
|
16
11
|
// Typography =================================================================
|
@@ -46,7 +41,7 @@ table,
|
|
46
41
|
.table {
|
47
42
|
color: #fff;
|
48
43
|
|
49
|
-
a {
|
44
|
+
a:not(.btn) {
|
50
45
|
color: #fff;
|
51
46
|
text-decoration: underline;
|
52
47
|
}
|
@@ -7,9 +7,9 @@
|
|
7
7
|
//
|
8
8
|
//## Gray and brand colors for use across Bootstrap.
|
9
9
|
|
10
|
+
$gray: #555 !default; // #555
|
10
11
|
$gray-darker: #222 !default; // #222
|
11
12
|
$gray-dark: #282828 !default; // #333
|
12
|
-
$gray: #555 !default; // #555
|
13
13
|
$gray-light: #888 !default; // #999
|
14
14
|
$gray-lighter: #ADAFAE !default; // #eee
|
15
15
|
|
@@ -39,7 +39,7 @@ $link-hover-color: $link-color !default;
|
|
39
39
|
//
|
40
40
|
//## Font, line-height, and color for body text, headings, and more.
|
41
41
|
|
42
|
-
$font-family-sans-serif: "
|
42
|
+
$font-family-sans-serif: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif !default;
|
43
43
|
$font-family-serif: Georgia, "Times New Roman", Times, serif !default;
|
44
44
|
//** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
|
45
45
|
$font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
|
@@ -49,12 +49,12 @@ $font-size-base: 14px !default;
|
|
49
49
|
$font-size-large: ceil(($font-size-base * 1.25)) !default; // ~18px
|
50
50
|
$font-size-small: ceil(($font-size-base * 0.85)) !default; // ~12px
|
51
51
|
|
52
|
-
$font-size-h1:
|
53
|
-
$font-size-h2:
|
54
|
-
$font-size-h3:
|
55
|
-
$font-size-h4:
|
56
|
-
$font-size-h5:
|
57
|
-
$font-size-h6:
|
52
|
+
$font-size-h1: 56px !default;
|
53
|
+
$font-size-h2: 45px !default;
|
54
|
+
$font-size-h3: 34px !default;
|
55
|
+
$font-size-h4: 24px !default;
|
56
|
+
$font-size-h5: 20px !default;
|
57
|
+
$font-size-h6: 16px !default;
|
58
58
|
|
59
59
|
//** Unit-less `line-height` for use in components like buttons.
|
60
60
|
$line-height-base: 1.428571429 !default; // 20/14
|
@@ -78,31 +78,6 @@ $icon-font-name: "glyphicons-halflings-regular" !default;
|
|
78
78
|
//** Element ID within SVG icon file.
|
79
79
|
$icon-font-svg-id: "glyphicons_halflingsregular" !default;
|
80
80
|
|
81
|
-
//== Type
|
82
|
-
//
|
83
|
-
//##
|
84
|
-
|
85
|
-
//** Horizontal offset for forms and lists.
|
86
|
-
$component-offset-horizontal: 180px !default;
|
87
|
-
//** Text muted color
|
88
|
-
$text-muted: $gray-light !default;
|
89
|
-
//** Abbreviations and acronyms border color
|
90
|
-
$abbr-border-color: $gray-light !default;
|
91
|
-
//** Headings small color
|
92
|
-
$headings-small-color: $gray-light !default;
|
93
|
-
//** Blockquote small color
|
94
|
-
$blockquote-small-color: $gray !default;
|
95
|
-
//** Blockquote font size
|
96
|
-
$blockquote-font-size: ($font-size-base * 1.25) !default;
|
97
|
-
//** Blockquote border color
|
98
|
-
$blockquote-border-color: $gray-dark !default;
|
99
|
-
//** Page header border color
|
100
|
-
$page-header-border-color: $gray-dark !default;
|
101
|
-
//** Width of horizontal description list titles
|
102
|
-
$dl-horizontal-offset: $component-offset-horizontal !default;
|
103
|
-
//** Horizontal line color.
|
104
|
-
$hr-border: $gray-dark !default;
|
105
|
-
|
106
81
|
|
107
82
|
//== Components
|
108
83
|
//
|
@@ -228,6 +203,30 @@ $input-group-addon-bg: $gray-lighter !default;
|
|
228
203
|
//** Border color for textual input addons
|
229
204
|
$input-group-addon-border-color: $input-border !default;
|
230
205
|
|
206
|
+
//== Type
|
207
|
+
//
|
208
|
+
//##
|
209
|
+
|
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 !default;
|
220
|
+
//** Blockquote font size
|
221
|
+
$blockquote-font-size: ($font-size-base * 1.25) !default;
|
222
|
+
//** Blockquote border color
|
223
|
+
$blockquote-border-color: $gray-dark !default;
|
224
|
+
//** Page header border color
|
225
|
+
$page-header-border-color: $gray-dark !default;
|
226
|
+
//** Width of horizontal description list titles
|
227
|
+
$dl-horizontal-offset: $component-offset-horizontal !default;
|
228
|
+
//** Horizontal line color.
|
229
|
+
$hr-border: $gray-dark !default;
|
231
230
|
|
232
231
|
//== Dropdowns
|
233
232
|
//
|
@@ -242,12 +241,12 @@ $dropdown-fallback-border: #444 !default;
|
|
242
241
|
//** Divider color for between dropdown items.
|
243
242
|
$dropdown-divider-bg: rgba(255,255,255,0.1) !default;
|
244
243
|
|
244
|
+
//** Active dropdown menu item background color.
|
245
|
+
$dropdown-link-active-bg: $component-active-bg !default;
|
245
246
|
//** Dropdown link text color.
|
246
247
|
$dropdown-link-color: #fff !default;
|
247
248
|
//** Hover color for dropdown links.
|
248
249
|
$dropdown-link-hover-color: #fff !default;
|
249
|
-
//** Active dropdown menu item background color.
|
250
|
-
$dropdown-link-active-bg: $component-active-bg !default;
|
251
250
|
//** Hover background for dropdown links.
|
252
251
|
$dropdown-link-hover-bg: $dropdown-link-active-bg !default;
|
253
252
|
|
@@ -368,21 +367,21 @@ $navbar-collapse-max-height: 340px !default;
|
|
368
367
|
|
369
368
|
$navbar-default-color: $text-color !default;
|
370
369
|
$navbar-default-bg: $body-bg !default;
|
371
|
-
$navbar-default-border:
|
370
|
+
$navbar-default-border: $gray-dark !default;
|
372
371
|
|
373
372
|
// Navbar links
|
374
373
|
$navbar-default-link-color: $text-color !default;
|
375
374
|
$navbar-default-link-hover-color: #fff !default;
|
376
|
-
$navbar-default-link-hover-bg:
|
375
|
+
$navbar-default-link-hover-bg: transparent !default;
|
377
376
|
$navbar-default-link-active-color: #fff !default;
|
378
|
-
$navbar-default-link-active-bg:
|
377
|
+
$navbar-default-link-active-bg: transparent !default;
|
379
378
|
$navbar-default-link-disabled-color: $gray-light !default;
|
380
|
-
$navbar-default-link-disabled-bg:
|
379
|
+
$navbar-default-link-disabled-bg: transparent !default;
|
381
380
|
|
382
381
|
// Navbar brand label
|
383
382
|
$navbar-default-brand-color: #fff !default;
|
384
383
|
$navbar-default-brand-hover-color: #fff !default;
|
385
|
-
$navbar-default-brand-hover-bg:
|
384
|
+
$navbar-default-brand-hover-bg: transparent !default;
|
386
385
|
|
387
386
|
// Navbar toggle
|
388
387
|
$navbar-default-toggle-hover-bg: $gray-dark !default;
|
@@ -399,16 +398,16 @@ $navbar-inverse-border: darken($navbar-inverse-bg, 10%) !def
|
|
399
398
|
// Inverted navbar links
|
400
399
|
$navbar-inverse-link-color: $gray-light !default;
|
401
400
|
$navbar-inverse-link-hover-color: #fff !default;
|
402
|
-
$navbar-inverse-link-hover-bg:
|
401
|
+
$navbar-inverse-link-hover-bg: transparent !default;
|
403
402
|
$navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default;
|
404
|
-
$navbar-inverse-link-active-bg:
|
403
|
+
$navbar-inverse-link-active-bg: transparent !default;
|
405
404
|
$navbar-inverse-link-disabled-color: #aaa !default;
|
406
|
-
$navbar-inverse-link-disabled-bg:
|
405
|
+
$navbar-inverse-link-disabled-bg: transparent !default;
|
407
406
|
|
408
407
|
// Inverted navbar brand label
|
409
408
|
$navbar-inverse-brand-color: #fff !default;
|
410
409
|
$navbar-inverse-brand-hover-color: #fff !default;
|
411
|
-
$navbar-inverse-brand-hover-bg:
|
410
|
+
$navbar-inverse-brand-hover-bg: transparent !default;
|
412
411
|
|
413
412
|
// Inverted navbar toggle
|
414
413
|
$navbar-inverse-toggle-hover-bg: #333 !default;
|
@@ -432,7 +431,7 @@ $nav-open-link-hover-color: $gray-darker !default;
|
|
432
431
|
//== Tabs
|
433
432
|
$nav-tabs-border-color: $gray-dark !default;
|
434
433
|
|
435
|
-
$nav-tabs-link-hover-border-color:
|
434
|
+
$nav-tabs-link-hover-border-color: transparent !default;
|
436
435
|
|
437
436
|
$nav-tabs-active-link-hover-bg: $brand-primary !default;
|
438
437
|
$nav-tabs-active-link-hover-color: #fff !default;
|
@@ -457,11 +456,11 @@ $pagination-border: $gray-dark !default;
|
|
457
456
|
|
458
457
|
$pagination-hover-color: #fff !default;
|
459
458
|
$pagination-hover-bg: $component-active-bg !default;
|
460
|
-
$pagination-hover-border:
|
459
|
+
$pagination-hover-border: transparent !default;
|
461
460
|
|
462
461
|
$pagination-active-color: #fff !default;
|
463
462
|
$pagination-active-bg: $brand-primary !default;
|
464
|
-
$pagination-active-border:
|
463
|
+
$pagination-active-border: transparent !default;
|
465
464
|
|
466
465
|
$pagination-disabled-color: $gray-light !default;
|
467
466
|
$pagination-disabled-bg: $gray-darker !default;
|
@@ -710,8 +709,8 @@ $panel-footer-padding: $panel-heading-padding !default;
|
|
710
709
|
$panel-border-radius: $border-radius-base !default;
|
711
710
|
|
712
711
|
//** Border color for elements within panels
|
713
|
-
$panel-inner-border: $gray-dark !default;
|
714
712
|
$panel-default-heading-bg: lighten($gray-darker, 10%) !default;
|
713
|
+
$panel-inner-border: $gray-dark !default;
|
715
714
|
$panel-footer-bg: $panel-default-heading-bg !default;
|
716
715
|
|
717
716
|
$panel-default-text: $text-color !default;
|
@@ -9,7 +9,6 @@
|
|
9
9
|
.navbar {
|
10
10
|
border-width: 0;
|
11
11
|
}
|
12
|
-
|
13
12
|
.navbar-default {
|
14
13
|
|
15
14
|
.badge {
|
@@ -82,7 +81,7 @@
|
|
82
81
|
table,
|
83
82
|
.table {
|
84
83
|
|
85
|
-
a {
|
84
|
+
a:not(.btn) {
|
86
85
|
text-decoration: underline;
|
87
86
|
}
|
88
87
|
|
@@ -105,6 +104,7 @@ table,
|
|
105
104
|
> tfoot > tr > td {
|
106
105
|
border: none;
|
107
106
|
}
|
107
|
+
|
108
108
|
}
|
109
109
|
|
110
110
|
.table-bordered > thead > tr > th,
|
@@ -238,17 +238,22 @@ textarea {
|
|
238
238
|
|
239
239
|
// Indicators =================================================================
|
240
240
|
|
241
|
-
.
|
241
|
+
.close {
|
242
|
+
text-decoration: none;
|
243
|
+
text-shadow: none;
|
244
|
+
opacity: 0.4;
|
242
245
|
|
243
|
-
|
246
|
+
&:hover,
|
247
|
+
&:focus {
|
248
|
+
opacity: 1;
|
249
|
+
}
|
250
|
+
}
|
251
|
+
|
252
|
+
.alert {
|
244
253
|
.alert-link {
|
245
254
|
color: #fff;
|
246
255
|
text-decoration: underline;
|
247
256
|
}
|
248
|
-
|
249
|
-
.close {
|
250
|
-
text-decoration: none;
|
251
|
-
}
|
252
257
|
}
|
253
258
|
|
254
259
|
// Progress bars ==============================================================
|
@@ -268,8 +273,7 @@ textarea {
|
|
268
273
|
@include box-shadow(none);
|
269
274
|
}
|
270
275
|
|
271
|
-
.popover
|
272
|
-
.modal {
|
276
|
+
.popover {
|
273
277
|
color: $text-color;
|
274
278
|
}
|
275
279
|
|
@@ -7,9 +7,9 @@
|
|
7
7
|
//
|
8
8
|
//## Gray and brand colors for use across Bootstrap.
|
9
9
|
|
10
|
+
$gray: #464545 !default;
|
10
11
|
$gray-darker: lighten(#000, 13.5%) !default; // #222
|
11
12
|
$gray-dark: #303030 !default; // #333
|
12
|
-
$gray: #464545 !default;
|
13
13
|
$gray-light: #999 !default; // #999
|
14
14
|
$gray-lighter: #EBEBEB !default; // #eee
|
15
15
|
|
@@ -79,31 +79,6 @@ $icon-font-name: "glyphicons-halflings-regular" !default;
|
|
79
79
|
$icon-font-svg-id: "glyphicons_halflingsregular" !default;
|
80
80
|
|
81
81
|
|
82
|
-
//== Type
|
83
|
-
//
|
84
|
-
//##
|
85
|
-
|
86
|
-
//** Horizontal offset for forms and lists.
|
87
|
-
$component-offset-horizontal: 180px !default;
|
88
|
-
//** Text muted color
|
89
|
-
$text-muted: $gray-light !default;
|
90
|
-
//** Abbreviations and acronyms border color
|
91
|
-
$abbr-border-color: $gray-light !default;
|
92
|
-
//** Headings small color
|
93
|
-
$headings-small-color: $gray-light !default;
|
94
|
-
//** Blockquote small color
|
95
|
-
$blockquote-small-color: $gray-light !default;
|
96
|
-
//** Blockquote font size
|
97
|
-
$blockquote-font-size: ($font-size-base * 1.25) !default;
|
98
|
-
//** Blockquote border color
|
99
|
-
$blockquote-border-color: $gray !default;
|
100
|
-
//** Page header border color
|
101
|
-
$page-header-border-color: hsla(0, 100%, 100%, 0) !default;
|
102
|
-
//** Width of horizontal description list titles
|
103
|
-
$dl-horizontal-offset: $component-offset-horizontal !default;
|
104
|
-
//** Horizontal line color.
|
105
|
-
$hr-border: $gray !default;
|
106
|
-
|
107
82
|
//== Components
|
108
83
|
//
|
109
84
|
//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
|
@@ -148,7 +123,7 @@ $table-cell-padding: 8px !default;
|
|
148
123
|
$table-condensed-cell-padding: 5px !default;
|
149
124
|
|
150
125
|
//** Default background color used for all tables.
|
151
|
-
$table-bg:
|
126
|
+
$table-bg: transparent !default;
|
152
127
|
//** Background color used for `.table-striped`.
|
153
128
|
$table-bg-accent: $gray-dark !default;
|
154
129
|
//** Background color used for `.table-hover`.
|
@@ -221,13 +196,37 @@ $input-height-large: (ceil($font-size-large * $line-height-large) +
|
|
221
196
|
$input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
|
222
197
|
|
223
198
|
$legend-color: $text-color !default;
|
224
|
-
$legend-border-color:
|
199
|
+
$legend-border-color: transparent !default;
|
225
200
|
|
226
201
|
//** Background color for textual input addons
|
227
202
|
$input-group-addon-bg: $gray-dark !default;
|
228
203
|
//** Border color for textual input addons
|
229
|
-
$input-group-addon-border-color:
|
204
|
+
$input-group-addon-border-color: transparent !default;
|
230
205
|
|
206
|
+
//== Type
|
207
|
+
//
|
208
|
+
//##
|
209
|
+
|
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 !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 !default;
|
231
230
|
|
232
231
|
//== Dropdowns
|
233
232
|
//
|
@@ -242,12 +241,12 @@ $dropdown-fallback-border: #ccc !default;
|
|
242
241
|
//** Divider color for between dropdown items.
|
243
242
|
$dropdown-divider-bg: #e5e5e5 !default;
|
244
243
|
|
244
|
+
//** Active dropdown menu item background color.
|
245
|
+
$dropdown-link-active-bg: $component-active-bg !default;
|
245
246
|
//** Dropdown link text color.
|
246
247
|
$dropdown-link-color: $brand-primary !default;
|
247
248
|
//** Hover color for dropdown links.
|
248
249
|
$dropdown-link-hover-color: #fff !default;
|
249
|
-
//** Active dropdown menu item background color.
|
250
|
-
$dropdown-link-active-bg: $component-active-bg !default;
|
251
250
|
//** Hover background for dropdown links.
|
252
251
|
$dropdown-link-hover-bg: $dropdown-link-active-bg !default;
|
253
252
|
|
@@ -368,21 +367,21 @@ $navbar-collapse-max-height: 340px !default;
|
|
368
367
|
|
369
368
|
$navbar-default-color: #777 !default;
|
370
369
|
$navbar-default-bg: $brand-primary !default;
|
371
|
-
$navbar-default-border:
|
370
|
+
$navbar-default-border: transparent !default;
|
372
371
|
|
373
372
|
// Navbar links
|
374
373
|
$navbar-default-link-color: #fff !default;
|
375
374
|
$navbar-default-link-hover-color: $brand-success !default;
|
376
|
-
$navbar-default-link-hover-bg:
|
375
|
+
$navbar-default-link-hover-bg: transparent !default;
|
377
376
|
$navbar-default-link-active-color: #fff !default;
|
378
377
|
$navbar-default-link-active-bg: darken($navbar-default-bg, 10%) !default;
|
379
378
|
$navbar-default-link-disabled-color: #ccc !default;
|
380
|
-
$navbar-default-link-disabled-bg:
|
379
|
+
$navbar-default-link-disabled-bg: transparent !default;
|
381
380
|
|
382
381
|
// Navbar brand label
|
383
382
|
$navbar-default-brand-color: $navbar-default-link-color !default;
|
384
383
|
$navbar-default-brand-hover-color: $navbar-default-link-hover-color !default;
|
385
|
-
$navbar-default-brand-hover-bg:
|
384
|
+
$navbar-default-brand-hover-bg: transparent !default;
|
386
385
|
|
387
386
|
// Navbar toggle
|
388
387
|
$navbar-default-toggle-hover-bg: darken($navbar-default-bg, 10%) !default;
|
@@ -394,21 +393,21 @@ $navbar-default-toggle-border-color: darken($navbar-default-bg, 10%) !defa
|
|
394
393
|
// Reset inverted navbar basics
|
395
394
|
$navbar-inverse-color: #fff !default;
|
396
395
|
$navbar-inverse-bg: $brand-success !default;
|
397
|
-
$navbar-inverse-border:
|
396
|
+
$navbar-inverse-border: transparent !default;
|
398
397
|
|
399
398
|
// Inverted navbar links
|
400
399
|
$navbar-inverse-link-color: $navbar-inverse-color !default;
|
401
400
|
$navbar-inverse-link-hover-color: $brand-primary !default;
|
402
|
-
$navbar-inverse-link-hover-bg:
|
401
|
+
$navbar-inverse-link-hover-bg: transparent !default;
|
403
402
|
$navbar-inverse-link-active-color: $navbar-inverse-color !default;
|
404
403
|
$navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 5%) !default;
|
405
404
|
$navbar-inverse-link-disabled-color: #aaa !default;
|
406
|
-
$navbar-inverse-link-disabled-bg:
|
405
|
+
$navbar-inverse-link-disabled-bg: transparent !default;
|
407
406
|
|
408
407
|
// Inverted navbar brand label
|
409
408
|
$navbar-inverse-brand-color: $navbar-inverse-link-color !default;
|
410
409
|
$navbar-inverse-brand-hover-color: $navbar-inverse-link-hover-color !default;
|
411
|
-
$navbar-inverse-brand-hover-bg:
|
410
|
+
$navbar-inverse-brand-hover-bg: transparent !default;
|
412
411
|
|
413
412
|
// Inverted navbar toggle
|
414
413
|
$navbar-inverse-toggle-hover-bg: darken($navbar-inverse-bg, 10%) !default;
|
@@ -453,19 +452,19 @@ $nav-pills-active-link-hover-color: $component-active-color !default;
|
|
453
452
|
|
454
453
|
$pagination-color: #fff !default;
|
455
454
|
$pagination-bg: $brand-success !default;
|
456
|
-
$pagination-border:
|
455
|
+
$pagination-border: transparent !default;
|
457
456
|
|
458
457
|
$pagination-hover-color: #fff !default;
|
459
458
|
$pagination-hover-bg: lighten($brand-success, 6%) !default;
|
460
|
-
$pagination-hover-border:
|
459
|
+
$pagination-hover-border: transparent !default;
|
461
460
|
|
462
461
|
$pagination-active-color: #fff !default;
|
463
462
|
$pagination-active-bg: lighten($brand-success, 6%) !default;
|
464
|
-
$pagination-active-border:
|
463
|
+
$pagination-active-border: transparent !default;
|
465
464
|
|
466
465
|
$pagination-disabled-color: #fff !default;
|
467
466
|
$pagination-disabled-bg: darken($brand-success, 15%) !default;;
|
468
|
-
$pagination-disabled-border:
|
467
|
+
$pagination-disabled-border: transparent !default;
|
469
468
|
|
470
469
|
|
471
470
|
//== Pager
|
@@ -677,7 +676,7 @@ $list-group-border: $gray !default;
|
|
677
676
|
$list-group-border-radius: $border-radius-base !default;
|
678
677
|
|
679
678
|
//** Background color of single list items on hover
|
680
|
-
$list-group-hover-bg:
|
679
|
+
$list-group-hover-bg: transparent !default;
|
681
680
|
//** Text color of active list items
|
682
681
|
$list-group-active-color: $component-active-color !default;
|
683
682
|
//** Background color of active list items
|
@@ -762,7 +761,7 @@ $thumbnail-caption-padding: 9px !default;
|
|
762
761
|
//##
|
763
762
|
|
764
763
|
$well-bg: $gray-dark !default;
|
765
|
-
$well-border:
|
764
|
+
$well-border: transparent !default;
|
766
765
|
|
767
766
|
|
768
767
|
//== Badges
|
@@ -822,7 +821,7 @@ $carousel-caption-color: #fff !default;
|
|
822
821
|
//##
|
823
822
|
|
824
823
|
$close-font-weight: bold !default;
|
825
|
-
$close-color: #
|
824
|
+
$close-color: #fff !default;
|
826
825
|
$close-text-shadow: none !default;
|
827
826
|
|
828
827
|
|