bootswatch-rails 0.2.0 → 0.3.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.
Files changed (31) hide show
  1. data/.gitmodules +3 -0
  2. data/HISTORY.md +7 -0
  3. data/README.md +16 -7
  4. data/Rakefile +32 -0
  5. data/converter +112 -0
  6. data/lib/bootswatch-rails/version.rb +1 -1
  7. data/vendor/assets/stylesheets/bootswatch/amelia/_bootswatch.scss +375 -229
  8. data/vendor/assets/stylesheets/bootswatch/amelia/_variables.scss +166 -60
  9. data/vendor/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +122 -37
  10. data/vendor/assets/stylesheets/bootswatch/cerulean/_variables.scss +148 -43
  11. data/vendor/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +62 -61
  12. data/vendor/assets/stylesheets/bootswatch/cosmo/_variables.scss +22 -23
  13. data/vendor/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +352 -236
  14. data/vendor/assets/stylesheets/bootswatch/cyborg/_variables.scss +147 -42
  15. data/vendor/assets/stylesheets/bootswatch/journal/_bootswatch.scss +277 -72
  16. data/vendor/assets/stylesheets/bootswatch/journal/_variables.scss +159 -54
  17. data/vendor/assets/stylesheets/bootswatch/readable/_bootswatch.scss +21 -381
  18. data/vendor/assets/stylesheets/bootswatch/readable/_variables.scss +161 -56
  19. data/vendor/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +46 -29
  20. data/vendor/assets/stylesheets/bootswatch/simplex/_variables.scss +42 -20
  21. data/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss +420 -267
  22. data/vendor/assets/stylesheets/bootswatch/slate/_variables.scss +150 -45
  23. data/vendor/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +55 -102
  24. data/vendor/assets/stylesheets/bootswatch/spacelab/_variables.scss +94 -70
  25. data/vendor/assets/stylesheets/bootswatch/spruce/_bootswatch.scss +476 -301
  26. data/vendor/assets/stylesheets/bootswatch/spruce/_variables.scss +171 -66
  27. data/vendor/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +293 -255
  28. data/vendor/assets/stylesheets/bootswatch/superhero/_variables.scss +132 -30
  29. data/vendor/assets/stylesheets/bootswatch/united/_bootswatch.scss +85 -44
  30. data/vendor/assets/stylesheets/bootswatch/united/_variables.scss +143 -38
  31. metadata +5 -2
@@ -1,8 +1,6 @@
1
- // Variables to customize the look and feel of Bootstrap
2
- // Swatch: Cerulean
3
- // Version: 2.0.2
4
- // -----------------------------------------------------
5
-
1
+ // Cerulean 2.2.2
2
+ // Variables
3
+ // --------------------------------------------------
6
4
 
7
5
 
8
6
  // GLOBAL VALUES
@@ -16,13 +14,13 @@ $grayDarker: #222;
16
14
  $grayDark: #333;
17
15
  $gray: #555;
18
16
  $grayLight: #999;
19
- $grayLighter: #eee;
17
+ $grayLighter: #F5F5F5;
20
18
  $white: #fff;
21
19
 
22
20
 
23
21
  // Accent colors
24
22
  // -------------------------
25
- $blue: #3E78B3;
23
+ $blue: #2FA4E7;
26
24
  $blueDark: #033C73;
27
25
  $green: #73A839;
28
26
  $red: #C71C22;
@@ -40,22 +38,43 @@ $textColor: $gray;
40
38
 
41
39
  // Links
42
40
  // -------------------------
43
- $linkColor: #369BD7;
44
- $linkColorHover: darken($linkColor, .15);
41
+ $linkColor: $blue;
42
+ $linkColorHover: darken($linkColor, 15%);
45
43
 
46
44
 
47
45
  // Typography
48
46
  // -------------------------
49
- $baseFontSize: 13px;
50
- $baseFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif;
51
- $baseLineHeight: 18px;
52
- $altFontFamily: Georgia, "Times New Roman", Times, serif;
47
+ $sansFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif;
48
+ $serifFontFamily: Georgia, "Times New Roman", Times, serif;
49
+ $monoFontFamily: Menlo, Monaco, Consolas, "Courier New", monospace;
50
+
51
+ $baseFontSize: 14px;
52
+ $baseFontFamily: $sansFontFamily;
53
+ $baseLineHeight: 20px;
54
+ $altFontFamily: $monoFontFamily;
53
55
 
