bootswatch-rails 0.2.0 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitmodules +3 -0
- data/HISTORY.md +7 -0
- data/README.md +16 -7
- data/Rakefile +32 -0
- data/converter +112 -0
- data/lib/bootswatch-rails/version.rb +1 -1
- data/vendor/assets/stylesheets/bootswatch/amelia/_bootswatch.scss +375 -229
- data/vendor/assets/stylesheets/bootswatch/amelia/_variables.scss +166 -60
- data/vendor/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +122 -37
- data/vendor/assets/stylesheets/bootswatch/cerulean/_variables.scss +148 -43
- data/vendor/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +62 -61
- data/vendor/assets/stylesheets/bootswatch/cosmo/_variables.scss +22 -23
- data/vendor/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +352 -236
- data/vendor/assets/stylesheets/bootswatch/cyborg/_variables.scss +147 -42
- data/vendor/assets/stylesheets/bootswatch/journal/_bootswatch.scss +277 -72
- data/vendor/assets/stylesheets/bootswatch/journal/_variables.scss +159 -54
- data/vendor/assets/stylesheets/bootswatch/readable/_bootswatch.scss +21 -381
- data/vendor/assets/stylesheets/bootswatch/readable/_variables.scss +161 -56
- data/vendor/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +46 -29
- data/vendor/assets/stylesheets/bootswatch/simplex/_variables.scss +42 -20
- data/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss +420 -267
- data/vendor/assets/stylesheets/bootswatch/slate/_variables.scss +150 -45
- data/vendor/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +55 -102
- data/vendor/assets/stylesheets/bootswatch/spacelab/_variables.scss +94 -70
- data/vendor/assets/stylesheets/bootswatch/spruce/_bootswatch.scss +476 -301
- data/vendor/assets/stylesheets/bootswatch/spruce/_variables.scss +171 -66
- data/vendor/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +293 -255
- data/vendor/assets/stylesheets/bootswatch/superhero/_variables.scss +132 -30
- data/vendor/assets/stylesheets/bootswatch/united/_bootswatch.scss +85 -44
- data/vendor/assets/stylesheets/bootswatch/united/_variables.scss +143 -38
- metadata +5 -2
@@ -1,11 +1,9 @@
|
|
1
|
-
//
|
2
|
-
//
|
3
|
-
//
|
4
|
-
// -----------------------------------------------------
|
5
|
-
|
1
|
+
// Amelia 2.2.2
|
2
|
+
// Variables
|
3
|
+
// --------------------------------------------------
|
6
4
|
|
7
5
|
|
8
|
-
//
|
6
|
+
// Global values
|
9
7
|
// --------------------------------------------------
|
10
8
|
|
11
9
|
|
@@ -13,7 +11,7 @@
|
|
13
11
|
// -------------------------
|
14
12
|
$black: #000;
|
15
13
|
$grayDarker: #111;
|
16
|
-
$grayDark: #
|
14
|
+
$grayDark: #444;
|
17
15
|
$gray: #555;
|
18
16
|
$grayLight: #aaa;
|
19
17
|
$grayLighter: #ddd;
|
@@ -24,9 +22,9 @@ $white: #fff;
|
|
24
22
|
// -------------------------
|
25
23
|
$blue: #00BCE1;
|
26
24
|
$blueDark: #1269B0;
|
27
|
-
$green: #
|
28
|
-
$red: #
|
29
|
-
$yellow: #
|
25
|
+
$green: #48CA3B;
|
26
|
+
$red: #AD1D28;
|
27
|
+
$yellow: #DEBB27;
|
30
28
|
$orange: #DF6E1E;
|
31
29
|
$pink: #FFBCB9;
|
32
30
|
$purple: #4D3A7D;
|
@@ -40,51 +38,145 @@ $textColor: rgba(255, 255, 255, 0.9);
|
|
40
38
|
|
41
39
|
// Links
|
42
40
|
// -------------------------
|
43
|
-
$linkColor: lighten($yellow,
|
41
|
+
$linkColor: lighten($yellow, 15%);
|
44
42
|
$linkColorHover: $linkColor;
|
45
43
|
|
46
44
|
|
47
45
|
// Typography
|
48
46
|
// -------------------------
|
47
|
+
$sansFontFamily: 'Cabin', Verdana, sans-serif;
|
48
|
+
$serifFontFamily: Georgia, "Times New Roman", Times, serif;
|
49
|
+
$monoFontFamily: Menlo, Monaco, Consolas, "Courier New", monospace;
|
50
|
+
|
49
51
|
$baseFontSize: 14px;
|
50
|
-
$baseFontFamily:
|
52
|
+
$baseFontFamily: $sansFontFamily;
|
51
53
|
$baseLineHeight: 20px;
|
52
|
-
$altFontFamily:
|
54
|
+
$altFontFamily: $serifFontFamily;
|
53
55
|
|
54
56
|
$headingsFontFamily: 'Lobster', cursive; // empty to use BS default, $baseFontFamily
|
55
57
|
$headingsFontWeight: normal; // instead of browser default, bold
|
56
58
|
$headingsColor: inherit; // 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: 20px 24px; // 58px
|
70
|
+
$paddingSmall: 8px 12px; // 34px
|
71
|
+
$paddingMini: 4px 8px; // 28px
|
72
|
+
|
73
|
+
$baseBorderRadius: 0;
|
74
|
+
$borderRadiusLarge: 6px;
|
75
|
+
$borderRadiusSmall: 3px;
|
76
|
+
|
77
|
+
|
59
78
|
// Tables
|
60
79
|
// -------------------------
|
61
|
-
$tableBackground: lighten(#147E88,
|
62
|
-
$tableBackgroundAccent: lighten(#147E88,
|
80
|
+
$tableBackground: lighten(#147E88, 10%); // overall background-color
|
81
|
+
$tableBackgroundAccent: lighten(#147E88, 15%); // for striping
|
63
82
|
$tableBackgroundHover: rgba(255, 255, 255, 0.4); // for hover
|
64
|
-
$tableBorder: lighten(#147E88,
|
83
|
+
$tableBorder: lighten(#147E88, 12%); // table and cell border
|
84
|
+
|
85
|
+
|
86
|
+
// Navbar
|
87
|
+
// -------------------------
|
88
|
+
$navbarCollapseWidth: 979px;
|
89
|
+
$navbarCollapseDesktopWidth: $navbarCollapseWidth + 1;
|
90
|
+
|
91
|
+
$navbarHeight: 50px;
|
92
|
+
$navbarBackgroundHighlight: $red;
|
93
|
+
$navbarBackground: $red;
|
94
|
+
$navbarBorder: darken($navbarBackground, 12%);
|
95
|
+
|
96
|
+
$navbarText: $white;
|
97
|
+
$navbarLinkColor: $white;
|
98
|
+
$navbarLinkColorHover: $white;
|
99
|
+
$navbarLinkColorActive: $navbarLinkColorHover;
|
100
|
+
$navbarLinkBackgroundHover: lighten($navbarBackground, 10%);
|
101
|
+
$navbarLinkBackgroundActive: lighten($navbarBackground, 10%);
|
102
|
+
|
103
|
+
$navbarBrandColor: $navbarLinkColor;
|
104
|
+
|
105
|
+
// Inverted navbar
|
106
|
+
$navbarInverseBackground: $yellow;
|
107
|
+
$navbarInverseBackgroundHighlight: $yellow;
|
108
|
+
$navbarInverseBorder: rgba(0, 0, 0, 0.1);
|
109
|
+
|
110
|
+
$navbarInverseText: $white;
|
111
|
+
$navbarInverseLinkColor: $white;
|
112
|
+
$navbarInverseLinkColorHover: $white;
|
113
|
+
$navbarInverseLinkColorActive: $white;
|
114
|
+
$navbarInverseLinkBackgroundHover: rgba(255, 255, 255, 0.2);
|
115
|
+
$navbarInverseLinkBackgroundActive: rgba(255, 255, 255, 0.2);
|
116
|
+
|
117
|
+
$navbarInverseSearchBackground: lighten($navbarInverseBackground, 25%);
|
118
|
+
$navbarInverseSearchBackgroundFocus: $white;
|
119
|
+
$navbarInverseSearchBorder: $navbarInverseBackground;
|
120
|
+
$navbarInverseSearchPlaceholderColor: $white;
|
121
|
+
|
122
|
+
$navbarInverseBrandColor: $navbarInverseLinkColor;
|
123
|
+
|
124
|
+
|
125
|
+
// Buttons
|
126
|
+
// -------------------------
|
127
|
+
$btnBackground: $grayLighter;
|
128
|
+
$btnBackgroundHighlight: $grayLighter;
|
129
|
+
$btnBorder: rgba(0, 0, 0, 0);
|
130
|
+
|
131
|
+
$btnPrimaryBackground: $navbarBackground;
|
132
|
+
$btnPrimaryBackgroundHighlight: $navbarBackground;
|
133
|
+
|
134
|
+
$btnInfoBackground: $purple;
|
135
|
+
$btnInfoBackgroundHighlight: $purple;
|
136
|
+
|
137
|
+
$btnSuccessBackground: $green;
|
138
|
+
$btnSuccessBackgroundHighlight: $green;
|
139
|
+
|
140
|
+
$btnWarningBackground: $orange;
|
141
|
+
$btnWarningBackgroundHighlight: $orange;
|
142
|
+
|
143
|
+
$btnDangerBackground: $yellow;
|
144
|
+
$btnDangerBackgroundHighlight: $yellow;
|
145
|
+
|
146
|
+
$btnInverseBackground: #27666D;
|
147
|
+
$btnInverseBackgroundHighlight: #27666D;
|
65
148
|
|
66
149
|
|
67
150
|
// Forms
|
68
151
|
// -------------------------
|
69
152
|
$inputBackground: $white;
|
70
153
|
$inputBorder: transparent;
|
154
|
+
$inputBorderRadius: $baseBorderRadius;
|
71
155
|
$inputDisabledBackground: $grayLighter;
|
156
|
+
$formActionsBackground: transparent;
|
157
|
+
$inputHeight: $baseLineHeight + 10px; // base line-height + 8px vertical padding + 2px top/bottom border
|
72
158
|
|
73
159
|
|
74
160
|
// Dropdowns
|
75
161
|
// -------------------------
|
76
162
|
$dropdownBackground: $white;
|
77
163
|
$dropdownBorder: rgba(0,0,0,.2);
|
78
|
-
$
|
164
|
+
$dropdownDividerTop: #e5e5e5;
|
165
|
+
$dropdownDividerBottom: $white;
|
166
|
+
|
167
|
+
$dropdownLinkColor: $grayDark;
|
79
168
|
$dropdownLinkColorHover: $white;
|
80
|
-
$
|
169
|
+
$dropdownLinkColorActive: $white;
|
81
170
|
|
171
|
+
$dropdownLinkBackgroundActive: $red;
|
172
|
+
$dropdownLinkBackgroundHover: $red;
|
82
173
|
|
83
174
|
|
84
175
|
|
85
176
|
// COMPONENT VARIABLES
|
86
177
|
// --------------------------------------------------
|
87
178
|
|
179
|
+
|
88
180
|
// Z-index master list
|
89
181
|
// -------------------------
|
90
182
|
// Used for a bird's eye view of components dependent on the z-axis
|
@@ -97,6 +189,12 @@ $zindexModalBackdrop: 1040;
|
|
97
189
|
$zindexModal: 1050;
|
98
190
|
|
99
191
|
|
192
|
+
// Sprite icons path
|
193
|
+
// -------------------------
|
194
|
+
$iconSpritePath: "../img/glyphicons-halflings.png";
|
195
|
+
$iconWhiteSpritePath: "../img/glyphicons-halflings-white.png";
|
196
|
+
|
197
|
+
|
100
198
|
// Input placeholder text color
|
101
199
|
// -------------------------
|
102
200
|
$placeholderText: $grayLight;
|
@@ -107,48 +205,21 @@ $placeholderText: $grayLight;
|
|
107
205
|
$hrBorder: transparent;
|
108
206
|
|
109
207
|
|
110
|
-
//
|
208
|
+
// Horizontal forms & lists
|
111
209
|
// -------------------------
|
112
|
-
$
|
113
|
-
$navbarBackground: #AD1D28;
|
114
|
-
$navbarBackgroundHighlight: #AD1D28;
|
115
|
-
|
116
|
-
$navbarText: $white;
|
117
|
-
$navbarLinkColor: $white;
|
118
|
-
$navbarLinkColorHover: $white;
|
119
|
-
$navbarLinkColorActive: $navbarLinkColorHover;
|
120
|
-
$navbarLinkBackgroundHover: lighten($navbarBackground, .1);
|
121
|
-
$navbarLinkBackgroundActive: lighten($navbarBackground, .1);
|
122
|
-
|
123
|
-
$navbarSearchBackground: rgba(0, 0, 0, 0);
|
124
|
-
$navbarSearchBackgroundFocus: lighten($navbarBackground, .25);
|
125
|
-
$navbarSearchBorder: darken($navbarSearchBackground, .3);
|
126
|
-
$navbarSearchPlaceholderColor: $textColor;
|
210
|
+
$horizontalComponentOffset: 180px;
|
127
211
|
|
128
212
|
|
129
|
-
//
|
213
|
+
// Wells
|
130
214
|
// -------------------------
|
131
|
-
$
|
132
|
-
$btnBackgroundHighlight: $grayLighter;
|
133
|
-
$btnBorder: rgba(0, 0, 0, 0);
|
215
|
+
$wellBackground: #3CB9C6;
|
134
216
|
|
135
|
-
$btnPrimaryBackground: $navbarBackground;
|
136
|
-
$btnPrimaryBackgroundHighlight: adjust-hue($btnPrimaryBackground, .15);
|
137
217
|
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
$
|
142
|
-
$
|
143
|
-
|
144
|
-
$btnWarningBackground: $orange;
|
145
|
-
$btnWarningBackgroundHighlight: $orange;
|
146
|
-
|
147
|
-
$btnDangerBackground: darken($yellow, .03);
|
148
|
-
$btnDangerBackgroundHighlight: darken($yellow, .03);
|
149
|
-
|
150
|
-
$btnInverseBackground: #27666D;
|
151
|
-
$btnInverseBackgroundHighlight: #27666D;
|
218
|
+
// Pagination
|
219
|
+
// -------------------------
|
220
|
+
$paginationBackground: #3CB9C6;
|
221
|
+
$paginationBorder: transparent;
|
222
|
+
$paginationActiveBackground: rgba(255, 255, 255, 0.4);
|
152
223
|
|
153
224
|
|
154
225
|
// Hero unit
|
@@ -162,26 +233,43 @@ $heroUnitLeadColor: inherit;
|
|
162
233
|
// -------------------------
|
163
234
|
$warningText: #c09853;
|
164
235
|
$warningBackground: #fcf8e3;
|
165
|
-
$warningBorder: darken(adjust-hue($warningBackground, -10),
|
236
|
+
$warningBorder: darken(adjust-hue($warningBackground, -10), 3%);
|
166
237
|
|
167
238
|
$errorText: #b94a48;
|
168
239
|
$errorBackground: #f2dede;
|
169
|
-
$errorBorder: darken(adjust-hue($errorBackground, -10),
|
240
|
+
$errorBorder: darken(adjust-hue($errorBackground, -10), 3%);
|
170
241
|
|
171
242
|
$successText: #468847;
|
172
243
|
$successBackground: #dff0d8;
|
173
|
-
$successBorder: darken(adjust-hue($successBackground, -10),
|
244
|
+
$successBorder: darken(adjust-hue($successBackground, -10), 5%);
|
174
245
|
|
175
246
|
$infoText: #3a87ad;
|
176
247
|
$infoBackground: #d9edf7;
|
177
|
-
$infoBorder: darken(adjust-hue($infoBackground, -10),
|
248
|
+
$infoBorder: darken(adjust-hue($infoBackground, -10), 7%);
|
249
|
+
|
250
|
+
|
251
|
+
// Tooltips and popovers
|
252
|
+
// -------------------------
|
253
|
+
$tooltipColor: #fff;
|
254
|
+
$tooltipBackground: #000;
|
255
|
+
$tooltipArrowWidth: 5px;
|
256
|
+
$tooltipArrowColor: $tooltipBackground;
|
257
|
+
|
258
|
+
$popoverBackground: #fff;
|
259
|
+
$popoverArrowWidth: 10px;
|
260
|
+
$popoverArrowColor: #fff;
|
261
|
+
$popoverTitleBackground: $navbarBackground;
|
178
262
|
|
263
|
+
// Special enhancement for popovers
|
264
|
+
$popoverArrowOuterWidth: $popoverArrowWidth + 1;
|
265
|
+
$popoverArrowOuterColor: rgba(0,0,0,.25);
|
179
266
|
|
180
267
|
|
181
268
|
|
182
269
|
// GRID
|
183
270
|
// --------------------------------------------------
|
184
271
|
|
272
|
+
|
185
273
|
// Default 940px grid
|
186
274
|
// -------------------------
|
187
275
|
$gridColumns: 12;
|
@@ -189,8 +277,26 @@ $gridColumnWidth: 60px;
|
|
189
277
|
$gridGutterWidth: 20px;
|
190
278
|
$gridRowWidth: ($gridColumns * $gridColumnWidth) + ($gridGutterWidth * ($gridColumns - 1));
|
191
279
|
|
280
|
+
// 1200px min
|
281
|
+
$gridColumnWidth1200: 70px;
|
282
|
+
$gridGutterWidth1200: 30px;
|
283
|
+
$gridRowWidth1200: ($gridColumns * $gridColumnWidth1200) + ($gridGutterWidth1200 * ($gridColumns - 1));
|
284
|
+
|
285
|
+
// 768px-979px
|
286
|
+
$gridColumnWidth768: 42px;
|
287
|
+
$gridGutterWidth768: 20px;
|
288
|
+
$gridRowWidth768: ($gridColumns * $gridColumnWidth768) + ($gridGutterWidth768 * ($gridColumns - 1));
|
289
|
+
|
192
290
|
|
193
291
|
// Fluid grid
|
194
292
|
// -------------------------
|
195
|
-
$fluidGridColumnWidth:
|
196
|
-
$fluidGridGutterWidth:
|
293
|
+
$fluidGridColumnWidth: percentage($gridColumnWidth/$gridRowWidth);
|
294
|
+
$fluidGridGutterWidth: percentage($gridGutterWidth/$gridRowWidth);
|
295
|
+
|
296
|
+
// 1200px min
|
297
|
+
$fluidGridColumnWidth1200: percentage($gridColumnWidth1200/$gridRowWidth1200);
|
298
|
+
$fluidGridGutterWidth1200: percentage($gridGutterWidth1200/$gridRowWidth1200);
|
299
|
+
|
300
|
+
// 768px-979px
|
301
|
+
$fluidGridColumnWidth768: percentage($gridColumnWidth768/$gridRowWidth768);
|
302
|
+
$fluidGridGutterWidth768: percentage($gridGutterWidth768/$gridRowWidth768);
|
@@ -1,60 +1,131 @@
|
|
1
|
-
//
|
2
|
-
//
|
1
|
+
// Cerulean 2.2.2
|
2
|
+
// Bootswatch
|
3
3
|
// -----------------------------------------------------
|
4
4
|
|
5
|
+
|
5
6
|
// TYPOGRAPHY
|
6
7
|
// -----------------------------------------------------
|
7
8
|
|
8
|
-
@import url(
|
9
|
+
@import url(//fonts.googleapis.com/css?family=Telex);
|
9
10
|
|
10
|
-
|
11
|
-
|
12
|
-
}
|
11
|
+
// SCAFFOLDING
|
12
|
+
// -----------------------------------------------------
|
13
13
|
|
14
14
|
// NAVBAR
|
15
15
|
// -----------------------------------------------------
|
16
16
|
|
17
|
-
.navbar
|
18
|
-
@include gradient-vertical-three-colors($navbarBackground, $navbarBackground, .9, $navbarBackgroundHighlight);
|
19
|
-
}
|
17
|
+
.navbar {
|
20
18
|
|
21
|
-
.navbar .nav .active > a,
|
22
|
-
.navbar .nav .active > a:hover {
|
23
|
-
background-color: $navbarBackground;
|
24
|
-
background-color: rgba(0,0,0,.2);
|
25
|
-
}
|
26
19
|
|
27
|
-
.
|
28
|
-
|
29
|
-
|
20
|
+
.brand {
|
21
|
+
padding: 14px 20px 16px;
|
22
|
+
font-family: $headingsFontFamily;
|
23
|
+
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
|
24
|
+
}
|
25
|
+
|
26
|
+
li {
|
27
|
+
line-height: 20px;
|
28
|
+
}
|
29
|
+
|
30
|
+
.nav > li > a {
|
31
|
+
padding: 16px 10px 14px;
|
32
|
+
font-family: $headingsFontFamily;
|
33
|
+
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
|
34
|
+
}
|
35
|
+
|
36
|
+
.search-query {
|
37
|
+
border: 1px solid darken($linkColor, 10%);
|
38
|
+
line-height: normal;
|
39
|
+
}
|
30
40
|
|
31
|
-
|
41
|
+
.navbar-text {
|
42
|
+
padding: 19px 10px 18px;
|
43
|
+
line-height: 13px;
|
44
|
+
color: rgba(0, 0, 0, 0.5);
|
45
|
+
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
|
46
|
+
}
|
32
47
|
|
33
|
-
.navbar
|
34
|
-
color: $white;
|
48
|
+
.navbar-inverse {
|
35
49
|
|
36
|
-
|
37
|
-
|
50
|
+
.navbar-search .search-query {
|
51
|
+
color: $textColor;
|
52
|
+
}
|
38
53
|
}
|
39
54
|
}
|
40
55
|
|
41
|
-
|
42
|
-
|
56
|
+
@media (max-width: $navbarCollapseWidth) {
|
57
|
+
|
58
|
+
.navbar .nav-collapse {
|
59
|
+
|
60
|
+
.nav li > a {
|
61
|
+
|
62
|
+
font-family: $headingsFontFamily;
|
63
|
+
font-weight: normal;
|
64
|
+
color: $white;
|
65
|
+
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
|
66
|
+
|
67
|
+
&:hover {
|
68
|
+
background-color: #2B7CAC;
|
69
|
+
}
|
70
|
+
}
|
71
|
+
|
72
|
+
.nav .active > a {
|
73
|
+
@include box-shadow(none);
|
74
|
+
background-color: #2B7CAC;
|
75
|
+
}
|
76
|
+
|
77
|
+
.dropdown-menu li > a:hover,
|
78
|
+
.dropdown-menu li > a:focus,
|
79
|
+
.dropdown-submenu:hover > a {
|
80
|
+
background-image: none;
|
81
|
+
}
|
82
|
+
|
83
|
+
.navbar-form,
|
84
|
+
.navbar-search {
|
85
|
+
border: none;
|
86
|
+
}
|
43
87
|
|
44
|
-
|
45
|
-
|
88
|
+
.nav-header {
|
89
|
+
color: #2B7CAC;
|
90
|
+
}
|
91
|
+
}
|
92
|
+
|
93
|
+
.navbar-inverse .nav-collapse {
|
94
|
+
|
95
|
+
.nav li > a {
|
96
|
+
color: $navbarInverseLinkColor;
|
97
|
+
|
98
|
+
&:hover {
|
99
|
+
background-color: rgba(0, 0, 0, 0.1);
|
100
|
+
}
|
101
|
+
}
|
102
|
+
|
103
|
+
.nav .active > a,
|
104
|
+
.nav > li > a:hover,
|
105
|
+
.dropdown-menu a:hover {
|
106
|
+
background-color: rgba(0, 0, 0, 0.1) !important;
|
107
|
+
}
|
46
108
|
}
|
47
109
|
}
|
48
110
|
|
49
|
-
.
|
50
|
-
|
111
|
+
div.subnav {
|
112
|
+
|
113
|
+
font-family: $headingsFontFamily;
|
114
|
+
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.2);
|
115
|
+
|
116
|
+
div.subnav-fixed {
|
117
|
+
top: $navbarHeight;
|
118
|
+
}
|
51
119
|
}
|
52
120
|
|
121
|
+
// NAV
|
122
|
+
// -----------------------------------------------------
|
123
|
+
|
53
124
|
// BUTTONS
|
54
125
|
// -----------------------------------------------------
|
55
126
|
|
56
127
|
.btn {
|
57
|
-
@include gradient-vertical-three-colors($white, $white,
|
128
|
+
@include gradient-vertical-three-colors($white, $white, 5%, darken($white, 0%));
|
58
129
|
$shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
|
59
130
|
@include box-shadow($shadow);
|
60
131
|
|
@@ -64,33 +135,47 @@
|
|
64
135
|
}
|
65
136
|
|
66
137
|
.btn-primary {
|
67
|
-
@include buttonBackground(lighten($btnPrimaryBackground,
|
138
|
+
@include buttonBackground(lighten($btnPrimaryBackground, 5%), $btnPrimaryBackground);
|
68
139
|
}
|
69
140
|
|
70
141
|
.btn-info {
|
71
|
-
@include buttonBackground(lighten($btnInfoBackground,
|
142
|
+
@include buttonBackground(lighten($btnInfoBackground, 5%), $btnInfoBackground);
|
72
143
|
}
|
73
144
|
|
74
145
|
.btn-success {
|
75
|
-
@include buttonBackground(lighten($btnSuccessBackground,
|
146
|
+
@include buttonBackground(lighten($btnSuccessBackground, 5%), $btnSuccessBackground);
|
76
147
|
}
|
77
148
|
|
78
149
|
.btn-warning {
|
79
|
-
@include buttonBackground(lighten($btnWarningBackground,
|
150
|
+
@include buttonBackground(lighten($btnWarningBackground, 5%), $btnWarningBackground);
|
80
151
|
}
|
81
152
|
|
82
153
|
.btn-danger {
|
83
|
-
@include buttonBackground(lighten($btnDangerBackground,
|
154
|
+
@include buttonBackground(lighten($btnDangerBackground, 5%), $btnDangerBackground);
|
84
155
|
}
|
85
156
|
|
86
157
|
.btn-inverse {
|
87
|
-
@include buttonBackground(lighten($btnInverseBackground,
|
158
|
+
@include buttonBackground(lighten($btnInverseBackground, 5%), $btnInverseBackground);
|
88
159
|
}
|
89
160
|
|
90
|
-
//
|
161
|
+
// TABLES
|
162
|
+
// -----------------------------------------------------
|
163
|
+
|
164
|
+
// FORMS
|
165
|
+
// -----------------------------------------------------
|
166
|
+
|
167
|
+
// DROPDOWNS
|
168
|
+
// -----------------------------------------------------
|
169
|
+
|
170
|
+
// ALERTS, LABELS, BADGES
|
171
|
+
// -----------------------------------------------------
|
172
|
+
|
173
|
+
// MISC
|
91
174
|
// -----------------------------------------------------
|
92
175
|
|
93
|
-
// Make icons gray
|
94
176
|
i[class^="icon-"]{
|
95
177
|
opacity: 0.8;
|
96
178
|
}
|
179
|
+
|
180
|
+
// MEDIA QUERIES
|
181
|
+
// -----------------------------------------------------
|