bootswatch-rails 0.5.0 → 3.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +6 -14
- data/CONTRIBUTING.md +52 -0
- data/CONVERSION.md +6 -8
- data/HISTORY.md +9 -1
- data/README.md +6 -1
- data/Rakefile +3 -0
- data/lib/bootswatch-rails/version.rb +1 -1
- data/rearranges +12 -10
- data/vendor/assets/stylesheets/bootswatch/amelia/_bootswatch.scss +109 -718
- data/vendor/assets/stylesheets/bootswatch/amelia/_variables.scss +743 -217
- data/vendor/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +78 -133
- data/vendor/assets/stylesheets/bootswatch/cerulean/_variables.scss +745 -217
- data/vendor/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +113 -552
- data/vendor/assets/stylesheets/bootswatch/cosmo/_variables.scss +745 -217
- data/vendor/assets/stylesheets/bootswatch/custom/_bootswatch.scss +22 -0
- data/vendor/assets/stylesheets/bootswatch/custom/_variables.scss +620 -0
- data/vendor/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +105 -525
- data/vendor/assets/stylesheets/bootswatch/cyborg/_variables.scss +745 -217
- data/vendor/assets/stylesheets/bootswatch/darkly/_bootswatch.scss +273 -0
- data/vendor/assets/stylesheets/bootswatch/darkly/_variables.scss +829 -0
- data/vendor/assets/stylesheets/bootswatch/flatly/_bootswatch.scss +183 -452
- data/vendor/assets/stylesheets/bootswatch/flatly/_variables.scss +747 -218
- data/vendor/assets/stylesheets/bootswatch/journal/_bootswatch.scss +77 -295
- data/vendor/assets/stylesheets/bootswatch/journal/_variables.scss +745 -217
- data/vendor/assets/stylesheets/bootswatch/lumen/_bootswatch.scss +408 -0
- data/vendor/assets/stylesheets/bootswatch/lumen/_variables.scss +827 -0
- data/vendor/assets/stylesheets/bootswatch/readable/_bootswatch.scss +149 -37
- data/vendor/assets/stylesheets/bootswatch/readable/_variables.scss +745 -217
- data/vendor/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +84 -413
- data/vendor/assets/stylesheets/bootswatch/simplex/_variables.scss +745 -217
- data/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss +251 -481
- data/vendor/assets/stylesheets/bootswatch/slate/_variables.scss +749 -217
- data/vendor/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +87 -231
- data/vendor/assets/stylesheets/bootswatch/spacelab/_variables.scss +745 -216
- data/vendor/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +168 -569
- data/vendor/assets/stylesheets/bootswatch/superhero/_variables.scss +746 -217
- data/vendor/assets/stylesheets/bootswatch/united/_bootswatch.scss +21 -110
- data/vendor/assets/stylesheets/bootswatch/united/_variables.scss +745 -217
- data/vendor/assets/stylesheets/bootswatch/yeti/_bootswatch.scss +418 -0
- data/vendor/assets/stylesheets/bootswatch/yeti/_variables.scss +827 -0
- metadata +17 -9
- data/vendor/assets/stylesheets/bootswatch/spruce/_bootswatch.scss +0 -650
- data/vendor/assets/stylesheets/bootswatch/spruce/_variables.scss +0 -301
@@ -1,672 +1,271 @@
|
|
1
|
-
// Superhero
|
1
|
+
// Superhero 3.1.1
|
2
2
|
// Bootswatch
|
3
3
|
// -----------------------------------------------------
|
4
4
|
|
5
|
+
@import url("//fonts.googleapis.com/css?family=Lato:300,400,700");
|
5
6
|
|
6
|
-
//
|
7
|
-
// --------------------------------------------------
|
8
|
-
|
9
|
-
@import url('//fonts.googleapis.com/css?family=Oswald|Noticia+Text');
|
10
|
-
|
11
|
-
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, h6 {
|
12
|
-
font-family: $headingsFontFamily;
|
13
|
-
color: $orange;
|
14
|
-
text-shadow: -1px 1px 0 darken($orange, 30%);
|
15
|
-
}
|
16
|
-
|
17
|
-
h1, h2 {
|
18
|
-
text-shadow: -2px 2px 0 darken($orange, 30%);
|
19
|
-
}
|
20
|
-
|
21
|
-
h1 {
|
22
|
-
line-height: 55px;
|
23
|
-
}
|
24
|
-
|
25
|
-
code, pre {
|
26
|
-
background-color: lighten($blue, 8%);
|
27
|
-
border: none;
|
28
|
-
color: $textColor;
|
29
|
-
}
|
30
|
-
|
31
|
-
// SCAFFOLDING
|
32
|
-
// --------------------------------------------------
|
33
|
-
|
34
|
-
.page-header {
|
35
|
-
border-bottom: none;
|
36
|
-
}
|
37
|
-
|
38
|
-
blockquote {
|
39
|
-
border-left: 5px solid $blue;
|
40
|
-
}
|
41
|
-
|
42
|
-
blockquote.pull-right {
|
43
|
-
border-right: 5px solid $blue;
|
44
|
-
}
|
45
|
-
|
46
|
-
// NAVBAR
|
47
|
-
// --------------------------------------------------
|
7
|
+
// Navbar =====================================================================
|
48
8
|
|
49
9
|
.navbar {
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
background-image: none;
|
54
|
-
}
|
55
|
-
|
56
|
-
.brand {
|
57
|
-
padding: 25px 20px 15px;
|
58
|
-
font-family: $headingsFontFamily;
|
59
|
-
font-size: 30px;
|
60
|
-
text-shadow: -2px 2px 0 darken($orange, 30%);
|
61
|
-
}
|
62
|
-
|
63
|
-
.nav > li > a {
|
64
|
-
padding: 23px 20px 13px;
|
65
|
-
line-height: 30px;
|
66
|
-
font-family: $headingsFontFamily;
|
67
|
-
font-size: 22px;
|
68
|
-
text-shadow: -2px 2px 0 darken($orange, 30%);
|
69
|
-
}
|
70
|
-
|
71
|
-
.brand:hover,
|
72
|
-
.nav > li > a:hover,
|
73
|
-
.nav > li.active > a:hover,
|
74
|
-
.nav > li.dropdown.open > a,
|
75
|
-
.nav > li.dropdown.open > a:hover {
|
76
|
-
position: relative;
|
77
|
-
top: 1px;
|
78
|
-
left: -1px;
|
79
|
-
color: $orange;
|
80
|
-
text-shadow: -1px 1px 0 darken($orange, 30%);
|
81
|
-
}
|
82
|
-
|
83
|
-
.nav > .active > a,
|
84
|
-
.nav > .active > a:hover,
|
85
|
-
.nav > .active > a:focus {
|
86
|
-
@include box-shadow(none);
|
87
|
-
}
|
88
|
-
|
89
|
-
.navbar-text {
|
90
|
-
padding: 23px 20px 13px;
|
91
|
-
line-height: 30px;
|
92
|
-
font-family: $headingsFontFamily;
|
93
|
-
font-size: 22px;
|
94
|
-
text-shadow: -2px 2px 0 $gray;
|
95
|
-
}
|
96
|
-
|
97
|
-
.navbar-search {
|
98
|
-
margin-top: 24px;
|
99
|
-
}
|
100
|
-
|
101
|
-
.navbar-search .search-query {
|
102
|
-
font-family: $baseFontFamily;
|
103
|
-
font-size: $baseFontSize;
|
104
|
-
line-height: $baseLineHeight;
|
105
|
-
@include box-shadow(none);
|
106
|
-
}
|
107
|
-
|
108
|
-
&.navbar-inverse .navbar-search .search-query {
|
109
|
-
color: $blueDark;
|
110
|
-
}
|
111
|
-
|
112
|
-
.divider-vertical {
|
113
|
-
height: 70px;
|
114
|
-
}
|
115
|
-
|
116
|
-
.nav .dropdown-toggle .caret,
|
117
|
-
.nav .open.dropdown .caret {
|
118
|
-
margin-top: 14px;
|
119
|
-
border-top-color: $textColor;
|
120
|
-
}
|
121
|
-
|
122
|
-
.dropdown-menu::before {
|
123
|
-
border: none;
|
124
|
-
}
|
125
|
-
|
126
|
-
.dropdown-menu::after {
|
127
|
-
left: 20px;
|
128
|
-
border-left: 7px solid transparent;
|
129
|
-
border-right: 7px solid transparent;
|
130
|
-
border-bottom: 7px solid lighten($blue, 10%);
|
131
|
-
}
|
132
|
-
|
133
|
-
[class^="icon-"], [class*=" icon-"] {
|
134
|
-
vertical-align: 20%;
|
135
|
-
}
|
136
|
-
|
137
|
-
.btn-navbar {
|
138
|
-
background-color: $blue;
|
139
|
-
border-color: transparent;
|
140
|
-
}
|
141
|
-
}
|
142
|
-
|
143
|
-
@media (max-width: $navbarCollapseWidth) {
|
144
|
-
|
145
|
-
.navbar .nav-collapse {
|
146
|
-
|
147
|
-
@include border-radius(4px);
|
148
|
-
|
149
|
-
.nav li > a {
|
150
|
-
color: $orange;
|
151
|
-
|
152
|
-
&:hover {
|
153
|
-
background-color: lighten($blue, 10%) !important;
|
154
|
-
background-image: none;
|
155
|
-
}
|
156
|
-
}
|
157
|
-
|
158
|
-
.navbar-form,
|
159
|
-
.navbar-search {
|
160
|
-
border-top: none;
|
161
|
-
border-bottom: none;
|
162
|
-
@include box-shadow(none);
|
163
|
-
}
|
164
|
-
|
165
|
-
.nav-header {
|
166
|
-
color: $textColor;
|
167
|
-
}
|
168
|
-
}
|
169
|
-
}
|
170
|
-
|
171
|
-
div.subnav {
|
172
|
-
margin: 0 1px;
|
173
|
-
background: $blue none;
|
174
|
-
border: none;
|
175
|
-
|
176
|
-
.nav > li > a,
|
177
|
-
.nav > li.active > a {
|
178
|
-
border-color: transparent;
|
179
|
-
color: $textColor;
|
180
|
-
}
|
181
|
-
|
182
|
-
.nav > li > a:hover,
|
183
|
-
.nav > li.active > a:hover {
|
184
|
-
background-color: lighten($blue, 10%);
|
185
|
-
border-color: transparent;
|
186
|
-
}
|
187
|
-
|
188
|
-
.nav > li.active > a,
|
189
|
-
.nav > li.active > a:hover {
|
190
|
-
background: $orange none;
|
191
|
-
@include box-shadow(none);
|
192
|
-
color: $white;
|
193
|
-
}
|
194
|
-
|
195
|
-
&.subnav-fixed {
|
196
|
-
top: $navbarHeight + 1;
|
197
|
-
margin: 0;
|
198
|
-
@include box-shadow(none);
|
199
|
-
|
200
|
-
.nav > li > a,
|
201
|
-
.nav > li > a:hover,
|
202
|
-
.nav > li.active > a,
|
203
|
-
.nav > li.active > a:hover {
|
204
|
-
border-color: transparent;
|
205
|
-
@include border-radius(0);
|
206
|
-
}
|
207
|
-
|
208
|
-
.nav > li > a:hover,
|
209
|
-
.nav > li.active > a:hover {
|
210
|
-
color: $white;
|
211
|
-
}
|
212
|
-
}
|
213
|
-
|
214
|
-
.nav > .active > a .caret,
|
215
|
-
.nav > .active > a:hover .caret {
|
216
|
-
border-top-color: $textColor;
|
217
|
-
}
|
218
|
-
}
|
219
|
-
|
220
|
-
// NAVIGATION
|
221
|
-
// --------------------------------------------------
|
222
|
-
|
223
|
-
.nav .nav-header {
|
224
|
-
color: $textColor;
|
225
|
-
text-shadow: none;
|
10
|
+
@include box-shadow(none);
|
11
|
+
border: none;
|
12
|
+
font-size: 12px;
|
226
13
|
}
|
227
14
|
|
228
|
-
.
|
229
|
-
|
230
|
-
padding: 0 15px;
|
231
|
-
|
232
|
-
& > li > a,
|
233
|
-
& > .nav-header {
|
234
|
-
text-shadow: none;
|
235
|
-
color: $textColor;
|
236
|
-
}
|
15
|
+
.navbar-default {
|
237
16
|
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
}
|
243
|
-
|
244
|
-
li > a:hover {
|
245
|
-
background-color: lighten($blue, 10%);
|
246
|
-
}
|
247
|
-
|
248
|
-
}
|
249
|
-
|
250
|
-
.nav-tabs,
|
251
|
-
.nav-tabs.nav-stacked > li > a {
|
252
|
-
border-color: transparent;
|
17
|
+
.badge {
|
18
|
+
background-color: #fff;
|
19
|
+
color: $navbar-default-bg;
|
20
|
+
}
|
253
21
|
}
|
254
22
|
|
255
|
-
.
|
23
|
+
.navbar-inverse {
|
256
24
|
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
li.active > a,
|
263
|
-
li.active > a:hover,
|
264
|
-
&.nav-stacked > li.active > a:hover {
|
265
|
-
color: $white;
|
266
|
-
background-color: $orange;
|
267
|
-
border-color: transparent;
|
268
|
-
}
|
269
|
-
|
270
|
-
li > a:hover,
|
271
|
-
&.nav-stacked > li > a:hover {
|
272
|
-
background-color: lighten($blue, 10%);
|
273
|
-
border-color: transparent;
|
274
|
-
}
|
275
|
-
|
276
|
-
li.disabled > a:hover {
|
277
|
-
background-color: $blue;
|
278
|
-
}
|
25
|
+
.badge {
|
26
|
+
background-color: #fff;
|
27
|
+
color: $navbar-inverse-bg;
|
28
|
+
}
|
279
29
|
}
|
280
30
|
|
281
|
-
|
282
|
-
|
283
|
-
& > li > a {
|
284
|
-
color: $textColor;
|
285
|
-
background-color: $blue;
|
286
|
-
}
|
31
|
+
// Buttons ====================================================================
|
287
32
|
|
288
|
-
|
289
|
-
|
290
|
-
border-color: transparent;
|
291
|
-
}
|
292
|
-
|
293
|
-
& > .disabled > a:hover {
|
294
|
-
background-color: $blue;
|
295
|
-
}
|
33
|
+
.btn {
|
34
|
+
font-weight: 300;
|
296
35
|
}
|
297
36
|
|
298
|
-
.
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
border-color: transparent;
|
37
|
+
.btn-default {
|
38
|
+
&:hover {
|
39
|
+
background-color: darken($btn-default-bg, 3%);
|
40
|
+
}
|
303
41
|
}
|
304
42
|
|
305
|
-
.
|
306
|
-
.
|
307
|
-
|
43
|
+
.btn-sm,
|
44
|
+
.btn-xs {
|
45
|
+
font-size: 12px;
|
308
46
|
}
|
309
47
|
|
310
|
-
|
311
|
-
.dropdown.open .dropdown-menu > li.active > a:hover {
|
312
|
-
background-color: $orange;
|
313
|
-
color: $white;
|
314
|
-
}
|
48
|
+
// Typography =================================================================
|
315
49
|
|
316
|
-
|
317
|
-
|
318
|
-
.tabbable .nav-tabs > li > a:hover,
|
319
|
-
.tabbable .nav-tabs > li.active > a:hover {
|
320
|
-
border-color: transparent;
|
50
|
+
body {
|
51
|
+
font-weight: 300;
|
321
52
|
}
|
322
53
|
|
323
|
-
.
|
324
|
-
|
325
|
-
|
326
|
-
border: none;
|
327
|
-
@include box-shadow(none);
|
328
|
-
|
329
|
-
li {
|
330
|
-
text-shadow: none;
|
331
|
-
}
|
332
|
-
|
333
|
-
.divider {
|
334
|
-
color: $textColor;
|
335
|
-
}
|
54
|
+
.text-primary,
|
55
|
+
.text-primary:hover {
|
56
|
+
color: $brand-primary;
|
336
57
|
}
|
337
58
|
|
338
|
-
.
|
339
|
-
|
340
|
-
|
341
|
-
background-image: none;
|
342
|
-
border-color: transparent;
|
343
|
-
}
|
344
|
-
|
345
|
-
ul > li > a,
|
346
|
-
ul > li > span {
|
347
|
-
border: none;
|
348
|
-
color: $textColor;
|
349
|
-
}
|
350
|
-
|
351
|
-
ul > li > a:hover {
|
352
|
-
background: lighten($blue, 10%);
|
353
|
-
}
|
354
|
-
|
355
|
-
ul > .active > a,
|
356
|
-
ul > .active > a:hover,
|
357
|
-
ul > .active > span,
|
358
|
-
ul > .active > span:hover {
|
359
|
-
background-color: $orange;
|
360
|
-
color: $white;
|
361
|
-
}
|
362
|
-
|
363
|
-
ul > .disabled > a,
|
364
|
-
ul > .disabled > a:hover,
|
365
|
-
ul > .disabled > span,
|
366
|
-
ul > .disabled > span:hover {
|
367
|
-
background: darken($blue, 5%);
|
368
|
-
}
|
59
|
+
.text-success,
|
60
|
+
.text-success:hover {
|
61
|
+
color: $brand-success;
|
369
62
|
}
|
370
63
|
|
371
|
-
.
|
372
|
-
|
373
|
-
|
374
|
-
li > span {
|
375
|
-
|
376
|
-
background-color: $blue;
|
377
|
-
border: none;
|
378
|
-
color: $textColor;
|
379
|
-
|
380
|
-
&:hover {
|
381
|
-
background: lighten($blue, 10%);
|
382
|
-
}
|
383
|
-
}
|
384
|
-
|
385
|
-
.disabled a,
|
386
|
-
.disabled a:hover {
|
387
|
-
background-color: $blue;
|
388
|
-
}
|
64
|
+
.text-danger,
|
65
|
+
.text-danger:hover {
|
66
|
+
color: $brand-danger;
|
389
67
|
}
|
390
68
|
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
.btn,
|
395
|
-
.btn:hover {
|
396
|
-
text-shadow: none;
|
397
|
-
background-image: none;
|
398
|
-
@include box-shadow(-2px 2px 0 rgba(0, 0, 0, 0.2));
|
399
|
-
border: none;
|
69
|
+
.text-warning,
|
70
|
+
.text-warning:hover {
|
71
|
+
color: $brand-warning;
|
400
72
|
}
|
401
73
|
|
402
|
-
.
|
403
|
-
|
74
|
+
.text-info,
|
75
|
+
.text-info:hover {
|
76
|
+
color: $brand-info;
|
404
77
|
}
|
405
78
|
|
406
|
-
.
|
407
|
-
|
79
|
+
.page-header {
|
80
|
+
border-bottom-color: $table-border-color;
|
408
81
|
}
|
409
82
|
|
410
|
-
.
|
411
|
-
@include box-shadow(#{-2px 2px 0 darken($yellow, 30%)});
|
412
|
-
}
|
83
|
+
.dropdown-menu {
|
413
84
|
|
414
|
-
|
415
|
-
|
416
|
-
|
85
|
+
border: none;
|
86
|
+
margin: 0;
|
87
|
+
@include box-shadow(none);
|
417
88
|
|
418
|
-
|
419
|
-
|
89
|
+
> li > a {
|
90
|
+
font-size: 12px;
|
91
|
+
font-weight: 300;
|
92
|
+
}
|
420
93
|
}
|
421
94
|
|
422
|
-
.btn-
|
423
|
-
|
95
|
+
.btn-group.open .dropdown-toggle {
|
96
|
+
@include box-shadow(none);
|
424
97
|
}
|
425
98
|
|
426
|
-
.
|
427
|
-
|
99
|
+
.dropdown-header {
|
100
|
+
font-size: 12px;
|
428
101
|
}
|
429
102
|
|
430
|
-
|
431
|
-
@include box-shadow(#{0 2px 0 darken($white, 80%)});
|
432
|
-
}
|
103
|
+
// Tables =====================================================================
|
433
104
|
|
434
|
-
|
435
|
-
|
436
|
-
|
105
|
+
table,
|
106
|
+
.table {
|
107
|
+
font-size: 12px;
|
437
108
|
|
438
|
-
|
439
|
-
|
440
|
-
|
109
|
+
a {
|
110
|
+
color: #fff;
|
111
|
+
text-decoration: underline;
|
112
|
+
}
|
441
113
|
|
442
|
-
.
|
443
|
-
|
444
|
-
}
|
114
|
+
.text-muted {
|
115
|
+
color: $text-muted;
|
116
|
+
}
|
445
117
|
|
446
|
-
|
447
|
-
|
448
|
-
|
118
|
+
> thead > tr > th,
|
119
|
+
> tbody > tr > th,
|
120
|
+
> tfoot > tr > th,
|
121
|
+
> thead > tr > td,
|
122
|
+
> tbody > tr > td,
|
123
|
+
> tfoot > tr > td {
|
124
|
+
border-color: transparent;
|
125
|
+
}
|
126
|
+
}
|
449
127
|
|
450
|
-
|
451
|
-
@include box-shadow(0 2px 0 darken(#5bc0de, 40%));
|
452
|
-
}
|
128
|
+
// Forms ======================================================================
|
453
129
|
|
454
|
-
|
455
|
-
|
130
|
+
input,
|
131
|
+
textarea {
|
132
|
+
color: $input-color;
|
456
133
|
}
|
457
134
|
|
458
|
-
|
459
|
-
.
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
135
|
+
label,
|
136
|
+
.radio label,
|
137
|
+
.checkbox label,
|
138
|
+
.help-block {
|
139
|
+
font-size: 12px;
|
140
|
+
font-weight: 300;
|
464
141
|
}
|
465
142
|
|
466
|
-
.
|
467
|
-
.
|
468
|
-
|
469
|
-
.btn[disabled] {
|
470
|
-
@include box-shadow(none);
|
471
|
-
text-shadow: none;
|
472
|
-
top: 0;
|
473
|
-
left: 0;
|
143
|
+
.input-addon,
|
144
|
+
.input-group-addon {
|
145
|
+
color: $text-color;
|
474
146
|
}
|
475
147
|
|
476
|
-
|
477
|
-
|
148
|
+
.has-warning {
|
149
|
+
.help-block,
|
150
|
+
.control-label,
|
151
|
+
.form-control-feedback {
|
152
|
+
color: $brand-warning;
|
153
|
+
}
|
478
154
|
}
|
479
155
|
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
.
|
484
|
-
|
485
|
-
|
486
|
-
@include border-radius(4px);
|
156
|
+
.has-error {
|
157
|
+
.help-block,
|
158
|
+
.control-label,
|
159
|
+
.form-control-feedback {
|
160
|
+
color: $brand-danger;
|
161
|
+
}
|
487
162
|
}
|
488
163
|
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
164
|
+
.has-success {
|
165
|
+
.help-block,
|
166
|
+
.control-label,
|
167
|
+
.form-control-feedback {
|
168
|
+
color: $brand-success;
|
169
|
+
}
|
494
170
|
}
|
495
171
|
|
496
|
-
|
497
|
-
|
498
|
-
font-family: $headingsFontFamily;
|
499
|
-
color: $orange;
|
500
|
-
text-shadow: -2px 2px 0 darken($orange, 30%);
|
172
|
+
.form-control:focus {
|
173
|
+
@include box-shadow(none);
|
501
174
|
}
|
502
175
|
|
503
|
-
|
504
|
-
|
505
|
-
|
176
|
+
.has-warning,
|
177
|
+
.has-error,
|
178
|
+
.has-success {
|
179
|
+
.form-control:focus {
|
180
|
+
@include box-shadow(none);
|
181
|
+
}
|
506
182
|
}
|
507
183
|
|
508
|
-
|
509
|
-
color: $textColor;
|
510
|
-
opacity: 0.6;
|
511
|
-
}
|
184
|
+
// Navs =======================================================================
|
512
185
|
|
513
|
-
.
|
514
|
-
|
186
|
+
.nav {
|
187
|
+
.open > a,
|
188
|
+
.open > a:hover,
|
189
|
+
.open > a:focus {
|
190
|
+
border-color: transparent;
|
191
|
+
}
|
515
192
|
}
|
516
193
|
|
517
|
-
.
|
518
|
-
|
194
|
+
.nav-tabs {
|
195
|
+
> li > a {
|
196
|
+
color: $text-color;
|
197
|
+
}
|
519
198
|
}
|
520
199
|
|
521
|
-
.
|
522
|
-
|
200
|
+
.nav-pills {
|
201
|
+
> li > a {
|
202
|
+
color: $text-color;
|
203
|
+
}
|
523
204
|
}
|
524
205
|
|
525
|
-
.
|
526
|
-
|
206
|
+
.pager {
|
207
|
+
a {
|
208
|
+
color: $text-color;
|
209
|
+
}
|
527
210
|
}
|
528
211
|
|
529
|
-
|
530
|
-
.input-prepend .add-on,
|
531
|
-
.input-append .btn,
|
532
|
-
.input-prepend .btn {
|
533
|
-
color: $bodyBackground;
|
534
|
-
}
|
212
|
+
// Indicators =================================================================
|
535
213
|
|
536
|
-
|
537
|
-
|
214
|
+
.close {
|
215
|
+
opacity: 0.4;
|
538
216
|
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
border-right: 6px solid transparent;
|
544
|
-
border-top: 6px solid lighten($blue, 10%);
|
217
|
+
&:hover,
|
218
|
+
&:focus {
|
219
|
+
opacity: 1;
|
220
|
+
}
|
545
221
|
}
|
546
222
|
|
547
|
-
// ALERTS, LABELS, BADGES
|
548
|
-
// --------------------------------------------------
|
549
|
-
|
550
223
|
.label {
|
551
|
-
|
552
|
-
color: $textColor;
|
553
|
-
}
|
554
|
-
|
555
|
-
.label-important {
|
556
|
-
background-color: $errorText;
|
557
|
-
}
|
558
|
-
|
559
|
-
.label-warning {
|
560
|
-
background-color: $orange;
|
561
|
-
}
|
562
|
-
|
563
|
-
.label-success {
|
564
|
-
background-color: $successText;
|
565
|
-
}
|
566
|
-
|
567
|
-
.label-info {
|
568
|
-
background-color: $infoText;
|
224
|
+
font-weight: 300;
|
569
225
|
}
|
570
226
|
|
571
227
|
.alert {
|
572
|
-
|
573
|
-
border: none;
|
574
|
-
color: $textColor;
|
575
|
-
text-shadow: none;
|
228
|
+
color: #fff;
|
576
229
|
|
577
|
-
a
|
578
|
-
|
230
|
+
a,
|
231
|
+
.alert-link {
|
232
|
+
color: #fff;
|
579
233
|
}
|
580
234
|
}
|
581
235
|
|
582
|
-
|
583
|
-
color: $orange;
|
584
|
-
}
|
236
|
+
// Progress bars ==============================================================
|
585
237
|
|
586
|
-
|
587
|
-
background-color: $successText;
|
588
|
-
}
|
238
|
+
// Containers =================================================================
|
589
239
|
|
590
|
-
.
|
591
|
-
|
592
|
-
background-color: $errorText;
|
240
|
+
.well {
|
241
|
+
@include box-shadow(none);
|
593
242
|
}
|
594
243
|
|
595
|
-
.
|
596
|
-
|
597
|
-
}
|
598
|
-
|
599
|
-
// MISC
|
600
|
-
// --------------------------------------------------
|
601
|
-
|
602
|
-
.well, .hero-unit {
|
603
|
-
border: none;
|
604
|
-
@include box-shadow(none);
|
605
|
-
}
|
606
|
-
|
607
|
-
.hero-unit h1 {
|
608
|
-
color: $orange;
|
609
|
-
line-height: 2em;
|
244
|
+
.panel {
|
245
|
+
border: none;
|
610
246
|
}
|
611
247
|
|
612
|
-
.
|
613
|
-
|
614
|
-
|
615
|
-
@include box-shadow(none);
|
616
|
-
|
617
|
-
.bar {
|
618
|
-
@include box-shadow(none);
|
619
|
-
}
|
248
|
+
.panel-default > .panel-heading {
|
249
|
+
background-color: $table-bg-hover;
|
250
|
+
color: $text-color;
|
620
251
|
}
|
621
252
|
|
622
253
|
.thumbnail {
|
623
|
-
|
624
|
-
|
625
|
-
@include border-radius(3px);
|
254
|
+
background-color: $well-bg;
|
255
|
+
border: none;
|
626
256
|
}
|
627
257
|
|
628
258
|
.modal {
|
629
|
-
|
630
|
-
|
631
|
-
.modal-header,
|
632
|
-
.modal-body,
|
633
|
-
.modal-footer {
|
634
|
-
@include box-shadow(none);
|
635
|
-
background-color: $bodyBackground;
|
636
|
-
border: none;
|
637
|
-
}
|
638
|
-
|
639
|
-
.modal-header {
|
640
|
-
@include border-radius(4px 4px 0 0);
|
641
|
-
}
|
642
|
-
|
643
|
-
.modal-footer {
|
644
|
-
@include border-radius(0 0 4px 4px);
|
645
|
-
}
|
259
|
+
padding: 0;
|
646
260
|
}
|
647
261
|
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
.nav > li {
|
656
|
-
|
657
|
-
&:first-child > a,
|
658
|
-
&:first-child > a:hover,
|
659
|
-
&.active:first-child > a,
|
660
|
-
&.active:first-child > a:hover {
|
661
|
-
@include border-radius(4px 4px 0 0);
|
662
|
-
}
|
262
|
+
.modal-header,
|
263
|
+
.modal-footer {
|
264
|
+
background-color: $table-bg-hover;
|
265
|
+
border: none;
|
266
|
+
border-radius: 0;
|
267
|
+
}
|
663
268
|
|
664
|
-
|
665
|
-
|
666
|
-
&.active:last-child > a,
|
667
|
-
&.active:last-child > a:hover {
|
668
|
-
@include border-radius(0 0 4px 4px);
|
669
|
-
}
|
670
|
-
}
|
671
|
-
}
|
269
|
+
.popover-title {
|
270
|
+
border: none;
|
672
271
|
}
|