54
56
  $headingsFontFamily: 'Telex', sans-serif; // empty to use BS default, $baseFontFamily
55
57
  $headingsFontWeight: bold; // instead of browser default, bold
56
58
  $headingsColor: #317EAC; // empty to use BS default, $textColor
57
59
 
58
60
 
61
+ // Component sizing
62
+ // -------------------------
63
+ // Based on 14px font-size and 20px line-height
64
+
65
+ $fontSizeLarge: $baseFontSize * 1.25; // ~18px
66
+ $fontSizeSmall: $baseFontSize * 0.85; // ~12px
67
+ $fontSizeMini: $baseFontSize * 0.75; // ~11px
68
+
69
+ $paddingLarge: 11px 19px; // 44px
70
+ $paddingSmall: 2px 10px; // 26px
71
+ $paddingMini: 0px 6px; // 22px
72
+
73
+ $baseBorderRadius: 4px;
74
+ $borderRadiusLarge: 6px;
75
+ $borderRadiusSmall: 3px;
76
+
77
+
59
78
  // Tables
60
79
  // -------------------------
61
80
  $tableBackground: transparent; // overall background-color
@@ -63,15 +82,14 @@ $tableBackgroundAccent: #f9f9f9; // for striping
63
82
  $tableBackgroundHover: #f5f5f5; // for hover
64
83
  $tableBorder: #ddd; // table and cell border
65
84
 
66
-
67
85
  // Buttons
68
86
  // -------------------------
69
87
  $btnBackground: $white;
70
- $btnBackgroundHighlight: darken($white, .1);
71
- $btnBorder: darken($white, .2);
88
+ $btnBackgroundHighlight: darken($white, 10%);
89
+ $btnBorder: darken($white, 20%);
72
90
 
73
91
  $btnPrimaryBackground: $linkColor;
74
- $btnPrimaryBackgroundHighlight: adjust-hue($btnPrimaryBackground, .15);
92
+ $btnPrimaryBackgroundHighlight: adjust-hue($btnPrimaryBackground, 15%);
75
93
 
76
94
  $btnInfoBackground: $purple;
77
95
  $btnInfoBackgroundHighlight: #2f96b4;
@@ -85,7 +103,7 @@ $btnWarningBackgroundHighlight: $orange;
85
103
  $btnDangerBackground: $red;
86
104
  $btnDangerBackgroundHighlight: #bd362f;
87
105
 
88
- $btnInverseBackground: $yellow;
106
+ $btnInverseBackground: $blueDark;
89
107
  $btnInverseBackgroundHighlight: $grayDarker;
90
108
 
91
109
 
@@ -93,23 +111,32 @@ $btnInverseBackgroundHighlight: $grayDarker;
93
111
  // -------------------------
94
112
  $inputBackground: $white;
95
113
  $inputBorder: #ccc;
114
+ $inputBorderRadius: $baseBorderRadius;
96
115
  $inputDisabledBackground: $grayLighter;
116
+ $formActionsBackground: #f5f5f5;
117
+ $inputHeight: $baseLineHeight + 10px; // base line-height + 8px vertical padding + 2px top/bottom border
97
118
 
98
119
 
99
120
  // Dropdowns
100
121
  // -------------------------
101
122
  $dropdownBackground: $white;
102
123
  $dropdownBorder: rgba(0,0,0,.2);
124
+ $dropdownDividerTop: #e5e5e5;
125
+ $dropdownDividerBottom: $white;
126
+
103
127
  $dropdownLinkColor: $grayDark;
104
128
  $dropdownLinkColorHover: $white;
105
- $dropdownLinkBackgroundHover: $linkColor;
129
+ $dropdownLinkColorActive: $white;
106
130
 
131
+ $dropdownLinkBackgroundActive: $linkColor;
132
+ $dropdownLinkBackgroundHover: $dropdownLinkBackgroundActive;
107
133
 
108
134
 
109
135
 
110
136
  // COMPONENT VARIABLES
111
137
  // --------------------------------------------------
112
138
 
139
+
113
140
  // Z-index master list
