bootswatch 4.0.0.alpha6 → 4.0.0.beta2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/Rakefile +2 -3
- data/app/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +16 -10
- data/app/assets/stylesheets/bootswatch/cerulean/_variables.scss +41 -945
- data/app/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +2 -5
- data/app/assets/stylesheets/bootswatch/cosmo/_variables.scss +45 -940
- data/app/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +117 -12
- data/app/assets/stylesheets/bootswatch/cyborg/_variables.scss +91 -887
- data/app/assets/stylesheets/bootswatch/darkly/_bootswatch.scss +88 -39
- data/app/assets/stylesheets/bootswatch/darkly/_variables.scss +87 -895
- data/app/assets/stylesheets/bootswatch/flatly/_bootswatch.scss +106 -18
- data/app/assets/stylesheets/bootswatch/flatly/_variables.scss +70 -920
- data/app/assets/stylesheets/bootswatch/journal/_bootswatch.scss +15 -11
- data/app/assets/stylesheets/bootswatch/journal/_variables.scss +43 -944
- data/app/assets/stylesheets/bootswatch/litera/_bootswatch.scss +106 -14
- data/app/assets/stylesheets/bootswatch/litera/_variables.scss +49 -933
- data/app/assets/stylesheets/bootswatch/lumen/_bootswatch.scss +148 -46
- data/app/assets/stylesheets/bootswatch/lumen/_variables.scss +49 -935
- data/app/assets/stylesheets/bootswatch/lux/_bootswatch.scss +8 -8
- data/app/assets/stylesheets/bootswatch/lux/_variables.scss +70 -921
- data/app/assets/stylesheets/bootswatch/materia/_bootswatch.scss +126 -58
- data/app/assets/stylesheets/bootswatch/materia/_variables.scss +58 -925
- data/app/assets/stylesheets/bootswatch/minty/_bootswatch.scss +160 -14
- data/app/assets/stylesheets/bootswatch/minty/_variables.scss +65 -931
- data/app/assets/stylesheets/bootswatch/pulse/_bootswatch.scss +50 -12
- data/app/assets/stylesheets/bootswatch/pulse/_variables.scss +63 -922
- data/app/assets/stylesheets/bootswatch/sandstone/_bootswatch.scss +66 -15
- data/app/assets/stylesheets/bootswatch/sandstone/_variables.scss +82 -904
- data/app/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +42 -11
- data/app/assets/stylesheets/bootswatch/simplex/_variables.scss +61 -912
- data/app/assets/stylesheets/bootswatch/sketchy/_bootswatch.scss +405 -0
- data/app/assets/stylesheets/bootswatch/sketchy/_variables.scss +163 -0
- data/app/assets/stylesheets/bootswatch/slate/_bootswatch.scss +191 -55
- data/app/assets/stylesheets/bootswatch/slate/_variables.scss +88 -893
- data/app/assets/stylesheets/bootswatch/solar/_bootswatch.scss +95 -11
- data/app/assets/stylesheets/bootswatch/solar/_variables.scss +99 -891
- data/app/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +59 -28
- data/app/assets/stylesheets/bootswatch/spacelab/_variables.scss +43 -943
- data/app/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +104 -13
- data/app/assets/stylesheets/bootswatch/superhero/_variables.scss +84 -907
- data/app/assets/stylesheets/bootswatch/united/_bootswatch.scss +11 -8
- data/app/assets/stylesheets/bootswatch/united/_variables.scss +38 -948
- data/app/assets/stylesheets/bootswatch/yeti/_bootswatch.scss +161 -41
- data/app/assets/stylesheets/bootswatch/yeti/_variables.scss +64 -917
- data/lib/bootswatch/version.rb +1 -1
- metadata +5 -5
- data/app/assets/stylesheets/bootswatch/custom/_bootswatch.scss +0 -21
- data/app/assets/stylesheets/bootswatch/custom/_variables.scss +0 -961
@@ -0,0 +1,405 @@
|
|
1
|
+
// Sketchy 4.0.0
|
2
|
+
// Bootswatch
|
3
|
+
|
4
|
+
|
5
|
+
// Variables ===================================================================
|
6
|
+
|
7
|
+
$web-font-path: "https://fonts.googleapis.com/css?family=Neucha|Cabin+Sketch" !default;
|
8
|
+
@import url($web-font-path);
|
9
|
+
|
10
|
+
// Navbar ======================================================================
|
11
|
+
|
12
|
+
.navbar {
|
13
|
+
border-width: 2px;
|
14
|
+
border-style: solid;
|
15
|
+
border-radius: 25px 25px 55px 5px/5px 55px 25px 25px;
|
16
|
+
|
17
|
+
&.bg-light {
|
18
|
+
border-color: $gray-800;
|
19
|
+
}
|
20
|
+
|
21
|
+
&.fixed-top {
|
22
|
+
border-radius: 0 25px 225px 0/25px 0 25px 255px;
|
23
|
+
border-width: 0 0 2px 0;
|
24
|
+
}
|
25
|
+
|
26
|
+
&.fixed-bottom {
|
27
|
+
border-radius: 255px 25px 0 25px/25px 225px 25px 0;
|
28
|
+
border-width: 2px 0 0 0;
|
29
|
+
}
|
30
|
+
|
31
|
+
&-brand {
|
32
|
+
font-family: $headings-font-family;
|
33
|
+
font-weight: normal;
|
34
|
+
text-decoration: none;
|
35
|
+
}
|
36
|
+
}
|
37
|
+
|
38
|
+
// Buttons =====================================================================
|
39
|
+
|
40
|
+
.btn {
|
41
|
+
border-radius: $border-radius;
|
42
|
+
text-decoration: none;
|
43
|
+
|
44
|
+
&-warning {
|
45
|
+
color: $white;
|
46
|
+
}
|
47
|
+
}
|
48
|
+
|
49
|
+
// Typography ==================================================================
|
50
|
+
|
51
|
+
button, input, optgroup, select, textarea {
|
52
|
+
font-family: $font-family-sans-serif;
|
53
|
+
}
|
54
|
+
|
55
|
+
blockquote {
|
56
|
+
border-radius: 15px 27px 25px 25px/25px 25px 305px 635px;
|
57
|
+
}
|
58
|
+
|
59
|
+
// Tables ======================================================================
|
60
|
+
|
61
|
+
table {
|
62
|
+
th,
|
63
|
+
td {
|
64
|
+
background-color: #fff;
|
65
|
+
}
|
66
|
+
}
|
67
|
+
|
68
|
+
.table-bordered {
|
69
|
+
background-color: $gray-800;
|
70
|
+
border-collapse: separate;
|
71
|
+
border-spacing: 0;
|
72
|
+
border-radius: 5px 25px 5px 25px/25px 5px 25px 5px;
|
73
|
+
overflow: hidden;
|
74
|
+
|
75
|
+
th,
|
76
|
+
td {
|
77
|
+
border-radius: 5px 5px 25px 4px/5px 4px 3px 5px;
|
78
|
+
}
|
79
|
+
|
80
|
+
.table-success,
|
81
|
+
.table-success:hover {
|
82
|
+
td, th {
|
83
|
+
background-color: $success;
|
84
|
+
color: $white;
|
85
|
+
}
|
86
|
+
}
|
87
|
+
|
88
|
+
.table-info,
|
89
|
+
.table-info:hover {
|
90
|
+
td, th {
|
91
|
+
background-color: $info;
|
92
|
+
color: $white;
|
93
|
+
}
|
94
|
+
}
|
95
|
+
|
96
|
+
.table-warning,
|
97
|
+
.table-warning:hover {
|
98
|
+
td, th {
|
99
|
+
background-color: $warning;
|
100
|
+
color: $white;
|
101
|
+
}
|
102
|
+
}
|
103
|
+
|
104
|
+
.table-danger,
|
105
|
+
.table-danger:hover {
|
106
|
+
td, th {
|
107
|
+
background-color: $danger;
|
108
|
+
color: $white;
|
109
|
+
}
|
110
|
+
}
|
111
|
+
}
|
112
|
+
|
113
|
+
// Forms =======================================================================
|
114
|
+
|
115
|
+
input,
|
116
|
+
.form-control {
|
117
|
+
border-radius: $border-radius;
|
118
|
+
}
|
119
|
+
|
120
|
+
textarea,
|
121
|
+
textarea.form-control,
|
122
|
+
select,
|
123
|
+
select.form-control {
|
124
|
+
border-radius: $border-radius-lg !important;
|
125
|
+
}
|
126
|
+
|
127
|
+
[type="checkbox"] {
|
128
|
+
position: relative;
|
129
|
+
appearance: none;
|
130
|
+
cursor: pointer;
|
131
|
+
|
132
|
+
&:before {
|
133
|
+
content: "";
|
134
|
+
position: absolute;
|
135
|
+
left: -1.2em;
|
136
|
+
top: -0.9em;
|
137
|
+
display: inline-block;
|
138
|
+
width: 15px;
|
139
|
+
height: 16px;
|
140
|
+
border: 2px solid $gray-800;
|
141
|
+
border-radius: 2px 8px 2px 4px / 5px 3px 5px 3px;
|
142
|
+
}
|
143
|
+
|
144
|
+
&:checked:after {
|
145
|
+
content: "x";
|
146
|
+
position: absolute;
|
147
|
+
left: 4px;
|
148
|
+
top: -7px;
|
149
|
+
font-size: 1.5rem;
|
150
|
+
color: $gray-800;
|
151
|
+
}
|
152
|
+
|
153
|
+
&:disabled {
|
154
|
+
&:before {
|
155
|
+
border: 2px solid $gray-500;
|
156
|
+
}
|
157
|
+
}
|
158
|
+
}
|
159
|
+
|
160
|
+
[type="radio"] {
|
161
|
+
position: relative;
|
162
|
+
appearance: none;
|
163
|
+
cursor: pointer;
|
164
|
+
|
165
|
+
&:before {
|
166
|
+
content: "";
|
167
|
+
position: absolute;
|
168
|
+
left: -1.2em;
|
169
|
+
top: -0.9em;
|
170
|
+
display: inline-block;
|
171
|
+
width: 16px;
|
172
|
+
height: 16px;
|
173
|
+
border: 2px solid $gray-800;
|
174
|
+
border-radius: 50% 45% 40% 50% / 40% 50% 50% 45%;
|
175
|
+
}
|
176
|
+
|
177
|
+
&:checked:before {
|
178
|
+
background-color: $gray-800;
|
179
|
+
}
|
180
|
+
|
181
|
+
&:disabled {
|
182
|
+
&:before {
|
183
|
+
border: 2px solid $gray-500;
|
184
|
+
}
|
185
|
+
}
|
186
|
+
}
|
187
|
+
|
188
|
+
.form-check-label {
|
189
|
+
padding-left: 2.5rem;
|
190
|
+
}
|
191
|
+
|
192
|
+
// Navs ========================================================================
|
193
|
+
|
194
|
+
.dropdown-menu {
|
195
|
+
border-radius: 555px 25px 25px 25px/25px 25px 25px 555px;
|
196
|
+
overflow: hidden;
|
197
|
+
}
|
198
|
+
|
199
|
+
.dropdown-divider {
|
200
|
+
border-top-width: 2px;
|
201
|
+
}
|
202
|
+
|
203
|
+
.list-group {
|
204
|
+
background-color: $gray-800;
|
205
|
+
border: 2px solid $gray-800;
|
206
|
+
border-radius: 45px 15px 35px 5px/15px 5px 15px 65px;
|
207
|
+
overflow: hidden;
|
208
|
+
|
209
|
+
&-item {
|
210
|
+
border-left: none;
|
211
|
+
border-right: none;
|
212
|
+
border-top: 2px solid $gray-800;
|
213
|
+
border-radius: 255px 5px 225px 5px/25px 225px 25px 255px;
|
214
|
+
|
215
|
+
&:first-child {
|
216
|
+
border-top: none;
|
217
|
+
}
|
218
|
+
|
219
|
+
&:last-child {
|
220
|
+
border-bottom: none;
|
221
|
+
}
|
222
|
+
|
223
|
+
&:hover .list-group-item-heading {
|
224
|
+
color: $white;
|
225
|
+
}
|
226
|
+
}
|
227
|
+
}
|
228
|
+
|
229
|
+
.nav-link,
|
230
|
+
.page-link,
|
231
|
+
.list-group-item,
|
232
|
+
.dropdown-item {
|
233
|
+
text-decoration: none;
|
234
|
+
}
|
235
|
+
|
236
|
+
.nav-tabs {
|
237
|
+
.nav-link {
|
238
|
+
border-radius: 45px 15px 225px 5px/25px 225px 25px 255px;
|
239
|
+
}
|
240
|
+
}
|
241
|
+
|
242
|
+
.breadcrumb {
|
243
|
+
border: 2px solid $gray-800;
|
244
|
+
}
|
245
|
+
|
246
|
+
.pagination {
|
247
|
+
.page-link {
|
248
|
+
border-radius: 425px 255px 25px 25px/25px 25px 5px 25px;
|
249
|
+
}
|
250
|
+
}
|
251
|
+
|
252
|
+
// Indicators ==================================================================
|
253
|
+
|
254
|
+
.progress {
|
255
|
+
border: 2px solid $gray-800;
|
256
|
+
}
|
257
|
+
|
258
|
+
.badge {
|
259
|
+
&-pill {
|
260
|
+
border-radius: 7rem 8rem 8rem 8rem / 4rem 5rem 6rem 6rem;
|
261
|
+
}
|
262
|
+
|
263
|
+
&-warning {
|
264
|
+
color: $white;
|
265
|
+
}
|
266
|
+
}
|
267
|
+
|
268
|
+
.alert {
|
269
|
+
&-dismissible {
|
270
|
+
.close {
|
271
|
+
color: transparent;
|
272
|
+
|
273
|
+
&:before {
|
274
|
+
right: 1rem;
|
275
|
+
top: 0.8rem;
|
276
|
+
}
|
277
|
+
}
|
278
|
+
|
279
|
+
&.alert-success {
|
280
|
+
border-color: $success;
|
281
|
+
|
282
|
+
&,
|
283
|
+
.alert-link,
|
284
|
+
.close:before {
|
285
|
+
color: $success;
|
286
|
+
}
|
287
|
+
}
|
288
|
+
|
289
|
+
&.alert-info {
|
290
|
+
border-color: $info;
|
291
|
+
|
292
|
+
&,
|
293
|
+
.alert-link,
|
294
|
+
.close:before {
|
295
|
+
color: $info;
|
296
|
+
}
|
297
|
+
}
|
298
|
+
|
299
|
+
&.alert-warning {
|
300
|
+
border-color: $warning;
|
301
|
+
|
302
|
+
&,
|
303
|
+
.alert-link,
|
304
|
+
.close:before {
|
305
|
+
color: $warning;
|
306
|
+
}
|
307
|
+
}
|
308
|
+
|
309
|
+
&.alert-danger {
|
310
|
+
border-color: $danger;
|
311
|
+
|
312
|
+
&,
|
313
|
+
.alert-link,
|
314
|
+
.close:before {
|
315
|
+
color: $danger;
|
316
|
+
}
|
317
|
+
}
|
318
|
+
}
|
319
|
+
}
|
320
|
+
|
321
|
+
// Progress bars ===============================================================
|
322
|
+
|
323
|
+
// Containers ==================================================================
|
324
|
+
|
325
|
+
.card {
|
326
|
+
border-color: transparent;
|
327
|
+
border-radius: 5px 5px 5px 5px/25px 25px 25px 5px;
|
328
|
+
overflow: hidden;
|
329
|
+
|
330
|
+
&-outline {
|
331
|
+
&-primary,
|
332
|
+
&-success,
|
333
|
+
&-info,
|
334
|
+
&-warning,
|
335
|
+
&-danger {
|
336
|
+
border-width: 2px;
|
337
|
+
}
|
338
|
+
}
|
339
|
+
|
340
|
+
&-header {
|
341
|
+
border-bottom-width: 2px;
|
342
|
+
}
|
343
|
+
|
344
|
+
&-footer {
|
345
|
+
border-top-width: 2px;
|
346
|
+
}
|
347
|
+
}
|
348
|
+
|
349
|
+
.jumbotron {
|
350
|
+
border: 2px solid $gray-800;
|
351
|
+
}
|
352
|
+
|
353
|
+
.modal {
|
354
|
+
&-content {
|
355
|
+
border-radius: 15px 5px 5px 25px/5px 25px 25px 5px;
|
356
|
+
}
|
357
|
+
}
|
358
|
+
|
359
|
+
.popover {
|
360
|
+
padding: 0;
|
361
|
+
border-radius: 45px 85px 15px 25px/15px 10px 35px 555px;
|
362
|
+
|
363
|
+
&-title {
|
364
|
+
border-bottom: 2px solid $gray-800;
|
365
|
+
}
|
366
|
+
|
367
|
+
&.popover-left::before,
|
368
|
+
&.bs-tether-element-attached-right::before {
|
369
|
+
right: -13px;
|
370
|
+
}
|
371
|
+
|
372
|
+
&.popover-top::before,
|
373
|
+
&.bs-tether-element-attached-bottom::before {
|
374
|
+
bottom: -13px;
|
375
|
+
}
|
376
|
+
|
377
|
+
&.popover-bottom::before,
|
378
|
+
&.bs-tether-element-attached-top::before {
|
379
|
+
top: -13px;
|
380
|
+
}
|
381
|
+
|
382
|
+
&.popover-right::before,
|
383
|
+
&.bs-tether-element-attached-left::before {
|
384
|
+
left: -13px;
|
385
|
+
}
|
386
|
+
}
|
387
|
+
|
388
|
+
pre {
|
389
|
+
border: 2px solid $gray-800;
|
390
|
+
border-radius: 15px 5px 5px 25px/5px 25px 25px 5px;
|
391
|
+
}
|
392
|
+
|
393
|
+
.close,
|
394
|
+
.close:hover,
|
395
|
+
.close:focus,
|
396
|
+
.close:active {
|
397
|
+
position: relative;
|
398
|
+
opacity: 1;
|
399
|
+
|
400
|
+
&:before {
|
401
|
+
position: absolute;
|
402
|
+
content: "X";
|
403
|
+
color: $gray-800;
|
404
|
+
}
|
405
|
+
}
|
@@ -0,0 +1,163 @@
|
|
1
|
+
// Sketchy 4.0.0
|
2
|
+
// Bootswatch
|
3
|
+
|
4
|
+
//
|
5
|
+
// Color system
|
6
|
+
//
|
7
|
+
|
8
|
+
$white: #fff !default;
|
9
|
+
$gray-100: #f8f9fa !default;
|
10
|
+
$gray-200: #f7f7f9 !default;
|
11
|
+
$gray-300: #dee2e6 !default;
|
12
|
+
$gray-400: #ccc !default;
|
13
|
+
$gray-500: #aaa !default;
|
14
|
+
$gray-600: #868e96 !default;
|
15
|
+
$gray-700: #555 !default;
|
16
|
+
$gray-800: #333 !default;
|
17
|
+
$gray-900: #212529 !default;
|
18
|
+
$black: #000 !default;
|
19
|
+
|
20
|
+
$blue: #007bff !default;
|
21
|
+
$indigo: #6610f2 !default;
|
22
|
+
$purple: #6f42c1 !default;
|
23
|
+
$pink: #e83e8c !default;
|
24
|
+
$red: #dc3545 !default;
|
25
|
+
$orange: #fd7e14 !default;
|
26
|
+
$yellow: #ffc107 !default;
|
27
|
+
$green: #28a745 !default;
|
28
|
+
$teal: #20c997 !default;
|
29
|
+
$cyan: #17a2b8 !default;
|
30
|
+
|
31
|
+
$primary: $gray-800 !default;
|
32
|
+
$secondary: $gray-700 !default;
|
33
|
+
$success: $green !default;
|
34
|
+
$info: $cyan !default;
|
35
|
+
$warning: $yellow !default;
|
36
|
+
$danger: $red !default;
|
37
|
+
$light: $white !default;
|
38
|
+
$dark: $gray-700;
|
39
|
+
|
40
|
+
// Links
|
41
|
+
|
42
|
+
$link-decoration: underline !default;
|
43
|
+
|
44
|
+
// Components
|
45
|
+
|
46
|
+
$border-width: 2px !default;
|
47
|
+
|
48
|
+
$border-radius: 255px 25px 225px 25px/25px 225px 25px 255px !default;
|
49
|
+
$border-radius-lg: 555px 25px 15px 25px/25px 5px 35px 555px !default;
|
50
|
+
$border-radius-sm: 255px 25px 225px 25px/25px 225px 25px 255px !default;
|
51
|
+
|
52
|
+
// Fonts
|
53
|
+
|
54
|
+
$font-family-sans-serif: 'Neucha', -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !default;
|
55
|
+
|
56
|
+
$font-weight-base: 700 !default;
|
57
|
+
|
58
|
+
$headings-font-family: 'Cabin Sketch', cursive !default;
|
59
|
+
|
60
|
+
$blockquote-small-color: $gray-800 !default;
|
61
|
+
|
62
|
+
// Tables
|
63
|
+
|
64
|
+
$table-accent-bg: $gray-400 !default;
|
65
|
+
$table-hover-bg: $white !default;
|
66
|
+
|
67
|
+
$table-border-width: 1px !default;
|
68
|
+
$table-border-color: $gray-800 !default;
|
69
|
+
|
70
|
+
// Forms
|
71
|
+
|
72
|
+
$input-border-color: $gray-800 !default;
|
73
|
+
|
74
|
+
$input-focus-border-color: $input-border-color !default;
|
75
|
+
|
76
|
+
// Dropdowns
|
77
|
+
|
78
|
+
$dropdown-border-color: $gray-800 !default;
|
79
|
+
$dropdown-divider-bg: $gray-800 !default;
|
80
|
+
|
81
|
+
$dropdown-link-hover-color: $white !default;
|
82
|
+
$dropdown-link-hover-bg: $gray-800 !default;
|
83
|
+
|
84
|
+
// Navs
|
85
|
+
|
86
|
+
$nav-tabs-border-color: $gray-800 !default;
|
87
|
+
$nav-tabs-link-hover-border-color: $gray-800 !default;
|
88
|
+
$nav-tabs-link-active-color: $gray-800 !default;
|
89
|
+
$nav-tabs-link-active-border-color: $gray-800 !default;
|
90
|
+
|
91
|
+
// Navbar
|
92
|
+
|
93
|
+
$navbar-dark-color: $white !default;
|
94
|
+
$navbar-dark-hover-color: $white !default;
|
95
|
+
$navbar-dark-toggler-border-color: $white !default;
|
96
|
+
|
97
|
+
$navbar-light-color: $gray-800 !default;
|
98
|
+
$navbar-light-hover-color: $gray-800 !default;
|
99
|
+
$navbar-light-active-color: $gray-800 !default;
|
100
|
+
$navbar-light-toggler-border-color: $gray-800 !default;
|
101
|
+
|
102
|
+
// Pagination
|
103
|
+
|
104
|
+
$pagination-border-color: $gray-800 !default;
|
105
|
+
|
106
|
+
$pagination-hover-color: $white !default;
|
107
|
+
$pagination-hover-bg: $gray-800 !default;
|
108
|
+
$pagination-hover-border-color: $gray-800 !default;
|
109
|
+
|
110
|
+
$pagination-disabled-color: $gray-400 !default;
|
111
|
+
$pagination-disabled-border-color: $gray-800 !default;
|
112
|
+
|
113
|
+
|
114
|
+
// Jumbotron
|
115
|
+
|
116
|
+
$jumbotron-bg: transparent !default;
|
117
|
+
|
118
|
+
// Cards
|
119
|
+
|
120
|
+
$card-border-width: 2px !default;
|
121
|
+
$card-border-color: $gray-800 !default;
|
122
|
+
|
123
|
+
// Popovers
|
124
|
+
|
125
|
+
$popover-border-color: $gray-800 !default;
|
126
|
+
|
127
|
+
// Badges
|
128
|
+
|
129
|
+
$badge-padding-y: 0.5em !default;
|
130
|
+
$badge-padding-x: 1.2em !default;
|
131
|
+
|
132
|
+
// Modals
|
133
|
+
|
134
|
+
$modal-content-border-color: $gray-800 !default;
|
135
|
+
|
136
|
+
$modal-header-border-color: $gray-800 !default;
|
137
|
+
|
138
|
+
// Progress bars
|
139
|
+
|
140
|
+
$progress-bg: $white !default;
|
141
|
+
$progress-bar-bg: $gray-400 !default;
|
142
|
+
|
143
|
+
// List group
|
144
|
+
|
145
|
+
$list-group-border-color: $gray-800 !default;
|
146
|
+
|
147
|
+
$list-group-hover-bg: $gray-800 !default;
|
148
|
+
$list-group-active-color: $white !default;
|
149
|
+
$list-group-active-bg: $gray-800 !default;
|
150
|
+
|
151
|
+
$list-group-action-color: $gray-800 !default;
|
152
|
+
$list-group-action-hover-color: $white !default;
|
153
|
+
|
154
|
+
// Breadcrumbs
|
155
|
+
|
156
|
+
$breadcrumb-bg: $white !default;
|
157
|
+
$breadcrumb-divider-color: $gray-800 !default;
|
158
|
+
$breadcrumb-active-color: $gray-800 !default;
|
159
|
+
|
160
|
+
// Close
|
161
|
+
|
162
|
+
$close-color: $white !default;
|
163
|
+
$close-text-shadow: none !default;
|