bootswatch-rails 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -0
- data/lib/bootswatch-rails/version.rb +1 -1
- data/vendor/assets/stylesheets/bootswatch/amelia/_bootswatch.scss +13 -13
- data/vendor/assets/stylesheets/bootswatch/amelia/_variables.scss +15 -15
- data/vendor/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +9 -9
- data/vendor/assets/stylesheets/bootswatch/cerulean/_variables.scss +16 -16
- data/vendor/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +592 -0
- data/vendor/assets/stylesheets/bootswatch/cosmo/_variables.scss +302 -0
- data/vendor/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +16 -16
- data/vendor/assets/stylesheets/bootswatch/cyborg/_variables.scss +9 -9
- data/vendor/assets/stylesheets/bootswatch/journal/_bootswatch.scss +1 -1
- data/vendor/assets/stylesheets/bootswatch/journal/_variables.scss +11 -11
- data/vendor/assets/stylesheets/bootswatch/readable/_bootswatch.scss +1 -1
- data/vendor/assets/stylesheets/bootswatch/readable/_variables.scss +13 -13
- data/vendor/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +1 -1
- data/vendor/assets/stylesheets/bootswatch/simplex/_variables.scss +16 -16
- data/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss +26 -26
- data/vendor/assets/stylesheets/bootswatch/slate/_variables.scss +11 -11
- data/vendor/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +4 -4
- data/vendor/assets/stylesheets/bootswatch/spacelab/_variables.scss +16 -16
- data/vendor/assets/stylesheets/bootswatch/spruce/_bootswatch.scss +13 -13
- data/vendor/assets/stylesheets/bootswatch/spruce/_variables.scss +17 -17
- data/vendor/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +39 -39
- data/vendor/assets/stylesheets/bootswatch/superhero/_variables.scss +13 -13
- data/vendor/assets/stylesheets/bootswatch/united/_bootswatch.scss +3 -3
- data/vendor/assets/stylesheets/bootswatch/united/_variables.scss +17 -17
- metadata +12 -5
@@ -61,17 +61,17 @@ $headingsColor: inherit; // empty to use BS default, $textColor
|
|
61
61
|
$tableBackground: transparent; // overall background-color
|
62
62
|
$tableBackgroundAccent: #f9f9f9; // for striping
|
63
63
|
$tableBackgroundHover: #f5f5f5; // for hover
|
64
|
-
$tableBorder: darken($grayDarker,
|
64
|
+
$tableBorder: darken($grayDarker, .05); // table and cell border
|
65
65
|
|
66
66
|
|
67
67
|
// Buttons
|
68
68
|
// -------------------------
|
69
69
|
$btnBackground: $white;
|
70
|
-
$btnBackgroundHighlight: darken($white,
|
71
|
-
$btnBorder: darken($white,
|
70
|
+
$btnBackgroundHighlight: darken($white, .1);
|
71
|
+
$btnBorder: darken($white, .2);
|
72
72
|
|
73
73
|
$btnPrimaryBackground: $grayLight;
|
74
|
-
$btnPrimaryBackgroundHighlight: adjust-hue($btnPrimaryBackground, 15
|
74
|
+
$btnPrimaryBackgroundHighlight: adjust-hue($btnPrimaryBackground, .15);
|
75
75
|
|
76
76
|
$btnInfoBackground: #5bc0de;
|
77
77
|
$btnInfoBackgroundHighlight: #2f96b4;
|
@@ -79,7 +79,7 @@ $btnInfoBackgroundHighlight: #2f96b4;
|
|
79
79
|
$btnSuccessBackground: #62c462;
|
80
80
|
$btnSuccessBackgroundHighlight: #51a351;
|
81
81
|
|
82
|
-
$btnWarningBackground: lighten($orange, 15
|
82
|
+
$btnWarningBackground: lighten($orange, .15);
|
83
83
|
$btnWarningBackgroundHighlight: $orange;
|
84
84
|
|
85
85
|
$btnDangerBackground: #ee5f5b;
|
@@ -145,9 +145,9 @@ $navbarLinkColorActive: $navbarLinkColorHover;
|
|
145
145
|
$navbarLinkBackgroundHover: transparent;
|
146
146
|
$navbarLinkBackgroundActive: $navbarBackground;
|
147
147
|
|
148
|
-
$navbarSearchBackground: lighten($navbarBackground, 25
|
148
|
+
$navbarSearchBackground: lighten($navbarBackground, .25);
|
149
149
|
$navbarSearchBackgroundFocus: $white;
|
150
|
-
$navbarSearchBorder: darken($navbarSearchBackground,
|
150
|
+
$navbarSearchBorder: darken($navbarSearchBackground, .3);
|
151
151
|
$navbarSearchPlaceholderColor: #ccc;
|
152
152
|
|
153
153
|
|
@@ -162,19 +162,19 @@ $heroUnitLeadColor: inherit;
|
|
162
162
|
// -------------------------
|
163
163
|
$warningText: #c09853;
|
164
164
|
$warningBackground: #fcf8e3;
|
165
|
-
$warningBorder: darken(adjust-hue($warningBackground, -10),
|
165
|
+
$warningBorder: darken(adjust-hue($warningBackground, -10), .03);
|
166
166
|
|
167
167
|
$errorText: #b94a48;
|
168
168
|
$errorBackground: #f2dede;
|
169
|
-
$errorBorder: darken(adjust-hue($errorBackground, -10),
|
169
|
+
$errorBorder: darken(adjust-hue($errorBackground, -10), .03);
|
170
170
|
|
171
171
|
$successText: #468847;
|
172
172
|
$successBackground: #dff0d8;
|
173
|
-
$successBorder: darken(adjust-hue($successBackground, -10),
|
173
|
+
$successBorder: darken(adjust-hue($successBackground, -10), .05);
|
174
174
|
|
175
175
|
$infoText: #3a87ad;
|
176
176
|
$infoBackground: #d9edf7;
|
177
|
-
$infoBorder: darken(adjust-hue($infoBackground, -10),
|
177
|
+
$infoBorder: darken(adjust-hue($infoBackground, -10), .07);
|
178
178
|
|
179
179
|
|
180
180
|
|
@@ -210,11 +210,11 @@ div.subnav {
|
|
210
210
|
}
|
211
211
|
|
212
212
|
.btn-warning {
|
213
|
-
.buttonBackground(adjust-hue($yellow, 15
|
213
|
+
.buttonBackground(adjust-hue($yellow, .15), $yellow);
|
214
214
|
}
|
215
215
|
|
216
216
|
.btn-danger {
|
217
|
-
.buttonBackground(adjust-hue(#DA2D2D, 15
|
217
|
+
.buttonBackground(adjust-hue(#DA2D2D, .15), #DA2D2D);
|
218
218
|
}
|
219
219
|
|
220
220
|
.btn-success {
|
@@ -222,11 +222,11 @@ div.subnav {
|
|
222
222
|
}
|
223
223
|
|
224
224
|
.btn-info {
|
225
|
-
.buttonBackground(adjust-hue(#4488BB, 15
|
225
|
+
.buttonBackground(adjust-hue(#4488BB, .15), #4488BB);
|
226
226
|
}
|
227
227
|
|
228
228
|
.btn-inverse {
|
229
|
-
.buttonBackground(adjust-hue($purple,
|
229
|
+
.buttonBackground(adjust-hue($purple, .05), $purple);
|
230
230
|
}*/
|
231
231
|
|
232
232
|
// TABLES
|
@@ -70,27 +70,27 @@ $tableBorder: #ddd; // table and cell border
|
|
70
70
|
// -------------------------
|
71
71
|
$btnBackground: $white;
|
72
72
|
$btnBackgroundHighlight: $grayLighter;
|
73
|
-
$btnBorder: darken($btnBackground,
|
73
|
+
$btnBorder: darken($btnBackground, .2);
|
74
74
|
|
75
|
-
$btnPrimaryBackground: lighten($linkColor, 15
|
75
|
+
$btnPrimaryBackground: lighten($linkColor, .15);
|
76
76
|
$btnPrimaryBackgroundHighlight: $linkColor;
|
77
77
|
|
78
|
-
$btnInfoBackground: lighten($grayLight, 15
|
78
|
+
$btnInfoBackground: lighten($grayLight, .15);
|
79
79
|
$btnInfoBackgroundHighlight: $grayLight;
|
80
80
|
|
81
|
-
$btnSuccessBackground: lighten($green, 15
|
81
|
+
$btnSuccessBackground: lighten($green, .15);
|
82
82
|
$btnSuccessBackgroundHighlight: $green;
|
83
83
|
|
84
|
-
$btnWarningBackground: lighten($orange, 15
|
84
|
+
$btnWarningBackground: lighten($orange, .15);
|
85
85
|
$btnWarningBackgroundHighlight: $orange;
|
86
86
|
|
87
|
-
$btnDangerBackground: lighten($red, 15
|
87
|
+
$btnDangerBackground: lighten($red, .15);
|
88
88
|
$btnDangerBackgroundHighlight: $red;
|
89
89
|
|
90
90
|
// To avoid use variable not defined yet
|
91
91
|
$navbarInverseBackground: #6C737E;
|
92
92
|
|
93
|
-
$btnInverseBackground: lighten($navbarInverseBackground, 15
|
93
|
+
$btnInverseBackground: lighten($navbarInverseBackground, .15);
|
94
94
|
$btnInverseBackgroundHighlight: $navbarInverseBackground;
|
95
95
|
|
96
96
|
|
@@ -161,7 +161,7 @@ $navbarCollapseWidth: 979px;
|
|
161
161
|
$navbarHeight: 40px;
|
162
162
|
$navbarBackgroundHighlight: #eee;
|
163
163
|
$navbarBackground: $grayLight;
|
164
|
-
$navbarBorder: darken($navbarBackground,
|
164
|
+
$navbarBorder: darken($navbarBackground, .05);
|
165
165
|
|
166
166
|
$navbarText: $textColor;
|
167
167
|
$navbarLinkColor: $textColor;
|
@@ -174,8 +174,8 @@ $navbarBrandColor: $grayDark;
|
|
174
174
|
|
175
175
|
// Inverted navbar
|
176
176
|
$navbarInverseBackground: #6C737E;
|
177
|
-
$navbarInverseBackgroundHighlight: lighten($navbarInverseBackground, 25
|
178
|
-
$navbarInverseBorder: darken($navbarInverseBackground,
|
177
|
+
$navbarInverseBackgroundHighlight: lighten($navbarInverseBackground, .25);
|
178
|
+
$navbarInverseBorder: darken($navbarInverseBackground, .05);
|
179
179
|
|
180
180
|
$navbarInverseText: $grayLighter;
|
181
181
|
$navbarInverseLinkColor: $grayLighter;
|
@@ -184,7 +184,7 @@ $navbarInverseLinkColorActive: $white;
|
|
184
184
|
$navbarInverseLinkBackgroundHover: transparent;
|
185
185
|
$navbarInverseLinkBackgroundActive: $navbarInverseBackground;
|
186
186
|
|
187
|
-
$navbarInverseSearchBackground: lighten($navbarInverseBackground, 25
|
187
|
+
$navbarInverseSearchBackground: lighten($navbarInverseBackground, .25);
|
188
188
|
$navbarInverseSearchBackgroundFocus: $white;
|
189
189
|
$navbarInverseSearchBorder: $navbarInverseBackground;
|
190
190
|
$navbarInverseSearchPlaceholderColor: $grayLighter;
|
@@ -210,19 +210,19 @@ $heroUnitLeadColor: inherit;
|
|
210
210
|
// -------------------------
|
211
211
|
$warningText: $white;
|
212
212
|
$warningBackground: $orange;
|
213
|
-
$warningBorder: darken(adjust-hue($warningBackground, -10),
|
213
|
+
$warningBorder: darken(adjust-hue($warningBackground, -10), .03);
|
214
214
|
|
215
215
|
$errorText: $white;
|
216
216
|
$errorBackground: $red;
|
217
|
-
$errorBorder: darken(adjust-hue($errorBackground, -10),
|
217
|
+
$errorBorder: darken(adjust-hue($errorBackground, -10), .03);
|
218
218
|
|
219
219
|
$successText: $white;
|
220
220
|
$successBackground: $green;
|
221
|
-
$successBorder: darken(adjust-hue($successBackground, -10),
|
221
|
+
$successBorder: darken(adjust-hue($successBackground, -10), .05);
|
222
222
|
|
223
223
|
$infoText: $white;
|
224
224
|
$infoBackground: $blue;
|
225
|
-
$infoBorder: darken(adjust-hue($infoBackground, -10),
|
225
|
+
$infoBorder: darken(adjust-hue($infoBackground, -10), .07);
|
226
226
|
|
227
227
|
// Tooltips and popovers
|
228
228
|
// -------------------------
|
@@ -234,7 +234,7 @@ $tooltipArrowColor: $tooltipBackground;
|
|
234
234
|
$popoverBackground: #fff;
|
235
235
|
$popoverArrowWidth: 10px;
|
236
236
|
$popoverArrowColor: #fff;
|
237
|
-
$popoverTitleBackground: darken($popoverBackground,
|
237
|
+
$popoverTitleBackground: darken($popoverBackground, .03);
|
238
238
|
|
239
239
|
// Special enhancement for popovers
|
240
240
|
$popoverArrowOuterWidth: $popoverArrowWidth + 1;
|
@@ -35,7 +35,7 @@ h1 > small, h2 > small, h3 > small, h4 > small, h5 > small, h6 > small, .muted {
|
|
35
35
|
// --------------------------------------------------
|
36
36
|
|
37
37
|
body {
|
38
|
-
@include gradient-vertical-three-colors (#90A38F, #AEAD8E,
|
38
|
+
@include gradient-vertical-three-colors (#90A38F, #AEAD8E, .6, #90A38F);
|
39
39
|
background-size: 100% 1400px;
|
40
40
|
background-repeat: repeat-y !important;
|
41
41
|
}
|
@@ -53,7 +53,7 @@ blockquote {
|
|
53
53
|
}
|
54
54
|
|
55
55
|
code, pre {
|
56
|
-
color: lighten($blueDark,
|
56
|
+
color: lighten($blueDark, .1);
|
57
57
|
background-color: $linkColor;
|
58
58
|
}
|
59
59
|
|
@@ -107,7 +107,7 @@ code, pre {
|
|
107
107
|
}
|
108
108
|
|
109
109
|
.navbar .nav > .dropdown.open > .dropdown-menu a:hover {
|
110
|
-
background-color: darken(#90A38F,
|
110
|
+
background-color: darken(#90A38F, .1);
|
111
111
|
color: $linkColor;
|
112
112
|
}
|
113
113
|
|
@@ -150,7 +150,7 @@ div.subnav .dropdown.open > .dropdown-menu {
|
|
150
150
|
}
|
151
151
|
|
152
152
|
div.subnav .dropdown.open > .dropdown-menu a:hover {
|
153
|
-
background-color: darken(#90A38F,
|
153
|
+
background-color: darken(#90A38F, .1);
|
154
154
|
color: $linkColor;
|
155
155
|
}
|
156
156
|
|
@@ -211,7 +211,7 @@ div.subnav-fixed {
|
|
211
211
|
|
212
212
|
.table th,
|
213
213
|
.table-striped tbody tr:nth-child(odd) th {
|
214
|
-
background-color: darken(#90A38F,
|
214
|
+
background-color: darken(#90A38F, .1);
|
215
215
|
color: $linkColor;
|
216
216
|
}
|
217
217
|
|
@@ -219,7 +219,7 @@ div.subnav-fixed {
|
|
219
219
|
// --------------------------------------------------
|
220
220
|
|
221
221
|
.btn {
|
222
|
-
@include buttonBackground(lighten($blueDark,
|
222
|
+
@include buttonBackground(lighten($blueDark, .05), $blueDark);
|
223
223
|
text-shadow: none;
|
224
224
|
color: $white;
|
225
225
|
border-color: transparent;
|
@@ -235,15 +235,15 @@ div.subnav-fixed {
|
|
235
235
|
}
|
236
236
|
|
237
237
|
.btn-primary {
|
238
|
-
@include buttonBackground(lighten($blue,
|
238
|
+
@include buttonBackground(lighten($blue, .1), lighten($blue, .05));
|
239
239
|
}
|
240
240
|
|
241
241
|
.btn-warning {
|
242
|
-
@include buttonBackground($orange, darken($orange,
|
242
|
+
@include buttonBackground($orange, darken($orange, .05));
|
243
243
|
}
|
244
244
|
|
245
245
|
.btn-danger {
|
246
|
-
@include buttonBackground(lighten($red,
|
246
|
+
@include buttonBackground(lighten($red, .05), $red);
|
247
247
|
}
|
248
248
|
|
249
249
|
.btn-success {
|
@@ -255,7 +255,7 @@ div.subnav-fixed {
|
|
255
255
|
}
|
256
256
|
|
257
257
|
.btn-inverse {
|
258
|
-
@include buttonBackground($yellow, darken($yellow,
|
258
|
+
@include buttonBackground($yellow, darken($yellow, .05));
|
259
259
|
}
|
260
260
|
|
261
261
|
.btn-group .dropdown-toggle {
|
@@ -266,7 +266,7 @@ div.subnav-fixed {
|
|
266
266
|
// --------------------------------------------------
|
267
267
|
|
268
268
|
.breadcrumb, .pagination > ul {
|
269
|
-
background-color: darken(#90A38F,
|
269
|
+
background-color: darken(#90A38F, .1);
|
270
270
|
background-image: none;
|
271
271
|
border-color: transparent;
|
272
272
|
@include box-shadow(none);
|
@@ -443,7 +443,7 @@ legend {
|
|
443
443
|
}
|
444
444
|
|
445
445
|
.progress {
|
446
|
-
background-color: darken(#90A38F,
|
446
|
+
background-color: darken(#90A38F, .1);
|
447
447
|
background-image: none;
|
448
448
|
@include box-shadow(none);
|
449
449
|
|
@@ -454,7 +454,7 @@ legend {
|
|
454
454
|
}
|
455
455
|
|
456
456
|
.well {
|
457
|
-
background-color: darken(#90A38F,
|
457
|
+
background-color: darken(#90A38F, .1);
|
458
458
|
border: none;
|
459
459
|
@include box-shadow(none);
|
460
460
|
}
|
@@ -59,19 +59,19 @@ $headingsColor: inherit; // empty to use BS default, $textColor
|
|
59
59
|
// Tables
|
60
60
|
// -------------------------
|
61
61
|
$tableBackground: #C3C7AE; // overall background-color
|
62
|
-
$tableBackgroundAccent: darken(#C3C7AE,
|
63
|
-
$tableBackgroundHover: darken(#C3C7AE,
|
62
|
+
$tableBackgroundAccent: darken(#C3C7AE, .05); // for striping
|
63
|
+
$tableBackgroundHover: darken(#C3C7AE, .1); // for hover
|
64
64
|
$tableBorder: $linkColor; // table and cell border
|
65
65
|
|
66
66
|
|
67
67
|
// Buttons
|
68
68
|
// -------------------------
|
69
69
|
$btnBackground: $white;
|
70
|
-
$btnBackgroundHighlight: darken($white,
|
71
|
-
$btnBorder: darken($white,
|
70
|
+
$btnBackgroundHighlight: darken($white, .1);
|
71
|
+
$btnBorder: darken($white, .2);
|
72
72
|
|
73
73
|
$btnPrimaryBackground: $linkColor;
|
74
|
-
$btnPrimaryBackgroundHighlight: adjust-hue($btnPrimaryBackground, 15
|
74
|
+
$btnPrimaryBackgroundHighlight: adjust-hue($btnPrimaryBackground, .15);
|
75
75
|
|
76
76
|
$btnInfoBackground: #5bc0de;
|
77
77
|
$btnInfoBackgroundHighlight: #2f96b4;
|
@@ -79,7 +79,7 @@ $btnInfoBackgroundHighlight: #2f96b4;
|
|
79
79
|
$btnSuccessBackground: #62c462;
|
80
80
|
$btnSuccessBackgroundHighlight: #51a351;
|
81
81
|
|
82
|
-
$btnWarningBackground: lighten($orange, 15
|
82
|
+
$btnWarningBackground: lighten($orange, .15);
|
83
83
|
$btnWarningBackgroundHighlight: $orange;
|
84
84
|
|
85
85
|
$btnDangerBackground: #ee5f5b;
|
@@ -145,9 +145,9 @@ $navbarLinkColorActive: $navbarLinkColorHover;
|
|
145
145
|
$navbarLinkBackgroundHover: transparent;
|
146
146
|
$navbarLinkBackgroundActive: $navbarBackground;
|
147
147
|
|
148
|
-
$navbarSearchBackground: lighten($navbarBackground, 25
|
148
|
+
$navbarSearchBackground: lighten($navbarBackground, .25);
|
149
149
|
$navbarSearchBackgroundFocus: $white;
|
150
|
-
$navbarSearchBorder: darken($navbarSearchBackground,
|
150
|
+
$navbarSearchBorder: darken($navbarSearchBackground, .3);
|
151
151
|
$navbarSearchPlaceholderColor: #ccc;
|
152
152
|
|
153
153
|
|
@@ -161,20 +161,20 @@ $heroUnitLeadColor: inherit;
|
|
161
161
|
// Form states and alerts
|
162
162
|
// -------------------------
|
163
163
|
$warningText: $orange;
|
164
|
-
$warningBackground: darken(#90A38F,
|
165
|
-
$warningBorder: darken(adjust-hue($warningBackground, -10),
|
164
|
+
$warningBackground: darken(#90A38F, .1);
|
165
|
+
$warningBorder: darken(adjust-hue($warningBackground, -10), .03);
|
166
166
|
|
167
|
-
$errorText: lighten($red, 25
|
168
|
-
$errorBackground: darken(#90A38F,
|
169
|
-
$errorBorder: darken(adjust-hue($errorBackground, -10),
|
167
|
+
$errorText: lighten($red, .25);
|
168
|
+
$errorBackground: darken(#90A38F, .1);
|
169
|
+
$errorBorder: darken(adjust-hue($errorBackground, -10), .03);
|
170
170
|
|
171
171
|
$successText: #9ED99C;
|
172
|
-
$successBackground: darken(#90A38F,
|
173
|
-
$successBorder: darken(adjust-hue($successBackground, -10),
|
172
|
+
$successBackground: darken(#90A38F, .1);
|
173
|
+
$successBorder: darken(adjust-hue($successBackground, -10), .05);
|
174
174
|
|
175
175
|
$infoText: #9BCACD;
|
176
|
-
$infoBackground: darken(#90A38F,
|
177
|
-
$infoBorder: darken(adjust-hue($infoBackground, -10),
|
176
|
+
$infoBackground: darken(#90A38F, .1);
|
177
|
+
$infoBorder: darken(adjust-hue($infoBackground, -10), .07);
|
178
178
|
|
179
179
|
|
180
180
|
|
@@ -12,11 +12,11 @@ h6, legend,
|
|
12
12
|
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
|
13
13
|
font-family: $headingsFontFamily;
|
14
14
|
color: $orange;
|
15
|
-
text-shadow: -1px 1px 0 darken($orange,
|
15
|
+
text-shadow: -1px 1px 0 darken($orange, .3);
|
16
16
|
}
|
17
17
|
|
18
18
|
h1, h2, legend {
|
19
|
-
text-shadow: -2px 2px 0 darken($orange,
|
19
|
+
text-shadow: -2px 2px 0 darken($orange, .3);
|
20
20
|
}
|
21
21
|
|
22
22
|
h1 {
|
@@ -27,7 +27,7 @@ h1 {
|
|
27
27
|
// --------------------------------------------------
|
28
28
|
|
29
29
|
code, pre {
|
30
|
-
background-color: lighten($blue,
|
30
|
+
background-color: lighten($blue, .08);
|
31
31
|
border: none;
|
32
32
|
color: $textColor;
|
33
33
|
}
|
@@ -59,7 +59,7 @@ blockquote.pull-right {
|
|
59
59
|
padding: 25px 20px 15px;
|
60
60
|
font-family: $headingsFontFamily;
|
61
61
|
font-size: 30px;
|
62
|
-
text-shadow: -2px 2px 0 darken($orange,
|
62
|
+
text-shadow: -2px 2px 0 darken($orange, .3);
|
63
63
|
}
|
64
64
|
|
65
65
|
.nav > li > a {
|
@@ -67,7 +67,7 @@ blockquote.pull-right {
|
|
67
67
|
line-height: 30px;
|
68
68
|
font-family: $headingsFontFamily;
|
69
69
|
font-size: 22px;
|
70
|
-
text-shadow: -2px 2px 0 darken($orange,
|
70
|
+
text-shadow: -2px 2px 0 darken($orange, .3);
|
71
71
|
}
|
72
72
|
|
73
73
|
.navbar-text {
|
@@ -91,7 +91,7 @@ blockquote.pull-right {
|
|
91
91
|
top: 1px;
|
92
92
|
left: -1px;
|
93
93
|
color: $orange;
|
94
|
-
text-shadow: -1px 1px 0 darken($orange,
|
94
|
+
text-shadow: -1px 1px 0 darken($orange, .3);
|
95
95
|
}
|
96
96
|
|
97
97
|
.navbar-search {
|
@@ -125,7 +125,7 @@ blockquote.pull-right {
|
|
125
125
|
left: 20px;
|
126
126
|
border-left: 7px solid transparent;
|
127
127
|
border-right: 7px solid transparent;
|
128
|
-
border-bottom: 7px solid lighten($blue,
|
128
|
+
border-bottom: 7px solid lighten($blue, .1);
|
129
129
|
}
|
130
130
|
|
131
131
|
.btn-navbar {
|
@@ -143,7 +143,7 @@ blockquote.pull-right {
|
|
143
143
|
|
144
144
|
li > a:hover {
|
145
145
|
color: $textColor;
|
146
|
-
background-color: lighten($blue,
|
146
|
+
background-color: lighten($blue, .1);
|
147
147
|
}
|
148
148
|
}
|
149
149
|
|
@@ -151,7 +151,7 @@ blockquote.pull-right {
|
|
151
151
|
color: $orange;
|
152
152
|
|
153
153
|
&:hover {
|
154
|
-
background-color: lighten($blue,
|
154
|
+
background-color: lighten($blue, .1);
|
155
155
|
}
|
156
156
|
}
|
157
157
|
}
|
@@ -161,7 +161,7 @@ blockquote.pull-right {
|
|
161
161
|
opacity: 1;
|
162
162
|
border-left: 6px solid transparent;
|
163
163
|
border-right: 6px solid transparent;
|
164
|
-
border-top: 6px solid lighten($blue,
|
164
|
+
border-top: 6px solid lighten($blue, .1);
|
165
165
|
}
|
166
166
|
|
167
167
|
div.subnav {
|
@@ -178,7 +178,7 @@ div.subnav {
|
|
178
178
|
|
179
179
|
.nav > li > a:hover,
|
180
180
|
.nav > li.active > a:hover {
|
181
|
-
background-color: lighten($blue,
|
181
|
+
background-color: lighten($blue, .1);
|
182
182
|
}
|
183
183
|
|
184
184
|
.nav > li + li > a {
|
@@ -259,7 +259,7 @@ div.subnav {
|
|
259
259
|
.btn:hover {
|
260
260
|
text-shadow: none;
|
261
261
|
background-image: none;
|
262
|
-
@include box-shadow(-2px 2px 0 darken($white,
|
262
|
+
@include box-shadow(-2px 2px 0 darken($white, .8));
|
263
263
|
border: none;
|
264
264
|
}
|
265
265
|
|
@@ -268,55 +268,55 @@ div.subnav {
|
|
268
268
|
}
|
269
269
|
|
270
270
|
.btn-primary, .btn-primary:hover {
|
271
|
-
@include box-shadow(-2px 2px 0 darken($btnPrimaryBackground,
|
271
|
+
@include box-shadow(-2px 2px 0 darken($btnPrimaryBackground, .3));
|
272
272
|
}
|
273
273
|
|
274
274
|
.btn-warning, .btn-warning:hover {
|
275
|
-
@include box-shadow(-2px 2px 0 darken($yellow,
|
275
|
+
@include box-shadow(-2px 2px 0 darken($yellow, .3));
|
276
276
|
}
|
277
277
|
|
278
278
|
.btn-danger, .btn-danger:hover {
|
279
|
-
@include box-shadow(-2px 2px 0 darken(#ee5f5b,
|
279
|
+
@include box-shadow(-2px 2px 0 darken(#ee5f5b, .3));
|
280
280
|
}
|
281
281
|
|
282
282
|
.btn-success, .btn-success:hover {
|
283
|
-
@include box-shadow(-2px 2px 0 darken(#62c462,
|
283
|
+
@include box-shadow(-2px 2px 0 darken(#62c462, .3));
|
284
284
|
}
|
285
285
|
|
286
286
|
.btn-info, .btn-info:hover {
|
287
|
-
@include box-shadow(-2px 2px 0 darken(#5bc0de,
|
287
|
+
@include box-shadow(-2px 2px 0 darken(#5bc0de, .4));
|
288
288
|
}
|
289
289
|
|
290
290
|
.btn-inverse, .btn-inverse:hover {
|
291
|
-
@include box-shadow(-2px 2px 0 darken(#454545,
|
291
|
+
@include box-shadow(-2px 2px 0 darken(#454545, .2));
|
292
292
|
}
|
293
293
|
|
294
294
|
.btn.dropdown-toggle, .btn.dropdown-toggle:hover {
|
295
|
-
@include box-shadow(0 2px 0 darken($white,
|
295
|
+
@include box-shadow(0 2px 0 darken($white, .8));
|
296
296
|
}
|
297
297
|
|
298
298
|
.btn-primary.dropdown-toggle, .btn-primary.dropdown-toggle:hover {
|
299
|
-
@include box-shadow(0 2px 0 darken($btnPrimaryBackground,
|
299
|
+
@include box-shadow(0 2px 0 darken($btnPrimaryBackground, .3));
|
300
300
|
}
|
301
301
|
|
302
302
|
.btn-warning.dropdown-toggle, .btn-warning.dropdown-toggle:hover {
|
303
|
-
@include box-shadow(0 2px 0 darken($yellow,
|
303
|
+
@include box-shadow(0 2px 0 darken($yellow, .3));
|
304
304
|
}
|
305
305
|
|
306
306
|
.btn-danger.dropdown-toggle, .btn-danger.dropdown-toggle:hover {
|
307
|
-
@include box-shadow(0 2px 0 darken(#ee5f5b,
|
307
|
+
@include box-shadow(0 2px 0 darken(#ee5f5b, .3));
|
308
308
|
}
|
309
309
|
|
310
310
|
.btn-success.dropdown-toggle, .btn-success.dropdown-toggle:hover {
|
311
|
-
@include box-shadow(0 2px 0 darken(#62c462,
|
311
|
+
@include box-shadow(0 2px 0 darken(#62c462, .3));
|
312
312
|
}
|
313
313
|
|
314
314
|
.btn-info.dropdown-toggle, .btn-info.dropdown-toggle:hover {
|
315
|
-
@include box-shadow(0 2px 0 darken(#5bc0de,
|
315
|
+
@include box-shadow(0 2px 0 darken(#5bc0de, .4));
|
316
316
|
}
|
317
317
|
|
318
318
|
.btn-inverse.dropdown-toggle, .btn-inverse.dropdown-toggle:hover {
|
319
|
-
@include box-shadow(0 2px 0 darken(#454545,
|
319
|
+
@include box-shadow(0 2px 0 darken(#454545, .2));
|
320
320
|
}
|
321
321
|
|
322
322
|
.btn.active,
|
@@ -324,7 +324,7 @@ div.subnav {
|
|
324
324
|
position: relative;
|
325
325
|
top: 1px;
|
326
326
|
left: -1px;
|
327
|
-
@include box-shadow(-1px 1px 0 darken($white,
|
327
|
+
@include box-shadow(-1px 1px 0 darken($white, .8))
|
328
328
|
}
|
329
329
|
|
330
330
|
.btn.disabled,
|
@@ -364,7 +364,7 @@ div.subnav {
|
|
364
364
|
}
|
365
365
|
|
366
366
|
.nav-list li > a:hover {
|
367
|
-
background-color: lighten($blue,
|
367
|
+
background-color: lighten($blue, .1);
|
368
368
|
}
|
369
369
|
|
370
370
|
.nav-tabs, .nav-tabs.nav-stacked > li > a {
|
@@ -387,7 +387,7 @@ div.subnav {
|
|
387
387
|
|
388
388
|
li > a:hover,
|
389
389
|
&.nav-stacked > li > a:hover {
|
390
|
-
background-color: lighten($blue,
|
390
|
+
background-color: lighten($blue, .1);
|
391
391
|
border-color: transparent;
|
392
392
|
}
|
393
393
|
}
|
@@ -398,14 +398,14 @@ div.subnav {
|
|
398
398
|
}
|
399
399
|
|
400
400
|
.nav-pills > li:hover > a {
|
401
|
-
background-color: lighten($blue,
|
401
|
+
background-color: lighten($blue, .1);
|
402
402
|
border-color: transparent;
|
403
403
|
}
|
404
404
|
|
405
405
|
.nav-tabs .open .dropdown-toggle,
|
406
406
|
.nav-pills .open .dropdown-toggle,
|
407
407
|
.nav > .open.active > a:hover {
|
408
|
-
background-color: lighten($blue,
|
408
|
+
background-color: lighten($blue, .1);
|
409
409
|
border-color: transparent;
|
410
410
|
}
|
411
411
|
|
@@ -460,12 +460,12 @@ div.subnav {
|
|
460
460
|
}
|
461
461
|
|
462
462
|
li > a:hover {
|
463
|
-
background: lighten($blue,
|
463
|
+
background: lighten($blue, .1);
|
464
464
|
}
|
465
465
|
|
466
466
|
li.disabled > a,
|
467
467
|
li.disabled > a:hover {
|
468
|
-
background: darken($blue,
|
468
|
+
background: darken($blue, .05);
|
469
469
|
}
|
470
470
|
}
|
471
471
|
|
@@ -475,7 +475,7 @@ div.subnav {
|
|
475
475
|
border-color: transparent;
|
476
476
|
|
477
477
|
&:hover {
|
478
|
-
background: lighten($blue,
|
478
|
+
background: lighten($blue, .1);
|
479
479
|
}
|
480
480
|
}
|
481
481
|
|
@@ -505,15 +505,15 @@ label {
|
|
505
505
|
}
|
506
506
|
|
507
507
|
.control-group.warning {
|
508
|
-
@include formFieldState(lighten($warningText,
|
508
|
+
@include formFieldState(lighten($warningText, .1), lighten($warningText, .1), $warningBackground);
|
509
509
|
}
|
510
510
|
|
511
511
|
.control-group.error {
|
512
|
-
@include formFieldState(lighten($errorText,
|
512
|
+
@include formFieldState(lighten($errorText, .1), lighten($errorText, .1), $errorBackground);
|
513
513
|
}
|
514
514
|
|
515
515
|
.control-group.success {
|
516
|
-
@include formFieldState(lighten($successText,
|
516
|
+
@include formFieldState(lighten($successText, .1), lighten($successText, .1), $successBackground);
|
517
517
|
}
|
518
518
|
|
519
519
|
// MODALS
|
@@ -547,7 +547,7 @@ label {
|
|
547
547
|
}
|
548
548
|
|
549
549
|
footer.footer {
|
550
|
-
border-top: 1px solid darken($blueDark,
|
550
|
+
border-top: 1px solid darken($blueDark, .05);
|
551
551
|
}
|
552
552
|
|
553
553
|
.well, .hero-unit {
|
@@ -562,7 +562,7 @@ footer.footer {
|
|
562
562
|
}
|
563
563
|
|
564
564
|
.progress {
|
565
|
-
background-color: darken($blueDark,
|
565
|
+
background-color: darken($blueDark, .05);
|
566
566
|
background-image: none;
|
567
567
|
@include box-shadow(none);
|
568
568
|
|
@@ -605,7 +605,7 @@ footer.footer {
|
|
605
605
|
text-shadow: none;
|
606
606
|
|
607
607
|
a {
|
608
|
-
color: lighten($orange, 12
|
608
|
+
color: lighten($orange, .12);
|
609
609
|
}
|
610
610
|
}
|
611
611
|
|