114
141
  // -------------------------
115
142
  // Used for a bird's eye view of components dependent on the z-axis
@@ -122,6 +149,12 @@ $zindexModalBackdrop: 1040;
122
149
  $zindexModal: 1050;
123
150
 
124
151
 
152
+ // Sprite icons path
153
+ // -------------------------
154
+ $iconSpritePath: "../img/glyphicons-halflings.png";
155
+ $iconWhiteSpritePath: "../img/glyphicons-halflings-white.png";
156
+
157
+
125
158
  // Input placeholder text color
126
159
  // -------------------------
127
160
  $placeholderText: $grayLight;
@@ -132,23 +165,60 @@ $placeholderText: $grayLight;
132
165
  $hrBorder: $grayLighter;
133
166
 
134
167
 
168
+ // Horizontal forms & lists
169
+ // -------------------------
170
+ $horizontalComponentOffset: 180px;
171
+
172
+
173
+ // Wells
174
+ // -------------------------
175
+ $wellBackground: #f5f5f5;
176
+
177
+
135
178
  // Navbar
136
179
  // -------------------------
137
- $navbarHeight: 40px;
138
- $navbarBackground: $linkColor;
139
- $navbarBackgroundHighlight: lighten($linkColor, .1);
180
+ $navbarCollapseWidth: 979px;
181
+ $navbarCollapseDesktopWidth: $navbarCollapseWidth + 1;
182
+
183
+ $navbarHeight: 50px;
184
+ $navbarBackground: $blue;
185
+ $navbarBackgroundHighlight: lighten($navbarBackground, 8%);
186
+ $navbarBorder: darken($navbarBackground, 8%);
140
187
 
141
188
  $navbarText: $grayLighter;
142
- $navbarLinkColor: $grayLighter;
189
+ $navbarLinkColor: $white;
143
190
  $navbarLinkColorHover: $white;
144
191
  $navbarLinkColorActive: $navbarLinkColorHover;
145
- $navbarLinkBackgroundHover: transparent;
146
- $navbarLinkBackgroundActive: $navbarBackground;
192
+ $navbarLinkBackgroundHover: darken($navbarBackground, 12%);
193
+ $navbarLinkBackgroundActive: darken($navbarBackground, 12%);
194
+
195
+ $navbarBrandColor: $navbarLinkColor;
196
+
197
+ // Inverted navbar
198
+ $navbarInverseBackground: $blueDark;
199
+ $navbarInverseBackgroundHighlight: lighten($navbarInverseBackground, 5%);
200
+ $navbarInverseBorder: darken($navbarInverseBackground, 3%);
147
201
 
148
- $navbarSearchBackground: lighten($navbarBackground, .25);
149
- $navbarSearchBackgroundFocus: $white;
150
- $navbarSearchBorder: darken($navbarSearchBackground, .3);
151
- $navbarSearchPlaceholderColor: $white;
202
+ $navbarInverseText: $white;
203
+ $navbarInverseLinkColor: $white;
204
+ $navbarInverseLinkColorHover: $white;
205
+ $navbarInverseLinkColorActive: $white;
206
+ $navbarInverseLinkBackgroundHover: darken($navbarInverseBackground, 6%);
207
+ $navbarInverseLinkBackgroundActive: darken($navbarInverseBackground, 6%);
208
+
209
+ $navbarInverseSearchBackground: $white;
210
+ $navbarInverseSearchBackgroundFocus: $white;
211
+ $navbarInverseSearchBorder: $navbarInverseBackground;
212
+ $navbarInverseSearchPlaceholderColor: $grayLight;
213
+
214
+ $navbarInverseBrandColor: $navbarInverseLinkColor;
215
+
216
+
217
+ // Pagination
218
+ // -------------------------
219
+ $paginationBackground: #fff;
220
+ $paginationBorder: #ddd;
221
+ $paginationActiveBackground: #f5f5f5;
152
222
 
153
223
 
154
224
  // Hero unit
@@ -160,28 +230,45 @@ $heroUnitLeadColor: inherit;
160
230
 
161
231
  // Form states and alerts
162
232
  // -------------------------
