bootswatch-rails 3.1.1.1 → 3.2.0
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 +4 -0
- data/README.md +4 -3
- data/converter +9 -0
- data/lib/bootswatch-rails/version.rb +1 -1
- data/vendor/assets/stylesheets/bootswatch/amelia/_bootswatch.scss +16 -4
- data/vendor/assets/stylesheets/bootswatch/amelia/_variables.scss +80 -63
- data/vendor/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +5 -5
- data/vendor/assets/stylesheets/bootswatch/cerulean/_variables.scss +53 -38
- data/vendor/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +16 -13
- data/vendor/assets/stylesheets/bootswatch/cosmo/_variables.scss +55 -40
- data/vendor/assets/stylesheets/bootswatch/custom/_variables.scss +7 -7
- data/vendor/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +18 -11
- data/vendor/assets/stylesheets/bootswatch/cyborg/_variables.scss +64 -49
- data/vendor/assets/stylesheets/bootswatch/darkly/_bootswatch.scss +6 -1
- data/vendor/assets/stylesheets/bootswatch/darkly/_variables.scss +68 -53
- data/vendor/assets/stylesheets/bootswatch/flatly/_bootswatch.scss +15 -9
- data/vendor/assets/stylesheets/bootswatch/flatly/_variables.scss +66 -49
- data/vendor/assets/stylesheets/bootswatch/journal/_bootswatch.scss +4 -3
- data/vendor/assets/stylesheets/bootswatch/journal/_variables.scss +53 -37
- data/vendor/assets/stylesheets/bootswatch/lumen/_bootswatch.scss +27 -10
- data/vendor/assets/stylesheets/bootswatch/lumen/_variables.scss +164 -147
- data/vendor/assets/stylesheets/bootswatch/readable/_bootswatch.scss +15 -11
- data/vendor/assets/stylesheets/bootswatch/readable/_variables.scss +66 -50
- data/vendor/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +1 -1
- data/vendor/assets/stylesheets/bootswatch/simplex/_variables.scss +64 -48
- data/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss +22 -9
- data/vendor/assets/stylesheets/bootswatch/slate/_variables.scss +179 -168
- data/vendor/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +3 -3
- data/vendor/assets/stylesheets/bootswatch/spacelab/_variables.scss +59 -43
- data/vendor/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +25 -12
- data/vendor/assets/stylesheets/bootswatch/superhero/_variables.scss +182 -169
- data/vendor/assets/stylesheets/bootswatch/united/_bootswatch.scss +1 -1
- data/vendor/assets/stylesheets/bootswatch/united/_variables.scss +53 -38
- data/vendor/assets/stylesheets/bootswatch/yeti/_bootswatch.scss +9 -4
- data/vendor/assets/stylesheets/bootswatch/yeti/_variables.scss +64 -47
- metadata +2 -2
@@ -1,4 +1,4 @@
|
|
1
|
-
// Slate 3.
|
1
|
+
// Slate 3.2.0
|
2
2
|
// Bootswatch
|
3
3
|
// -----------------------------------------------------
|
4
4
|
|
@@ -21,7 +21,7 @@
|
|
21
21
|
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
|
22
22
|
|
23
23
|
.nav .open > a {
|
24
|
-
border-color:
|
24
|
+
border-color: hsla(0, 100%, 100%, 0);
|
25
25
|
}
|
26
26
|
|
27
27
|
}
|
@@ -40,12 +40,12 @@
|
|
40
40
|
|
41
41
|
&:hover {
|
42
42
|
@include btn-shadow-inverse($navbar-default-bg);
|
43
|
-
border-left-color:
|
43
|
+
border-left-color: hsla(0, 100%, 100%, 0);
|
44
44
|
}
|
45
45
|
}
|
46
46
|
|
47
47
|
.navbar-nav > li.active > a {
|
48
|
-
border-left-color:
|
48
|
+
border-left-color: hsla(0, 100%, 100%, 0);
|
49
49
|
}
|
50
50
|
|
51
51
|
.navbar-form {
|
@@ -53,7 +53,6 @@
|
|
53
53
|
margin-right: 5px;
|
54
54
|
}
|
55
55
|
|
56
|
-
|
57
56
|
// Buttons ====================================================================
|
58
57
|
|
59
58
|
.btn,
|
@@ -112,7 +111,7 @@
|
|
112
111
|
|
113
112
|
.btn-link,
|
114
113
|
.btn-link:hover {
|
115
|
-
border-color:
|
114
|
+
border-color: hsla(0, 100%, 100%, 0);
|
116
115
|
}
|
117
116
|
|
118
117
|
// Typography =================================================================
|
@@ -160,7 +159,6 @@ h1, h2, h3, h4, h5, h6 {
|
|
160
159
|
.info {
|
161
160
|
color: #fff;
|
162
161
|
}
|
163
|
-
|
164
162
|
}
|
165
163
|
|
166
164
|
.table-bordered tbody {
|
@@ -198,6 +196,11 @@ textarea {
|
|
198
196
|
.form-control:focus {
|
199
197
|
border-color: $brand-warning;
|
200
198
|
}
|
199
|
+
|
200
|
+
.input-group-addon {
|
201
|
+
background-color: $body-bg;
|
202
|
+
border: none;
|
203
|
+
}
|
201
204
|
}
|
202
205
|
|
203
206
|
.has-error {
|
@@ -211,6 +214,11 @@ textarea {
|
|
211
214
|
.form-control:focus {
|
212
215
|
border-color: $brand-danger;
|
213
216
|
}
|
217
|
+
|
218
|
+
.input-group-addon {
|
219
|
+
background-color: $body-bg;
|
220
|
+
border: none;
|
221
|
+
}
|
214
222
|
}
|
215
223
|
|
216
224
|
.has-success {
|
@@ -224,6 +232,11 @@ textarea {
|
|
224
232
|
.form-control:focus {
|
225
233
|
border-color: $brand-success;
|
226
234
|
}
|
235
|
+
|
236
|
+
.input-group-addon {
|
237
|
+
background-color: $body-bg;
|
238
|
+
border: none;
|
239
|
+
}
|
227
240
|
}
|
228
241
|
|
229
242
|
legend {
|
@@ -292,7 +305,7 @@ legend {
|
|
292
305
|
|
293
306
|
& > li.disabled > a,
|
294
307
|
& > li.disabled > a:hover {
|
295
|
-
background-color:
|
308
|
+
background-color: hsla(0, 100%, 100%, 0);
|
296
309
|
@include btn-shadow($btn-default-bg);
|
297
310
|
}
|
298
311
|
}
|
@@ -310,7 +323,7 @@ legend {
|
|
310
323
|
|
311
324
|
& > li.disabled > a,
|
312
325
|
& > li.disabled > a:hover {
|
313
|
-
background-color:
|
326
|
+
background-color: hsla(0, 100%, 100%, 0);
|
314
327
|
@include btn-shadow($btn-default-bg);
|
315
328
|
}
|
316
329
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Slate 3.
|
1
|
+
// Slate 3.2.0
|
2
2
|
// Variables
|
3
3
|
// --------------------------------------------------
|
4
4
|
|
@@ -22,7 +22,7 @@ $brand-danger: #ee5f5b !default;
|
|
22
22
|
|
23
23
|
//== Scaffolding
|
24
24
|
//
|
25
|
-
|
25
|
+
//## Settings for some of the most global styles.
|
26
26
|
|
27
27
|
//** Background color for `<body>`.
|
28
28
|
$body-bg: $gray-darker !default;
|
@@ -34,6 +34,8 @@ $link-color: #fff !default;
|
|
34
34
|
//** Link hover color set via `darken()` function.
|
35
35
|
$link-hover-color: #fff !default;
|
36
36
|
|
37
|
+
$navbar-default-color: $text-color !default;
|
38
|
+
$navbar-default-bg: $gray-dark !default;
|
37
39
|
|
38
40
|
//== Typography
|
39
41
|
//
|
@@ -68,11 +70,30 @@ $headings-line-height: 1.1 !default;
|
|
68
70
|
$headings-color: inherit !default;
|
69
71
|
|
70
72
|
|
73
|
+
//== Iconography
|
74
|
+
//
|
75
|
+
//## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
|
76
|
+
|
77
|
+
//** Load fonts from this directory.
|
78
|
+
//** File name for all font files.
|
79
|
+
$icon-font-name: "glyphicons-halflings-regular" !default;
|
80
|
+
//** Element ID within SVG icon file.
|
81
|
+
$icon-font-svg-id: "glyphicons_halflingsregular" !default;
|
82
|
+
|
83
|
+
|
84
|
+
//== Wells
|
85
|
+
//
|
86
|
+
//##
|
87
|
+
|
88
|
+
$well-bg: darken($body-bg, 5%) !default;
|
89
|
+
$well-border: darken($well-bg, 7%) !default;
|
71
90
|
|
72
91
|
//== Type
|
73
92
|
//
|
74
93
|
//##
|
75
94
|
|
95
|
+
//** Horizontal offset for forms and lists.
|
96
|
+
$component-offset-horizontal: 180px !default;
|
76
97
|
//** Text muted color
|
77
98
|
$text-muted: $gray-light !default;
|
78
99
|
//** Abbreviations and acronyms border color
|
@@ -87,26 +108,13 @@ $blockquote-font-size: ($font-size-base * 1.25) !default;
|
|
87
108
|
$blockquote-border-color: $gray-light !default;
|
88
109
|
//** Page header border color
|
89
110
|
$page-header-border-color: darken($gray-darker, 5%) !default;
|
90
|
-
|
91
|
-
|
92
|
-
//== Miscellaneous
|
93
|
-
//
|
94
|
-
//##
|
95
|
-
|
111
|
+
//** Width of horizontal description list titles
|
112
|
+
$dl-horizontal-offset: $component-offset-horizontal !default;
|
96
113
|
//** Horizontal line color.
|
97
114
|
$hr-border: darken($gray-darker, 5%) !default;
|
98
115
|
|
99
|
-
//** Horizontal offset for forms and lists.
|
100
|
-
$component-offset-horizontal: 180px !default;
|
101
116
|
|
102
117
|
|
103
|
-
//-- Iconography
|
104
|
-
//
|
105
|
-
//## Specify custom locations of the include Glyphicons icon font. Useful for those including Bootstrap via Bower.
|
106
|
-
|
107
|
-
|
108
|
-
$icon-font-name: "glyphicons-halflings-regular" !default;
|
109
|
-
$icon-font-svg-id: "glyphicons_halflingsregular" !default;
|
110
118
|
|
111
119
|
//== Components
|
112
120
|
//
|
@@ -134,7 +142,7 @@ $border-radius-small: 3px !default;
|
|
134
142
|
//** Global color for active items (e.g., navs or dropdowns).
|
135
143
|
$component-active-color: #fff !default;
|
136
144
|
//** Global background color for active items (e.g., navs or dropdowns).
|
137
|
-
$component-active-bg:
|
145
|
+
$component-active-bg: hsla(0, 100%, 100%, 0) !default;
|
138
146
|
|
139
147
|
//** Width of the `border` for generating carets that indicator dropdowns.
|
140
148
|
$caret-width-base: 4px !default;
|
@@ -163,32 +171,158 @@ $table-bg-active: $table-bg-hover !default;
|
|
163
171
|
$table-border-color: darken($gray-darker, 5%) !default;
|
164
172
|
|
165
173
|
|
174
|
+
//== Buttons
|
175
|
+
//
|
176
|
+
//## For each of Bootstrap's buttons, define text, background and border color.
|
177
|
+
|
178
|
+
$btn-font-weight: normal !default;
|
179
|
+
|
180
|
+
$btn-default-color: #fff !default;
|
181
|
+
$btn-default-bg: $navbar-default-bg !default;
|
182
|
+
$btn-default-border: $btn-default-bg !default;
|
183
|
+
|
184
|
+
$btn-primary-color: $btn-default-color !default;
|
185
|
+
$btn-primary-bg: $brand-primary !default;
|
186
|
+
$btn-primary-border: $btn-primary-bg !default;
|
187
|
+
|
188
|
+
$btn-success-color: $btn-default-color !default;
|
189
|
+
$btn-success-bg: $brand-success !default;
|
190
|
+
$btn-success-border: $btn-success-bg !default;
|
191
|
+
|
192
|
+
$btn-info-color: $btn-default-color !default;
|
193
|
+
$btn-info-bg: $brand-info !default;
|
194
|
+
$btn-info-border: $btn-info-bg !default;
|
195
|
+
|
196
|
+
$btn-warning-color: $btn-default-color !default;
|
197
|
+
$btn-warning-bg: $brand-warning !default;
|
198
|
+
$btn-warning-border: $btn-warning-bg !default;
|
199
|
+
|
200
|
+
$btn-danger-color: $btn-default-color !default;
|
201
|
+
$btn-danger-bg: $brand-danger !default;
|
202
|
+
$btn-danger-border: $btn-danger-bg !default;
|
203
|
+
|
204
|
+
$btn-link-disabled-color: $gray-light !default;
|
205
|
+
|
206
|
+
|
207
|
+
//== Forms
|
208
|
+
//
|
209
|
+
//##
|
210
|
+
|
211
|
+
//** `<input>` background color
|
212
|
+
$input-bg: #fff !default;
|
213
|
+
//** `<input disabled>` background color
|
214
|
+
$input-bg-disabled: $gray-lighter !default;
|
215
|
+
|
216
|
+
//** Text color for `<input>`s
|
217
|
+
$input-color: $gray-darker !default;
|
218
|
+
//** `<input>` border color
|
219
|
+
$input-border: #ccc !default;
|
220
|
+
//** `<input>` border radius
|
221
|
+
$input-border-radius: $border-radius-base !default;
|
222
|
+
//** Border color for inputs on focus
|
223
|
+
$input-border-focus: #66afe9 !default;
|
224
|
+
|
225
|
+
//** Placeholder text color
|
226
|
+
$input-color-placeholder: $gray-light !default;
|
227
|
+
|
228
|
+
//** Default `.form-control` height
|
229
|
+
$input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2) !default;
|
230
|
+
//** Large `.form-control` height
|
231
|
+
$input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2) !default;
|
232
|
+
//** Small `.form-control` height
|
233
|
+
$input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
|
234
|
+
|
235
|
+
$legend-color: $text-color !default;
|
236
|
+
$legend-border-color: darken($gray-darker, 5%) !default;
|
237
|
+
|
238
|
+
//** Background color for textual input addons
|
239
|
+
$input-group-addon-bg: $gray-lighter !default;
|
240
|
+
//** Border color for textual input addons
|
241
|
+
$input-group-addon-border-color: $input-border !default;
|
242
|
+
|
243
|
+
|
244
|
+
//== Dropdowns
|
245
|
+
//
|
246
|
+
//## Dropdown menu container and contents.
|
247
|
+
|
248
|
+
//** Background for the dropdown menu.
|
249
|
+
$dropdown-bg: $gray-dark !default;
|
250
|
+
//** Dropdown menu `border-color`.
|
251
|
+
$dropdown-border: rgba(0,0,0,.15) !default;
|
252
|
+
//** Dropdown menu `border-color` **for IE8**.
|
253
|
+
$dropdown-fallback-border: $gray-darker !default;
|
254
|
+
//** Divider color for between dropdown items.
|
255
|
+
$dropdown-divider-bg: $gray-darker !default;
|
256
|
+
|
257
|
+
//** Dropdown link text color.
|
258
|
+
$dropdown-link-color: $text-color !default;
|
259
|
+
//** Hover color for dropdown links.
|
260
|
+
$dropdown-link-hover-color: #fff !default;
|
261
|
+
//** Active dropdown menu item background color.
|
262
|
+
$dropdown-link-active-bg: $gray-darker !default;
|
263
|
+
//** Hover background for dropdown links.
|
264
|
+
$dropdown-link-hover-bg: $dropdown-link-active-bg !default;
|
265
|
+
|
266
|
+
//** Active dropdown menu item text color.
|
267
|
+
$dropdown-link-active-color: #fff !default;
|
268
|
+
|
269
|
+
//** Disabled dropdown menu item background color.
|
270
|
+
$dropdown-link-disabled-color: $text-muted !default;
|
271
|
+
|
272
|
+
//** Text color for headers within dropdown menus.
|
273
|
+
$dropdown-header-color: $text-muted !default;
|
274
|
+
|
275
|
+
//** Deprecated `@dropdown-caret-color` as of v3.1.0
|
276
|
+
$dropdown-caret-color: #000 !default;
|
277
|
+
|
278
|
+
|
279
|
+
//-- Z-index master list
|
280
|
+
//
|
281
|
+
// Warning: Avoid customizing these values. They're used for a bird's eye view
|
282
|
+
// of components dependent on the z-axis and are designed to all work together.
|
283
|
+
//
|
284
|
+
// Note: These variables are not generated into the Customizer.
|
285
|
+
|
286
|
+
$zindex-navbar: 1000 !default;
|
287
|
+
$zindex-dropdown: 1000 !default;
|
288
|
+
$zindex-popover: 1060 !default;
|
289
|
+
$zindex-tooltip: 1070 !default;
|
290
|
+
$zindex-navbar-fixed: 1030 !default;
|
291
|
+
$zindex-modal-background: 1040 !default;
|
292
|
+
$zindex-modal: 1050 !default;
|
293
|
+
|
294
|
+
|
166
295
|
//== Media queries breakpoints
|
167
296
|
//
|
168
297
|
//## Define the breakpoints at which your layout will change, adapting to different screen sizes.
|
169
298
|
|
170
299
|
// Extra small screen / phone
|
171
|
-
|
300
|
+
//** Deprecated `@screen-xs` as of v3.0.1
|
172
301
|
$screen-xs: 480px !default;
|
302
|
+
//** Deprecated `@screen-xs-min` as of v3.2.0
|
173
303
|
$screen-xs-min: $screen-xs !default;
|
304
|
+
//** Deprecated `@screen-phone` as of v3.0.1
|
174
305
|
$screen-phone: $screen-xs-min !default;
|
175
306
|
|
176
307
|
// Small screen / tablet
|
177
|
-
|
308
|
+
//** Deprecated `@screen-sm` as of v3.0.1
|
178
309
|
$screen-sm: 768px !default;
|
179
310
|
$screen-sm-min: $screen-sm !default;
|
311
|
+
//** Deprecated `@screen-tablet` as of v3.0.1
|
180
312
|
$screen-tablet: $screen-sm-min !default;
|
181
313
|
|
182
314
|
// Medium screen / desktop
|
183
|
-
|
315
|
+
//** Deprecated `@screen-md` as of v3.0.1
|
184
316
|
$screen-md: 992px !default;
|
185
317
|
$screen-md-min: $screen-md !default;
|
318
|
+
//** Deprecated `@screen-desktop` as of v3.0.1
|
186
319
|
$screen-desktop: $screen-md-min !default;
|
187
320
|
|
188
321
|
// Large screen / wide desktop
|
189
|
-
|
322
|
+
//** Deprecated `@screen-lg` as of v3.0.1
|
190
323
|
$screen-lg: 1200px !default;
|
191
324
|
$screen-lg-min: $screen-lg !default;
|
325
|
+
//** Deprecated `@screen-lg-desktop` as of v3.0.1
|
192
326
|
$screen-lg-desktop: $screen-lg-min !default;
|
193
327
|
|
194
328
|
// So media queries don't overlap when required, provide a maximum
|
@@ -197,7 +331,6 @@ $screen-sm-max: ($screen-md-min - 1) !default;
|
|
197
331
|
$screen-md-max: ($screen-lg-min - 1) !default;
|
198
332
|
|
199
333
|
|
200
|
-
|
201
334
|
//== Grid system
|
202
335
|
//
|
203
336
|
//## Define your custom responsive grid.
|
@@ -233,7 +366,6 @@ $container-large-desktop: ((1140px + $grid-gutter-width)) !default;
|
|
233
366
|
$container-lg: $container-large-desktop !default;
|
234
367
|
|
235
368
|
|
236
|
-
|
237
369
|
//== Navbar
|
238
370
|
//
|
239
371
|
//##
|
@@ -245,9 +377,6 @@ $navbar-border-radius: $border-radius-base !default;
|
|
245
377
|
$navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;
|
246
378
|
$navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;
|
247
379
|
$navbar-collapse-max-height: 340px !default;
|
248
|
-
|
249
|
-
$navbar-default-color: $text-color !default;
|
250
|
-
$navbar-default-bg: $gray-dark !default;
|
251
380
|
$navbar-default-border: darken($navbar-default-bg, 6.5%) !default;
|
252
381
|
|
253
382
|
// Navbar links
|
@@ -257,7 +386,7 @@ $navbar-default-link-hover-bg: darken($navbar-default-bg, 8%) !defau
|
|
257
386
|
$navbar-default-link-active-color: #fff !default;
|
258
387
|
$navbar-default-link-active-bg: darken($navbar-default-bg, 8%) !default;
|
259
388
|
$navbar-default-link-disabled-color: #ccc !default;
|
260
|
-
$navbar-default-link-disabled-bg:
|
389
|
+
$navbar-default-link-disabled-bg: hsla(0, 100%, 100%, 0) !default;
|
261
390
|
|
262
391
|
// Navbar brand label
|
263
392
|
$navbar-default-brand-color: $navbar-default-link-color !default;
|
@@ -283,7 +412,7 @@ $navbar-inverse-link-hover-bg: darken($navbar-inverse-bg, 12%) !def
|
|
283
412
|
$navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default;
|
284
413
|
$navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 12%) !default;
|
285
414
|
$navbar-inverse-link-disabled-color: #ccc !default;
|
286
|
-
$navbar-inverse-link-disabled-bg:
|
415
|
+
$navbar-inverse-link-disabled-bg: hsla(0, 100%, 100%, 0) !default;
|
287
416
|
|
288
417
|
// Inverted navbar brand label
|
289
418
|
$navbar-inverse-brand-color: $navbar-inverse-link-color !default;
|
@@ -327,128 +456,6 @@ $nav-pills-active-link-hover-bg: $component-active-bg !default;
|
|
327
456
|
$nav-pills-active-link-hover-color: $component-active-color !default;
|
328
457
|
|
329
458
|
|
330
|
-
|
331
|
-
//== Buttons
|
332
|
-
//
|
333
|
-
//## For each of Bootstrap's buttons, define text, background and border color.
|
334
|
-
|
335
|
-
$btn-font-weight: normal !default;
|
336
|
-
|
337
|
-
$btn-default-color: #fff !default;
|
338
|
-
$btn-default-bg: $navbar-default-bg !default;
|
339
|
-
$btn-default-border: $btn-default-bg !default;
|
340
|
-
|
341
|
-
$btn-primary-color: $btn-default-color !default;
|
342
|
-
$btn-primary-bg: $brand-primary !default;
|
343
|
-
$btn-primary-border: $btn-primary-bg !default;
|
344
|
-
|
345
|
-
$btn-success-color: $btn-default-color !default;
|
346
|
-
$btn-success-bg: $brand-success !default;
|
347
|
-
$btn-success-border: $btn-success-bg !default;
|
348
|
-
|
349
|
-
$btn-info-color: $btn-default-color !default;
|
350
|
-
$btn-info-bg: $brand-info !default;
|
351
|
-
$btn-info-border: $btn-info-bg !default;
|
352
|
-
|
353
|
-
$btn-warning-color: $btn-default-color !default;
|
354
|
-
$btn-warning-bg: $brand-warning !default;
|
355
|
-
$btn-warning-border: $btn-warning-bg !default;
|
356
|
-
|
357
|
-
$btn-danger-color: $btn-default-color !default;
|
358
|
-
$btn-danger-bg: $brand-danger !default;
|
359
|
-
$btn-danger-border: $btn-danger-bg !default;
|
360
|
-
|
361
|
-
$btn-link-disabled-color: $gray-light !default;
|
362
|
-
|
363
|
-
|
364
|
-
//== Forms
|
365
|
-
//
|
366
|
-
//##
|
367
|
-
|
368
|
-
//** `<input>` background color
|
369
|
-
$input-bg: #fff !default;
|
370
|
-
//** `<input disabled>` background color
|
371
|
-
$input-bg-disabled: $gray-lighter !default;
|
372
|
-
|
373
|
-
//** Text color for `<input>`s
|
374
|
-
$input-color: $gray-darker !default;
|
375
|
-
//** `<input>` border color
|
376
|
-
$input-border: #ccc !default;
|
377
|
-
//** `<input>` border radius
|
378
|
-
$input-border-radius: $border-radius-base !default;
|
379
|
-
//** Border color for inputs on focus
|
380
|
-
$input-border-focus: #66afe9 !default;
|
381
|
-
|
382
|
-
//** Placeholder text color
|
383
|
-
$input-color-placeholder: $gray-light !default;
|
384
|
-
|
385
|
-
//** Default `.form-control` height
|
386
|
-
$input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2) !default;
|
387
|
-
//** Large `.form-control` height
|
388
|
-
$input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2) !default;
|
389
|
-
//** Small `.form-control` height
|
390
|
-
$input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
|
391
|
-
|
392
|
-
$legend-color: $text-color !default;
|
393
|
-
$legend-border-color: darken($gray-darker, 5%) !default;
|
394
|
-
|
395
|
-
//** Background color for textual input addons
|
396
|
-
$input-group-addon-bg: $gray-lighter !default;
|
397
|
-
//** Border color for textual input addons
|
398
|
-
$input-group-addon-border-color: $input-border !default;
|
399
|
-
|
400
|
-
|
401
|
-
//== Dropdowns
|
402
|
-
//
|
403
|
-
//## Dropdown menu container and contents.
|
404
|
-
|
405
|
-
//** Background for the dropdown menu.
|
406
|
-
$dropdown-bg: $gray-dark !default;
|
407
|
-
//** Dropdown menu `border-color`.
|
408
|
-
$dropdown-border: rgba(0,0,0,.15) !default;
|
409
|
-
//** Dropdown menu `border-color` **for IE8**.
|
410
|
-
$dropdown-fallback-border: $gray-darker !default;
|
411
|
-
//** Divider color for between dropdown items.
|
412
|
-
$dropdown-divider-bg: $gray-darker !default;
|
413
|
-
|
414
|
-
//** Active dropdown menu item text color.
|
415
|
-
$dropdown-link-active-color: #fff !default;
|
416
|
-
//** Active dropdown menu item background color.
|
417
|
-
$dropdown-link-active-bg: $gray-darker !default;
|
418
|
-
|
419
|
-
//** Dropdown link text color.
|
420
|
-
$dropdown-link-color: $text-color !default;
|
421
|
-
//** Hover color for dropdown links.
|
422
|
-
$dropdown-link-hover-color: #fff !default;
|
423
|
-
//** Hover background for dropdown links.
|
424
|
-
$dropdown-link-hover-bg: $dropdown-link-active-bg !default;
|
425
|
-
|
426
|
-
//** Disabled dropdown menu item background color.
|
427
|
-
$dropdown-link-disabled-color: $text-muted !default;
|
428
|
-
|
429
|
-
//** Text color for headers within dropdown menus.
|
430
|
-
$dropdown-header-color: $text-muted !default;
|
431
|
-
|
432
|
-
// Note: Deprecated @dropdown-caret-color as of v3.1.0
|
433
|
-
$dropdown-caret-color: #000 !default;
|
434
|
-
|
435
|
-
|
436
|
-
//-- Z-index master list
|
437
|
-
//
|
438
|
-
// Warning: Avoid customizing these values. They're used for a bird's eye view
|
439
|
-
// of components dependent on the z-axis and are designed to all work together.
|
440
|
-
//
|
441
|
-
// Note: These variables are not generated into the Customizer.
|
442
|
-
|
443
|
-
$zindex-navbar: 1000 !default;
|
444
|
-
$zindex-dropdown: 1000 !default;
|
445
|
-
$zindex-popover: 1010 !default;
|
446
|
-
$zindex-tooltip: 1030 !default;
|
447
|
-
$zindex-navbar-fixed: 1030 !default;
|
448
|
-
$zindex-modal-background: 1040 !default;
|
449
|
-
$zindex-modal: 1050 !default;
|
450
|
-
|
451
|
-
|
452
459
|
//== Pagination
|
453
460
|
//
|
454
461
|
//##
|
@@ -458,7 +465,7 @@ $pagination-bg: $btn-default-bg !default;
|
|
458
465
|
$pagination-border: rgba(0, 0, 0, 0.6) !default;
|
459
466
|
|
460
467
|
$pagination-hover-color: $link-hover-color !default;
|
461
|
-
$pagination-hover-bg:
|
468
|
+
$pagination-hover-bg: hsla(0, 100%, 100%, 0) !default;
|
462
469
|
$pagination-hover-border: rgba(0, 0, 0, 0.6) !default;
|
463
470
|
|
464
471
|
$pagination-active-color: #fff !default;
|
@@ -678,17 +685,26 @@ $list-group-border: rgba(0, 0, 0, 0.6) !default;
|
|
678
685
|
//** List group border radius
|
679
686
|
$list-group-border-radius: $border-radius-base !default;
|
680
687
|
|
681
|
-
//** Background color of single list
|
688
|
+
//** Background color of single list items on hover
|
682
689
|
$list-group-hover-bg: lighten($body-bg, 10%) !default;
|
683
|
-
//** Text color of active list
|
690
|
+
//** Text color of active list items
|
684
691
|
$list-group-active-color: $component-active-color !default;
|
685
|
-
//** Background color of active list
|
692
|
+
//** Background color of active list items
|
686
693
|
$list-group-active-bg: lighten($body-bg, 10%) !default;
|
687
694
|
//** Border color of active list elements
|
688
695
|
$list-group-active-border: $list-group-border !default;
|
696
|
+
//** Text color for content within active list items
|
689
697
|
$list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
|
690
698
|
|
699
|
+
//** Text color of disabled list items
|
700
|
+
$list-group-disabled-color: $gray-light !default;
|
701
|
+
//** Background color of disabled list items
|
702
|
+
$list-group-disabled-bg: $gray-lighter !default;
|
703
|
+
//** Text color for content within disabled list items
|
704
|
+
$list-group-disabled-text-color: $list-group-disabled-color !default;
|
705
|
+
|
691
706
|
$list-group-link-color: $text-color !default;
|
707
|
+
$list-group-link-hover-color: $list-group-link-color !default;
|
692
708
|
$list-group-link-heading-color: #fff !default;
|
693
709
|
|
694
710
|
|
@@ -698,16 +714,18 @@ $list-group-link-heading-color: #fff !default;
|
|
698
714
|
|
699
715
|
$panel-bg: lighten($body-bg, 3%) !default;
|
700
716
|
$panel-body-padding: 15px !default;
|
717
|
+
$panel-heading-padding: 10px 15px !default;
|
718
|
+
$panel-footer-padding: $panel-heading-padding !default;
|
701
719
|
$panel-border-radius: $border-radius-base !default;
|
702
720
|
|
703
|
-
$panel-default-text: $text-color !default;
|
704
|
-
$panel-default-border: rgba(0, 0, 0, 0.6) !default;
|
705
|
-
$panel-default-heading-bg: lighten($body-bg, 10%) !default;
|
706
|
-
|
707
721
|
//** Border color for elements within panels
|
708
722
|
$panel-inner-border: rgba(0, 0, 0, 0.6) !default;
|
723
|
+
$panel-default-heading-bg: lighten($body-bg, 10%) !default;
|
709
724
|
$panel-footer-bg: $panel-default-heading-bg !default;
|
710
725
|
|
726
|
+
$panel-default-text: $text-color !default;
|
727
|
+
$panel-default-border: rgba(0, 0, 0, 0.6) !default;
|
728
|
+
|
711
729
|
$panel-primary-text: #fff !default;
|
712
730
|
$panel-primary-border: $panel-default-border !default;
|
713
731
|
$panel-primary-heading-bg: $brand-primary !default;
|
@@ -729,14 +747,6 @@ $panel-danger-border: $panel-default-border !default;
|
|
729
747
|
$panel-danger-heading-bg: $state-danger-bg !default;
|
730
748
|
|
731
749
|
|
732
|
-
//== Wells
|
733
|
-
//
|
734
|
-
//##
|
735
|
-
|
736
|
-
$well-bg: darken($body-bg, 5%) !default;
|
737
|
-
$well-border: darken($well-bg, 7%) !default;
|
738
|
-
|
739
|
-
|
740
750
|
//== Thumbnails
|
741
751
|
//
|
742
752
|
//##
|
@@ -782,7 +792,7 @@ $badge-border-radius: 10px !default;
|
|
782
792
|
$breadcrumb-padding-vertical: 8px !default;
|
783
793
|
$breadcrumb-padding-horizontal: 15px !default;
|
784
794
|
//** Breadcrumb background color
|
785
|
-
$breadcrumb-bg:
|
795
|
+
$breadcrumb-bg: hsla(0, 100%, 100%, 0) !default;
|
786
796
|
//** Breadcrumb text color
|
787
797
|
$breadcrumb-color: #ccc !default;
|
788
798
|
//** Text color of current page in the breadcrumb
|
@@ -831,3 +841,4 @@ $pre-bg: #f5f5f5 !default;
|
|
831
841
|
$pre-color: $gray-dark !default;
|
832
842
|
$pre-border-color: #ccc !default;
|
833
843
|
$pre-scrollable-max-height: 340px !default;
|
844
|
+
|