bootswatch-rails 3.2.0 → 3.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/HISTORY.md +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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fbbcfbb53ad4ade2e966d45d6343309de5beb266
|
4
|
+
data.tar.gz: dd13bdd68cbabf98252dbaa34b740db3442eade0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24f871e634fc0d7e559806844f6e183fe1853f92023eee8a324867bab4a68c622b44408ec69312e4d0b18be9dd608fc7400cbab6a7285a8b31dea312409ee83d
|
7
|
+
data.tar.gz: e1ee9f5088f38b125d357794e8eb0217496375ef2f3b300789e41641e40be4fd2985fc34ab8bd91b4099c9e605a77f0a005a92f0c9ee16a3cba66ff3267e5c7f
|
data/HISTORY.md
CHANGED
data/README.md
CHANGED
@@ -71,7 +71,9 @@ Included bootswatches
|
|
71
71
|
* [Flatly](http://bootswatch.com/flatly/)
|
72
72
|
* [Journal](http://bootswatch.com/journal/)
|
73
73
|
* [Lumen](http://bootswatch.com/lumen/)
|
74
|
+
* [Paper](http://bootswatch.com/paper/)
|
74
75
|
* [Readable](http://bootswatch.com/readable/)
|
76
|
+
* [Sandstone](http://bootswatch.com/sandstone/)
|
75
77
|
* [Simplex](http://bootswatch.com/simplex/)
|
76
78
|
* [Slate](http://bootswatch.com/slate/)
|
77
79
|
* [Spacelab](http://bootswatch.com/spacelab/)
|
data/Rakefile
CHANGED
data/rearranges
CHANGED
@@ -49,7 +49,7 @@ class Variable
|
|
49
49
|
end
|
50
50
|
|
51
51
|
def section_name
|
52
|
-
section_header.split("\n").first.sub('
|
52
|
+
section_header.split("\n").first.sub('//== ', '')
|
53
53
|
end
|
54
54
|
|
55
55
|
def to_s
|
@@ -61,16 +61,16 @@ class Variable
|
|
61
61
|
end
|
62
62
|
end
|
63
63
|
|
64
|
-
Variable.sections = body.split(/(
|
64
|
+
Variable.sections = body.split(/(\/\/==\s+\w+[\/\s]+##[\W\w]$)/m)
|
65
65
|
|
66
66
|
tokens = []
|
67
67
|
in_section = false
|
68
68
|
|
69
69
|
Variable.sections.each.with_index do |section, index|
|
70
70
|
if in_section
|
71
|
-
tokens[index] = section.scan(
|
71
|
+
tokens[index] = section.scan(/\$[\w-]+\s*\:?/)
|
72
72
|
in_section = false
|
73
|
-
elsif section =~ /(
|
73
|
+
elsif section =~ /(\/\/==\s+\w+[\/\s]+##[\W\w]$)/m
|
74
74
|
tokens[index] = []
|
75
75
|
in_section = true
|
76
76
|
else
|
@@ -7,9 +7,9 @@
|
|
7
7
|
//
|
8
8
|
//## Gray and brand colors for use across Bootstrap.
|
9
9
|
|
10
|
+
$gray: lighten(#000, 33.5%) !default; // #555
|
10
11
|
$gray-darker: #111 !default; // #222
|
11
12
|
$gray-dark: #444 !default; // #333
|
12
|
-
$gray: lighten(#000, 33.5%) !default; // #555
|
13
13
|
$gray-light: #bbb !default; // #999
|
14
14
|
$gray-lighter: #ddd !default; // #eee
|
15
15
|
|
@@ -540,7 +540,7 @@ $tooltip-arrow-color: $tooltip-bg !default;
|
|
540
540
|
//##
|
541
541
|
|
542
542
|
//** Popover body background color
|
543
|
-
$popover-bg:
|
543
|
+
$popover-bg: lighten($body-bg, 5%) !default;
|
544
544
|
//** Popover maximum width
|
545
545
|
$popover-max-width: 276px !default;
|
546
546
|
//** Popover border color
|
@@ -554,7 +554,7 @@ $popover-title-bg: darken($popover-bg, 3%) !default;
|
|
554
554
|
//** Popover arrow width
|
555
555
|
$popover-arrow-width: 10px !default;
|
556
556
|
//** Popover arrow color
|
557
|
-
$popover-arrow-color:
|
557
|
+
$popover-arrow-color: lighten($body-bg, 5%) !default;
|
558
558
|
|
559
559
|
//** Popover outer arrow width
|
560
560
|
$popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
|
@@ -7,9 +7,9 @@
|
|
7
7
|
//
|
8
8
|
//## Gray and brand colors for use across Bootstrap.
|
9
9
|
|
10
|
+
$gray: lighten(#000, 33.5%) !default; // #555
|
10
11
|
$gray-darker: lighten(#000, 13.5%) !default; // #222
|
11
12
|
$gray-dark: lighten(#000, 20%) !default; // #333
|
12
|
-
$gray: lighten(#000, 33.5%) !default; // #555
|
13
13
|
$gray-light: lighten(#000, 60%) !default; // #999
|
14
14
|
$gray-lighter: lighten(#000, 93.5%) !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-lighter !default;
|
100
|
-
//** Page header border color
|
101
|
-
$page-header-border-color: $gray-lighter !default;
|
102
|
-
//** Width of horizontal description list titles
|
103
|
-
$dl-horizontal-offset: $component-offset-horizontal !default;
|
104
|
-
//** Horizontal line color.
|
105
|
-
$hr-border: $gray-lighter !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: #f9f9f9 !default;
|
154
129
|
//** Background color used for `.table-hover`.
|
@@ -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-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;
|
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: $gray-dark !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
|
|
@@ -377,7 +376,7 @@ $navbar-default-link-hover-bg: darken($navbar-default-bg, 10%) !defa
|
|
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: #ddd !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;
|
@@ -403,7 +402,7 @@ $navbar-inverse-link-hover-bg: darken($navbar-inverse-bg, 5%) !defa
|
|
403
402
|
$navbar-inverse-link-active-color: #fff !default;
|
404
403
|
$navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 5%) !default;
|
405
404
|
$navbar-inverse-link-disabled-color: #ccc !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;
|
@@ -2,7 +2,7 @@
|
|
2
2
|
// Bootswatch
|
3
3
|
// -----------------------------------------------------
|
4
4
|
|
5
|
-
@import url("//fonts.googleapis.com/css?family=
|
5
|
+
@import url("//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700");
|
6
6
|
|
7
7
|
// Navbar =====================================================================
|
8
8
|
|
@@ -16,12 +16,13 @@
|
|
16
16
|
|
17
17
|
// Buttons ====================================================================
|
18
18
|
|
19
|
-
.btn-lg {
|
20
|
-
padding-top: 19px;
|
21
|
-
}
|
22
19
|
|
23
20
|
// Typography =================================================================
|
24
21
|
|
22
|
+
body {
|
23
|
+
-webkit-font-smoothing: antialiased;
|
24
|
+
}
|
25
|
+
|
25
26
|
.text-primary,
|
26
27
|
.text-primary:hover {
|
27
28
|
color: $brand-primary;
|
@@ -52,7 +53,7 @@
|
|
52
53
|
table,
|
53
54
|
.table {
|
54
55
|
|
55
|
-
a {
|
56
|
+
a:not(.btn) {
|
56
57
|
text-decoration: underline;
|
57
58
|
}
|
58
59
|
|
@@ -132,27 +133,26 @@ table,
|
|
132
133
|
|
133
134
|
// Indicators =================================================================
|
134
135
|
|
135
|
-
.alert {
|
136
|
-
border: none;
|
137
|
-
|
138
|
-
.alert-link {
|
139
|
-
text-decoration: underline;
|
140
|
-
color: #fff;
|
141
|
-
}
|
142
|
-
}
|
143
|
-
|
144
136
|
.close {
|
145
|
-
color: #fff;
|
146
137
|
text-decoration: none;
|
138
|
+
text-shadow: none;
|
147
139
|
opacity: 0.4;
|
148
140
|
|
149
141
|
&:hover,
|
150
142
|
&:focus {
|
151
|
-
color: #fff;
|
152
143
|
opacity: 1;
|
153
144
|
}
|
154
145
|
}
|
155
146
|
|
147
|
+
.alert {
|
148
|
+
border: none;
|
149
|
+
|
150
|
+
.alert-link {
|
151
|
+
text-decoration: underline;
|
152
|
+
color: #fff;
|
153
|
+
}
|
154
|
+
}
|
155
|
+
|
156
156
|
.label {
|
157
157
|
border-radius: 0;
|
158
158
|
}
|
@@ -175,3 +175,19 @@ table,
|
|
175
175
|
border-top-right-radius: 0;
|
176
176
|
border-top-left-radius: 0;
|
177
177
|
}
|
178
|
+
|
179
|
+
.panel-default {
|
180
|
+
.close {
|
181
|
+
color: $text-color;
|
182
|
+
}
|
183
|
+
}
|
184
|
+
|
185
|
+
.modal {
|
186
|
+
.close {
|
187
|
+
color: $text-color;
|
188
|
+
}
|
189
|
+
}
|
190
|
+
|
191
|
+
.popover {
|
192
|
+
color: $text-color;
|
193
|
+
}
|
@@ -7,13 +7,13 @@
|
|
7
7
|
//
|
8
8
|
//## Gray and brand colors for use across Bootstrap.
|
9
9
|
|
10
|
+
$gray: lighten(#000, 33.5%) !default; // #555
|
10
11
|
$gray-darker: lighten(#000, 13.5%) !default; // #222
|
11
12
|
$gray-dark: lighten(#000, 20%) !default; // #333
|
12
|
-
$gray: lighten(#000, 33.5%) !default; // #555
|
13
13
|
$gray-light: lighten(#000, 60%) !default; // #999
|
14
14
|
$gray-lighter: lighten(#000, 90%) !default; // #eee
|
15
15
|
|
16
|
-
$brand-primary: #
|
16
|
+
$brand-primary: #2780E3 !default;
|
17
17
|
$brand-success: #3FB618 !default;
|
18
18
|
$brand-info: #9954BB !default;
|
19
19
|
$brand-warning: #FF7518 !default;
|
@@ -39,7 +39,7 @@ $link-hover-color: darken($link-color, 15%) !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: "Source Sans Pro", Calibri, Candara, 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;
|
@@ -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-lighter !default;
|
100
|
-
//** Page header border color
|
101
|
-
$page-header-border-color: $gray-lighter !default;
|
102
|
-
//** Width of horizontal description list titles
|
103
|
-
$dl-horizontal-offset: $component-offset-horizontal !default;
|
104
|
-
//** Horizontal line color.
|
105
|
-
$hr-border: $gray-lighter !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: #f9f9f9 !default;
|
154
129
|
//** Background color used for `.table-hover`.
|
@@ -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-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;
|
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: $gray-dark !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
|
|
@@ -377,7 +376,7 @@ $navbar-default-link-hover-bg: darken($navbar-default-bg, 10%) !defa
|
|
377
376
|
$navbar-default-link-active-color: $navbar-default-link-hover-color !default;
|
378
377
|
$navbar-default-link-active-bg: $navbar-default-link-hover-bg !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;
|
@@ -387,7 +386,7 @@ $navbar-default-brand-hover-bg: none !default;
|
|
387
386
|
// Navbar toggle
|
388
387
|
$navbar-default-toggle-hover-bg: $navbar-default-link-hover-bg !default;
|
389
388
|
$navbar-default-toggle-icon-bar-bg: #fff !default;
|
390
|
-
$navbar-default-toggle-border-color:
|
389
|
+
$navbar-default-toggle-border-color: transparent !default;
|
391
390
|
|
392
391
|
|
393
392
|
// Inverted navbar
|
@@ -403,7 +402,7 @@ $navbar-inverse-link-hover-bg: darken($navbar-inverse-bg, 10%) !def
|
|
403
402
|
$navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default;
|
404
403
|
$navbar-inverse-link-active-bg: $navbar-inverse-link-hover-bg !default;
|
405
404
|
$navbar-inverse-link-disabled-color: #fff !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;
|
@@ -413,7 +412,7 @@ $navbar-inverse-brand-hover-bg: none !default;
|
|
413
412
|
// Inverted navbar toggle
|
414
413
|
$navbar-inverse-toggle-hover-bg: $navbar-inverse-link-hover-bg !default;
|
415
414
|
$navbar-inverse-toggle-icon-bar-bg: #fff !default;
|
416
|
-
$navbar-inverse-toggle-border-color:
|
415
|
+
$navbar-inverse-toggle-border-color: transparent !default;
|
417
416
|
|
418
417
|
|
419
418
|
//== Navs
|
@@ -601,7 +600,7 @@ $modal-title-line-height: $line-height-base !default;
|
|
601
600
|
//** Background color of modal content area
|
602
601
|
$modal-content-bg: #fff !default;
|
603
602
|
//** Modal content border color
|
604
|
-
$modal-content-border-color:
|
603
|
+
$modal-content-border-color: transparent !default;
|
605
604
|
//** Modal content border color **for IE8**
|
606
605
|
$modal-content-fallback-border-color: #999 !default;
|
607
606
|
|
@@ -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: 0 1px 0 #fff !default;
|
827
826
|
|
828
827
|
|