163
- $warningText: darken($linkColor, .2);
164
- $warningBackground: lighten($linkColor, .2);
165
- $warningBorder: darken(adjust-hue($warningBackground, -10), .03);
233
+ $warningText: $orange;
234
+ $warningBackground: #F1CEAB;
235
+ $warningBorder: darken(adjust-hue($warningBackground, -10), 3%);
166
236
 
167
- $errorText: darken(#C45559, .05);
168
- $errorBackground: #EDDBE3;
169
- $errorBorder: darken(adjust-hue($errorBackground, -10), .03);
237
+ $errorText: darken(#C45559, 5%);
238
+ $errorBackground: #F2BDB1;
239
+ $errorBorder: darken(adjust-hue($errorBackground, -10), 3%);
170
240
 
171
- $successText: darken($green, .05);
172
- $successBackground: #CDB;
173
- $successBorder: darken(adjust-hue($successBackground, -10), .05);
241
+ $successText: darken($green, 5%);
242
+ $successBackground: #D5ECBF;
243
+ $successBorder: darken(adjust-hue($successBackground, -10), 5%);
174
244
 
175
- $infoText: darken(#908A62, .05);
176
- $infoBackground: #EDEBE1;
177
- $infoBorder: darken(adjust-hue($infoBackground, -10), .07);
245
+ $infoText: darken(#908A62, 5%);
246
+ $infoBackground: #A7DFF1;
247
+ $infoBorder: darken(adjust-hue($infoBackground, -10), 7%);
178
248
 
179
249
 
250
+ // Tooltips and popovers
251
+ // -------------------------
252
+ $tooltipColor: #fff;
253
+ $tooltipBackground: #000;
254
+ $tooltipArrowWidth: 5px;
255
+ $tooltipArrowColor: $tooltipBackground;
256
+
257
+ $popoverBackground: #fff;
258
+ $popoverArrowWidth: 10px;
259
+ $popoverArrowColor: #fff;
260
+ $popoverTitleBackground: darken($popoverBackground, 3%);
261
+
262
+ // Special enhancement for popovers
263
+ $popoverArrowOuterWidth: $popoverArrowWidth + 1;
264
+ $popoverArrowOuterColor: rgba(0,0,0,.25);
265
+
180
266
 
181
267
 
182
268
  // GRID
183
269
  // --------------------------------------------------
184
270
 
271
+
185
272
  // Default 940px grid
186
273
  // -------------------------
187
274
  $gridColumns: 12;
@@ -189,8 +276,26 @@ $gridColumnWidth: 60px;
189
276
  $gridGutterWidth: 20px;
190
277
  $gridRowWidth: ($gridColumns * $gridColumnWidth) + ($gridGutterWidth * ($gridColumns - 1));
191
278
 
279
+ // 1200px min
280
+ $gridColumnWidth1200: 70px;
281
+ $gridGutterWidth1200: 30px;
282
+ $gridRowWidth1200: ($gridColumns * $gridColumnWidth1200) + ($gridGutterWidth1200 * ($gridColumns - 1));
283
+
284
+ // 768px-979px
285
+ $gridColumnWidth768: 42px;
286
+ $gridGutterWidth768: 20px;
287
+ $gridRowWidth768: ($gridColumns * $gridColumnWidth768) + ($gridGutterWidth768 * ($gridColumns - 1));
288
+
192
289
 
193
290
  // Fluid grid
194
291
  // -------------------------
195
- $fluidGridColumnWidth: 6.382978723%;
196
- $fluidGridGutterWidth: 2.127659574%;
292
+ $fluidGridColumnWidth: percentage($gridColumnWidth/$gridRowWidth);
293
+ $fluidGridGutterWidth: percentage($gridGutterWidth/$gridRowWidth);
294
+
295
+ // 1200px min
296
+ $fluidGridColumnWidth1200: percentage($gridColumnWidth1200/$gridRowWidth1200);
297
+ $fluidGridGutterWidth1200: percentage($gridGutterWidth1200/$gridRowWidth1200);
298
+
299
+ // 768px-979px
300
+ $fluidGridColumnWidth768: percentage($gridColumnWidth768/$gridRowWidth768);
301
+ $fluidGridGutterWidth768: percentage($gridGutterWidth768/$gridRowWidth768);
@@ -1,12 +1,12 @@
1
- // Swatch: Cosmo
2
- // Version: 2.0.2
1
+ // Cosmo 2.2.2
2
+ // Bootswatch
3
3
  // -----------------------------------------------------
4
4
 
5
5
 
6
6
  // TYPOGRAPHY
7
7
  // -----------------------------------------------------
8
8
 
9
- @import url('https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700');
9
+ @import url('//fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700');
10
10
 
11
11
  body {
12
12
  font-weight: 300;
@@ -58,8 +58,8 @@ blockquote {
58
58
 
59
59
  .navbar-inner {
60
60
  background-image: none;
61
- @include box-shadow(none);
62
- @include border-radius(0);
61
+ @include box-shadow(none);
62
+ @include border-radius(0);
63
63
  }
64
64
 
65
65
  .brand {
@@ -72,7 +72,7 @@ blockquote {
72
72
  .nav > .active > a,
73
73
  .nav > .active > a:hover,
74
74
  .nav > .active > a:focus {
75
- @include box-shadow(none);
75
+ @include box-shadow(none);
76
76
  background-color: $navbarLinkBackgroundHover;
77
77
  }
78
78
 
@@ -102,7 +102,7 @@ blockquote {
102
102
  .nav > .active > a:hover,
103
103
  .nav > .active > a:focus {
104
104
  background-color: $navbarInverseLinkBackgroundHover;
105
- @include box-shadow(none);
105
+ @include box-shadow(none);
106
106
  color: $white;
107
107
  }
108
108
 
@@ -116,9 +116,9 @@ div.subnav {
116
116
 
117
117
  background-color: $grayLight;
118
118
  background-image: none;
119
- @include box-shadow(none);
120
- border-color: transparent;
121
- @include border-radius(0);
119
+ @include box-shadow(none);
120
+ border: none;
121
+ @include border-radius(0);
122
122
 
123
123
  .nav {
124
124
  background-color: transparent;
@@ -128,20 +128,16 @@ div.subnav {
128
128
  border-color: transparent;
129
129
  }
130
130
 
131
- .nav > .active > a {
131
+ .nav > .active > a,
132
+ .nav > .active > a:hover {
132
133
  border-color: transparent;
133
- background-color: transparent;
134
+ background-color: $black;
135
+ color: $white;
134
136
  // border-left-width: 2px;
135
137
  @include box-shadow(none);
136
- color: $grayDarker;
137
-
138
- &:hover {
139
- background-color: $black;
140
- color: $white;
141
- }
142
138
  }
143
139
 
144
- &.subnav-fixed {
140
+ div.subnav-fixed {
145
141
  top: $navbarHeight;
146
142
  }
147
143
  }
@@ -161,7 +157,7 @@ div.subnav {
161
157
  .nav-tabs {
162
158
 
163
159
  & > li > a {
164
- @include border-radius(0);
160
+ @include border-radius(0);
165
161
  }
166
162
 
167
163
  &.nav-stacked {
@@ -249,7 +245,7 @@ div.subnav {
249
245
  }
250
246
 
251
247
  & > .active > a,
252
- & > .active > span {
248
+ & > .active > span {
253
249
  color: $white;
254
250
  }
255
251
 
@@ -304,25 +300,28 @@ div.subnav {
304
300
  // -----------------------------------------------------
305
301
 
306
302
  .btn {
307
-
308
303
  padding: 5px 12px;
309
304
  background-image: none;
310
305
  @include box-shadow(none);
311
306
  border: none;
312
- @include border-radius(0);
307
+ @include border-radius(0);
313
308
  text-shadow: none;
314
309
 
315
310
  &.disabled {
316
- box-shadow: inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);
311
+ box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
317
312
  }
313
+ }
318
314
 
319
- &.btn-large {
320
- padding: 22px 30px;
321
- }
315
+ .btn-large {
316
+ padding: 22px 30px;
317
+ }
322
318
 
323
- &.btn-mini {
324
- padding: 2px 6px;
325
- }
319
+ .btn-small {
320
+ padding: 2px 10px;
321
+ }
322
+
323
+ .btn-mini {
324
+ padding: 2px 6px;
326
325
  }
327
326
 
328
327
  .btn-group {
@@ -355,7 +354,7 @@ div.subnav {
355
354
  color: $white;
356
355
  }
357
356
 
358
- &.table-bordered {
357
+ .table-bordered {
359
358
  @include border-radius(0);
360
359
 
361
360
  thead:first-child tr:first-child th:first-child,
@@ -385,7 +384,7 @@ input[type="search"], input[type="tel"], input[type="color"] {
385
384
 
386
385
  &.warning {
387
386
 
388
- & > label,
387
+ .control-label,
389
388
  .help-block,
390
389
  .help-inline {
391
390
  color: $orange;
@@ -401,7 +400,7 @@ input[type="search"], input[type="tel"], input[type="color"] {
401
400
 
402
401
  &.error {
403
402
 
404
- & > label,
403
+ .control-label,
405
404
  .help-block,
406
405
  .help-inline {
407
406
  color: $red;
@@ -417,7 +416,7 @@ input[type="search"], input[type="tel"], input[type="color"] {
417
416
 
418
417
  &.success {
419
418
 
420
- & > label,
419
+ .control-label,
421
420
  .help-block,
422
421
  .help-inline {
423
422
  color: $green;
@@ -456,7 +455,7 @@ legend {
456
455
  @include border-radius(0);
457
456
  text-shadow: none;
458
457
 
459
- &.alert-heading, h1, h2, h3, h4, h5, h6 {
458
+ .alert-heading, h1, h2, h3, h4, h5, h6 {
460
459
  color: $white;
461
460
  }
462
461
  }
@@ -468,42 +467,44 @@ legend {
468
467
  font-weight: 300;
469
468
  text-shadow: none;
470
469
 
471
- &.label-success {
470
+ .label-success {
472
471
  background-color: $green;
473
472
  }
474
473
 
475
- &.label-important {
474
+ .label-important {
476
475
  background-color: $red;
477
476
  }
478
477
 
479
- &.label-info {
478
+ .label-info {
480
479
  background-color: $purple;
481
480
  }
482
481
 
483
- &.label-inverse {
482
+ .label-inverse {
484
483
  background-color: $black;
485
484
  }
486
485
  }
487
486
 
488
487
  .badge {
489
- @include border-radius(0);
490
- font-weight: 300;
491
- text-shadow: none;
492
- .badge-success {
493
- background-color: $green;
494
- }
495
488
 
496
- .badge-important {
497
- background-color: $red;
498
- }
489
+ @include border-radius(0);
490
+ font-weight: 300;
491
+ text-shadow: none;
499
492
 
500
- .badge-info {
501
- background-color: $purple;
502
- }
493
+ .badge-success {
494
+ background-color: $green;
495
+ }
503
496
 
504
- .badge-inverse {
505
- background-color: $black;
506
- }
497
+ .badge-important {
498
+ background-color: $red;
499
+ }
500
+
501
+ .badge-info {
502
+ background-color: $purple;
503
+ }
504
+
505
+ .badge-inverse {
506
+ background-color: $black;
507
+ }
507
508
  }
508
509
 
509
510
  // MISC
@@ -547,19 +548,19 @@ a.thumbnail {
547
548
  background-image: none;
548
549
  }
549
550
 
550
- &.progress-info {
551
+ .progress-info {
551
552
  background-color: $purple;
552
553
  }
553
554
 
554
- &.progress-success {
555
+ .progress-success {
555
556
  background-color: $green;
556
557
  }
557
558
 
558
- &.progress-warning {
559
+ .progress-warning {
559
560
  background-color: $orange;
560
561
  }
561
562
 
562
- &.progress-danger {
563
+ .progress-danger {
563
564
  background-color: $red;
564
565
  }
565
566
  }
@@ -567,11 +568,11 @@ a.thumbnail {
567
568
  .modal {
568
569
  @include border-radius(0);
569
570
 
570
- &.modal-header {
571
+ .modal-header {
571
572
  border-bottom: none;
572
573
  }
573
574
 
574
- &.modal-footer {
575
+ .modal-footer {
575
576
  border-top: none;
576
577
  background-color: transparent;
577
578
  }
@@ -581,7 +582,7 @@ a.thumbnail {
581
582
  @include border-radius(0);
582
583
  color: $white;
583
584
 
584
- &.popover-title {
585
+ .popover-title {
585
586
  border-bottom: none;
586
587
  color: $white;
587
588
  }