bootswatch-rails 0.5.0 → 3.1.1

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.
Files changed (43) hide show
  1. checksums.yaml +6 -14
  2. data/CONTRIBUTING.md +52 -0
  3. data/CONVERSION.md +6 -8
  4. data/HISTORY.md +9 -1
  5. data/README.md +6 -1
  6. data/Rakefile +3 -0
  7. data/lib/bootswatch-rails/version.rb +1 -1
  8. data/rearranges +12 -10
  9. data/vendor/assets/stylesheets/bootswatch/amelia/_bootswatch.scss +109 -718
  10. data/vendor/assets/stylesheets/bootswatch/amelia/_variables.scss +743 -217
  11. data/vendor/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +78 -133
  12. data/vendor/assets/stylesheets/bootswatch/cerulean/_variables.scss +745 -217
  13. data/vendor/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +113 -552
  14. data/vendor/assets/stylesheets/bootswatch/cosmo/_variables.scss +745 -217
  15. data/vendor/assets/stylesheets/bootswatch/custom/_bootswatch.scss +22 -0
  16. data/vendor/assets/stylesheets/bootswatch/custom/_variables.scss +620 -0
  17. data/vendor/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +105 -525
  18. data/vendor/assets/stylesheets/bootswatch/cyborg/_variables.scss +745 -217
  19. data/vendor/assets/stylesheets/bootswatch/darkly/_bootswatch.scss +273 -0
  20. data/vendor/assets/stylesheets/bootswatch/darkly/_variables.scss +829 -0
  21. data/vendor/assets/stylesheets/bootswatch/flatly/_bootswatch.scss +183 -452
  22. data/vendor/assets/stylesheets/bootswatch/flatly/_variables.scss +747 -218
  23. data/vendor/assets/stylesheets/bootswatch/journal/_bootswatch.scss +77 -295
  24. data/vendor/assets/stylesheets/bootswatch/journal/_variables.scss +745 -217
  25. data/vendor/assets/stylesheets/bootswatch/lumen/_bootswatch.scss +408 -0
  26. data/vendor/assets/stylesheets/bootswatch/lumen/_variables.scss +827 -0
  27. data/vendor/assets/stylesheets/bootswatch/readable/_bootswatch.scss +149 -37
  28. data/vendor/assets/stylesheets/bootswatch/readable/_variables.scss +745 -217
  29. data/vendor/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +84 -413
  30. data/vendor/assets/stylesheets/bootswatch/simplex/_variables.scss +745 -217
  31. data/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss +251 -481
  32. data/vendor/assets/stylesheets/bootswatch/slate/_variables.scss +749 -217
  33. data/vendor/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +87 -231
  34. data/vendor/assets/stylesheets/bootswatch/spacelab/_variables.scss +745 -216
  35. data/vendor/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +168 -569
  36. data/vendor/assets/stylesheets/bootswatch/superhero/_variables.scss +746 -217
  37. data/vendor/assets/stylesheets/bootswatch/united/_bootswatch.scss +21 -110
  38. data/vendor/assets/stylesheets/bootswatch/united/_variables.scss +745 -217
  39. data/vendor/assets/stylesheets/bootswatch/yeti/_bootswatch.scss +418 -0
  40. data/vendor/assets/stylesheets/bootswatch/yeti/_variables.scss +827 -0
  41. metadata +17 -9
  42. data/vendor/assets/stylesheets/bootswatch/spruce/_bootswatch.scss +0 -650
  43. data/vendor/assets/stylesheets/bootswatch/spruce/_variables.scss +0 -301
@@ -1,672 +1,271 @@
1
- // Superhero 2.3.2
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
- // TYPOGRAPHY
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
- .navbar-inner {
52
- @include box-shadow(none);
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
- .nav-list {
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
- .active > a,
239
- .active > a:hover {
240
- text-shadow: none;
241
- color: $white;
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
- .nav-tabs {
23
+ .navbar-inverse {
256
24
 
257
- & > li > a {
258
- background-color: $blue;
259
- color: $textColor;
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
- .nav-pills {
282
-
283
- & > li > a {
284
- color: $textColor;
285
- background-color: $blue;
286
- }
31
+ // Buttons ====================================================================
287
32
 
288
- & > li > a:hover {
289
- background-color: lighten($blue, 10%);
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
- .nav-tabs .open .dropdown-toggle,
299
- .nav-pills .open .dropdown-toggle,
300
- .nav > .open.active > a:hover {
301
- background-color: lighten($blue, 10%);
302
- border-color: transparent;
37
+ .btn-default {
38
+ &:hover {
39
+ background-color: darken($btn-default-bg, 3%);
40
+ }
303
41
  }
304
42
 
305
- .nav-pills .dropdown .caret,
306
- .nav-pills .dropdown:hover .caret {
307
- border-top-color: $textColor;
43
+ .btn-sm,
44
+ .btn-xs {
45
+ font-size: 12px;
308
46
  }
309
47
 
310
- .dropdown.open .dropdown-menu > li > a:hover,
311
- .dropdown.open .dropdown-menu > li.active > a:hover {
312
- background-color: $orange;
313
- color: $white;
314
- }
48
+ // Typography =================================================================
315
49
 
316
- .tabbable .nav-tabs,
317
- .tabbable .nav-tabs > li.active > a,
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
- .breadcrumb {
324
- background-color: $blue;
325
- background-image: none;
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
- .pagination {
339
-
340
- ul {
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
- .pager {
372
-
373
- li > a,
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
- // BUTTONS
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
- .btn-warning {
403
- background-color: $yellow;
74
+ .text-info,
75
+ .text-info:hover {
76
+ color: $brand-info;
404
77
  }
405
78
 
406
- .btn-primary, .btn-primary:hover {
407
- @include box-shadow(#{-2px 2px 0 darken($btnPrimaryBackground, 30%)});
79
+ .page-header {
80
+ border-bottom-color: $table-border-color;
408
81
  }
409
82
 
410
- .btn-warning, .btn-warning:hover {
411
- @include box-shadow(#{-2px 2px 0 darken($yellow, 30%)});
412
- }
83
+ .dropdown-menu {
413
84
 
414
- .btn-danger, .btn-danger:hover {
415
- @include box-shadow(-2px 2px 0 darken(#ee5f5b, 30%));
416
- }
85
+ border: none;
86
+ margin: 0;
87
+ @include box-shadow(none);
417
88
 
418
- .btn-success, .btn-success:hover {
419
- @include box-shadow(-2px 2px 0 darken(#62c462, 30%));
89
+ > li > a {
90
+ font-size: 12px;
91
+ font-weight: 300;
92
+ }
420
93
  }
421
94
 
422
- .btn-info, .btn-info:hover {
423
- @include box-shadow(-2px 2px 0 darken(#5bc0de, 40%));
95
+ .btn-group.open .dropdown-toggle {
96
+ @include box-shadow(none);
424
97
  }
425
98
 
426
- .btn-inverse, .btn-inverse:hover {
427
- @include box-shadow(-2px 2px 0 darken(#454545, 20%));
99
+ .dropdown-header {
100
+ font-size: 12px;
428
101
  }
429
102
 
430
- .btn.dropdown-toggle, .btn.dropdown-toggle:hover {
431
- @include box-shadow(#{0 2px 0 darken($white, 80%)});
432
- }
103
+ // Tables =====================================================================
433
104
 
434
- .btn-primary.dropdown-toggle, .btn-primary.dropdown-toggle:hover {
435
- @include box-shadow(#{0 2px 0 darken($btnPrimaryBackground, 30%)});
436
- }
105
+ table,
106
+ .table {
107
+ font-size: 12px;
437
108
 
438
- .btn-warning.dropdown-toggle, .btn-warning.dropdown-toggle:hover {
439
- @include box-shadow(#{0 2px 0 darken($yellow, 30%)});
440
- }
109
+ a {
110
+ color: #fff;
111
+ text-decoration: underline;
112
+ }
441
113
 
442
- .btn-danger.dropdown-toggle, .btn-danger.dropdown-toggle:hover {
443
- @include box-shadow(0 2px 0 darken(#ee5f5b, 30%));
444
- }
114
+ .text-muted {
115
+ color: $text-muted;
116
+ }
445
117
 
446
- .btn-success.dropdown-toggle, .btn-success.dropdown-toggle:hover {
447
- @include box-shadow(0 2px 0 darken(#62c462, 30%));
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
- .btn-info.dropdown-toggle, .btn-info.dropdown-toggle:hover {
451
- @include box-shadow(0 2px 0 darken(#5bc0de, 40%));
452
- }
128
+ // Forms ======================================================================
453
129
 
454
- .btn-inverse.dropdown-toggle, .btn-inverse.dropdown-toggle:hover {
455
- @include box-shadow(0 2px 0 darken(#454545, 20%));
130
+ input,
131
+ textarea {
132
+ color: $input-color;
456
133
  }
457
134
 
458
- .btn.active,
459
- .btn:active {
460
- position: relative;
461
- top: 1px;
462
- left: -1px;
463
- @include box-shadow(-1px 1px 0 darken($white, 80%))
135
+ label,
136
+ .radio label,
137
+ .checkbox label,
138
+ .help-block {
139
+ font-size: 12px;
140
+ font-weight: 300;
464
141
  }
465
142
 
466
- .btn.disabled,
467
- .btn.disabled.active,
468
- .btn.disabled:active,
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
- [class^="icon-"], [class*=" icon-"] {
477
- vertical-align: -13%;
148
+ .has-warning {
149
+ .help-block,
150
+ .control-label,
151
+ .form-control-feedback {
152
+ color: $brand-warning;
153
+ }
478
154
  }
479
155
 
480
- // TABLES
481
- // -----------------------------------------------------
482
-
483
- .table,
484
- .table-striped tbody > tr > td:first-child,
485
- .table-striped tbody > tr > td:last-child, {
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
- // FORMS
490
- // --------------------------------------------------
491
-
492
- input, button, select, textarea {
493
- font-family: 'Noticia Text', serif;
164
+ .has-success {
165
+ .help-block,
166
+ .control-label,
167
+ .form-control-feedback {
168
+ color: $brand-success;
169
+ }
494
170
  }
495
171
 
496
- legend {
497
- border-bottom: none;
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
- label {
504
- color: $textColor;
505
- line-height: 15px;
176
+ .has-warning,
177
+ .has-error,
178
+ .has-success {
179
+ .form-control:focus {
180
+ @include box-shadow(none);
181
+ }
506
182
  }
507
183
 
508
- .help-block {
509
- color: $textColor;
510
- opacity: 0.6;
511
- }
184
+ // Navs =======================================================================
512
185
 
513
- .form-actions {
514
- border-top: none;
186
+ .nav {
187
+ .open > a,
188
+ .open > a:hover,
189
+ .open > a:focus {
190
+ border-color: transparent;
191
+ }
515
192
  }
516
193
 
517
- .control-group.warning {
518
- @include formFieldState(lighten($warningText, 10%), lighten($warningText, 10%), $warningBackground);
194
+ .nav-tabs {
195
+ > li > a {
196
+ color: $text-color;
197
+ }
519
198
  }
520
199
 
521
- .control-group.error {
522
- @include formFieldState(lighten($errorText, 10%), lighten($errorText, 10%), $errorBackground);
200
+ .nav-pills {
201
+ > li > a {
202
+ color: $text-color;
203
+ }
523
204
  }
524
205
 
525
- .control-group.success {
526
- @include formFieldState(lighten($successText, 10%), lighten($successText, 10%), $successBackground);
206
+ .pager {
207
+ a {
208
+ color: $text-color;
209
+ }
527
210
  }
528
211
 
529
- .input-append .add-on,
530
- .input-prepend .add-on,
531
- .input-append .btn,
532
- .input-prepend .btn {
533
- color: $bodyBackground;
534
- }
212
+ // Indicators =================================================================
535
213
 
536
- // DROPDOWNS
537
- // --------------------------------------------------
214
+ .close {
215
+ opacity: 0.4;
538
216
 
539
- .dropdown .caret {
540
- margin-top: 14px;
541
- opacity: 1;
542
- border-left: 6px solid transparent;
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
- background-color: $blue;
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
- background-color: $blue;
573
- border: none;
574
- color: $textColor;
575
- text-shadow: none;
228
+ color: #fff;
576
229
 
577
- a {
578
- color: lighten($orange, 12%);
230
+ a,
231
+ .alert-link {
232
+ color: #fff;
579
233
  }
580
234
  }
581
235
 
582
- .alert .alert-heading {
583
- color: $orange;
584
- }
236
+ // Progress bars ==============================================================
585
237
 
586
- .alert-success {
587
- background-color: $successText;
588
- }
238
+ // Containers =================================================================
589
239
 
590
- .alert-danger,
591
- .alert-error {
592
- background-color: $errorText;
240
+ .well {
241
+ @include box-shadow(none);
593
242
  }
594
243
 
595
- .alert-info {
596
- background-color: $infoText;
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
- .progress {
613
- background-color: darken($blueDark, 5%);
614
- background-image: none;
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
- border: none;
624
- background: $blue;
625
- @include border-radius(3px);
254
+ background-color: $well-bg;
255
+ border: none;
626
256
  }
627
257
 
628
258
  .modal {
629
- background-color: transparent;
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
- // MEDIA QUERIES
649
- // --------------------------------------------------
650
-
651
- @media (max-width: 768px) {
652
-
653
- div.subnav {
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
- &:last-child > a,
665
- &:last-child > a:hover,
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
  }