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
|
+
// Slate 2.2.2
|
2
|
+
// Variables
|
3
|
+
// --------------------------------------------------
|
6
4
|
|
7
5
|
|
8
|
-
//
|
6
|
+
// Global values
|
9
7
|
// --------------------------------------------------
|
10
8
|
|
11
9
|
|
@@ -15,17 +13,17 @@ $black: #000;
|
|
15
13
|
$grayDarker: #272B30;
|
16
14
|
$grayDark: #3A3F44;
|
17
15
|
$gray: #52575C;
|
18
|
-
$grayLight: #
|
16
|
+
$grayLight: #7A8288;
|
19
17
|
$grayLighter: #BBBFC2;
|
20
18
|
$white: #fff;
|
21
19
|
|
22
20
|
|
23
21
|
// Accent colors
|
24
22
|
// -------------------------
|
25
|
-
$blue: #
|
23
|
+
$blue: #5bc0de;
|
26
24
|
$blueDark: #108CBB;
|
27
|
-
$green: #
|
28
|
-
$red: #
|
25
|
+
$green: #62c462;
|
26
|
+
$red: #ee5f5b;
|
29
27
|
$yellow: #F6D30D;
|
30
28
|
$orange: #f89406;
|
31
29
|
$pink: #c3325f;
|
@@ -35,7 +33,7 @@ $purple: #7a43b6;
|
|
35
33
|
// Scaffolding
|
36
34
|
// -------------------------
|
37
35
|
$bodyBackground: $grayDarker;
|
38
|
-
$textColor:
|
36
|
+
$textColor: #C8C8C8;
|
39
37
|
|
40
38
|
|
41
39
|
// Links
|
@@ -46,43 +44,63 @@ $linkColorHover: $white;
|
|
46
44
|
|
47
45
|
// Typography
|
48
46
|
// -------------------------
|
49
|
-
$
|
50
|
-
$
|
51
|
-
$
|
52
|
-
|
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: 21px;
|
54
|
+
$altFontFamily: $serifFontFamily;
|
53
55
|
|
54
56
|
$headingsFontFamily: inherit; // empty to use BS default, $baseFontFamily
|
55
57
|
$headingsFontWeight: bold; // 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: 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
|
62
|
-
$tableBackgroundAccent:
|
63
|
-
$tableBackgroundHover:
|
64
|
-
$tableBorder: darken($grayDarker,
|
65
|
-
|
81
|
+
$tableBackgroundAccent: darken($grayDark, 5%); // for striping
|
82
|
+
$tableBackgroundHover: $grayDark; // for hover
|
83
|
+
$tableBorder: darken($grayDarker, 5%); // table and cell border
|
66
84
|
|
67
85
|
// Buttons
|
68
86
|
// -------------------------
|
69
87
|
$btnBackground: $white;
|
70
|
-
$btnBackgroundHighlight: darken($white,
|
71
|
-
$btnBorder: darken($white,
|
88
|
+
$btnBackgroundHighlight: darken($white, 10%);
|
89
|
+
$btnBorder: darken($white, 20%);
|
72
90
|
|
73
|
-
$btnPrimaryBackground: $
|
74
|
-
$btnPrimaryBackgroundHighlight: adjust-hue($btnPrimaryBackground,
|
91
|
+
$btnPrimaryBackground: $grayLighter;
|
92
|
+
$btnPrimaryBackgroundHighlight: adjust-hue($btnPrimaryBackground, 15%);
|
75
93
|
|
76
|
-
$btnInfoBackground:
|
94
|
+
$btnInfoBackground: $blue;
|
77
95
|
$btnInfoBackgroundHighlight: #2f96b4;
|
78
96
|
|
79
|
-
$btnSuccessBackground:
|
97
|
+
$btnSuccessBackground: $green;
|
80
98
|
$btnSuccessBackgroundHighlight: #51a351;
|
81
99
|
|
82
|
-
$btnWarningBackground: lighten($orange,
|
100
|
+
$btnWarningBackground: lighten($orange, 15%);
|
83
101
|
$btnWarningBackgroundHighlight: $orange;
|
84
102
|
|
85
|
-
$btnDangerBackground:
|
103
|
+
$btnDangerBackground: $red;
|
86
104
|
$btnDangerBackgroundHighlight: #bd362f;
|
87
105
|
|
88
106
|
$btnInverseBackground: $gray;
|
@@ -93,35 +111,50 @@ $btnInverseBackgroundHighlight: $grayDarker;
|
|
93
111
|
// -------------------------
|
94
112
|
$inputBackground: $white;
|
95
113
|
$inputBorder: #ccc;
|
114
|
+
$inputBorderRadius: $baseBorderRadius;
|
96
115
|
$inputDisabledBackground: $grayLighter;
|
116
|
+
$formActionsBackground: darken($grayDarker, 3%);
|
117
|
+
$inputHeight: $baseLineHeight + 10px; // base line-height + 8px vertical padding + 2px top/bottom border
|
97
118
|
|
98
119
|
|
99
120
|
// Dropdowns
|
100
121
|
// -------------------------
|
101
|
-
$dropdownBackground: $
|
122
|
+
$dropdownBackground: $grayDark;
|
102
123
|
$dropdownBorder: rgba(0,0,0,.2);
|
103
|
-
$
|
124
|
+
$dropdownDividerTop: transparent;
|
125
|
+
$dropdownDividerBottom: darken($grayDarker, 5%);
|
126
|
+
|
127
|
+
$dropdownLinkColor: $grayLight;
|
104
128
|
$dropdownLinkColorHover: $white;
|
105
|
-
$
|
129
|
+
$dropdownLinkColorActive: $white;
|
106
130
|
|
131
|
+
$dropdownLinkBackgroundActive: $grayDarker;
|
132
|
+
$dropdownLinkBackgroundHover: $grayDarker;
|
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
|
116
143
|
// Try to avoid customizing these :)
|
117
144
|
$zindexDropdown: 1000;
|
118
145
|
$zindexPopover: 1010;
|
119
|
-
$zindexTooltip:
|
146
|
+
$zindexTooltip: 1030;
|
120
147
|
$zindexFixedNavbar: 1030;
|
121
148
|
$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,28 +165,65 @@ $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: darken($grayDarker, 3%);
|
176
|
+
|
177
|
+
|
135
178
|
// Navbar
|
136
179
|
// -------------------------
|
180
|
+
$navbarCollapseWidth: 979px;
|
181
|
+
$navbarCollapseDesktopWidth: $navbarCollapseWidth + 1;
|
182
|
+
|
137
183
|
$navbarHeight: 40px;
|
138
184
|
$navbarBackground: $grayDarker;
|
139
185
|
$navbarBackgroundHighlight: $grayDark;
|
186
|
+
$navbarBorder: darken($navbarBackground, 12%);
|
140
187
|
|
141
|
-
$navbarText: $
|
142
|
-
$navbarLinkColor: $
|
188
|
+
$navbarText: $textColor;
|
189
|
+
$navbarLinkColor: $textColor;
|
143
190
|
$navbarLinkColorHover: $white;
|
144
191
|
$navbarLinkColorActive: $navbarLinkColorHover;
|
145
|
-
$navbarLinkBackgroundHover:
|
192
|
+
$navbarLinkBackgroundHover: $grayDark;
|
146
193
|
$navbarLinkBackgroundActive: $navbarBackground;
|
147
194
|
|
148
|
-
$
|
149
|
-
|
150
|
-
|
151
|
-
$
|
195
|
+
$navbarBrandColor: $grayLighter;
|
196
|
+
|
197
|
+
// Inverted navbar
|
198
|
+
$navbarInverseBackground: darken($grayDarker, 10%);
|
199
|
+
$navbarInverseBackgroundHighlight: $grayDarker;
|
200
|
+
$navbarInverseBorder: #252525;
|
201
|
+
|
202
|
+
$navbarInverseText: $grayLight;
|
203
|
+
$navbarInverseLinkColor: $grayLight;
|
204
|
+
$navbarInverseLinkColorHover: $white;
|
205
|
+
$navbarInverseLinkColorActive: $navbarInverseLinkColorHover;
|
206
|
+
$navbarInverseLinkBackgroundHover: transparent;
|
207
|
+
$navbarInverseLinkBackgroundActive: $navbarInverseBackground;
|
208
|
+
|
209
|
+
$navbarInverseSearchBackground: lighten($navbarInverseBackground, 25%);
|
210
|
+
$navbarInverseSearchBackgroundFocus: $white;
|
211
|
+
$navbarInverseSearchBorder: $navbarInverseBackground;
|
212
|
+
$navbarInverseSearchPlaceholderColor: #ccc;
|
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
|
155
225
|
// -------------------------
|
156
|
-
$heroUnitBackground: $
|
226
|
+
$heroUnitBackground: darken($grayDarker, 3%);
|
157
227
|
$heroUnitHeadingColor: inherit;
|
158
228
|
$heroUnitLeadColor: inherit;
|
159
229
|
|
@@ -162,26 +232,43 @@ $heroUnitLeadColor: inherit;
|
|
162
232
|
// -------------------------
|
163
233
|
$warningText: #c09853;
|
164
234
|
$warningBackground: #fcf8e3;
|
165
|
-
$warningBorder: darken(adjust-hue($warningBackground, -10),
|
235
|
+
$warningBorder: darken(adjust-hue($warningBackground, -10), 3%);
|
166
236
|
|
167
237
|
$errorText: #b94a48;
|
168
238
|
$errorBackground: #f2dede;
|
169
|
-
$errorBorder: darken(adjust-hue($errorBackground, -10),
|
239
|
+
$errorBorder: darken(adjust-hue($errorBackground, -10), 3%);
|
170
240
|
|
171
241
|
$successText: #468847;
|
172
242
|
$successBackground: #dff0d8;
|
173
|
-
$successBorder: darken(adjust-hue($successBackground, -10),
|
243
|
+
$successBorder: darken(adjust-hue($successBackground, -10), 5%);
|
174
244
|
|
175
245
|
$infoText: #3a87ad;
|
176
246
|
$infoBackground: #d9edf7;
|
177
|
-
$infoBorder: darken(adjust-hue($infoBackground, -10),
|
247
|
+
$infoBorder: darken(adjust-hue($infoBackground, -10), 7%);
|
178
248
|
|
179
249
|
|
250
|
+
// Tooltips and popovers
|
251
|
+
// -------------------------
|
252
|
+
$tooltipColor: #fff;
|
253
|
+
$tooltipBackground: $dropdownBackground;
|
254
|
+
$tooltipArrowWidth: 5px;
|
255
|
+
$tooltipArrowColor: $tooltipBackground;
|
256
|
+
|
257
|
+
$popoverBackground: $dropdownBackground;
|
258
|
+
$popoverArrowWidth: 10px;
|
259
|
+
$popoverArrowColor: $dropdownBackground;
|
260
|
+
$popoverTitleBackground: lighten($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:
|
196
|
-
$fluidGridGutterWidth:
|
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
|
-
//
|
2
|
-
//
|
3
|
-
// Version: 2.1.1
|
1
|
+
// Spacelab 2.2.2
|
2
|
+
// Bootswatch
|
4
3
|
// -----------------------------------------------------
|
5
4
|
|
5
|
+
|
6
6
|
// TYPOGRAPHY
|
7
7
|
// -----------------------------------------------------
|
8
8
|
|
9
|
-
@import url('
|
9
|
+
@import url('//fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700');
|
10
10
|
|
11
11
|
// SCAFFOLDING
|
12
12
|
// -----------------------------------------------------
|
@@ -17,8 +17,7 @@
|
|
17
17
|
.navbar {
|
18
18
|
|
19
19
|
.navbar-inner {
|
20
|
-
|
21
|
-
@include box-shadow(0 1px 0 rgba(255,255,255,0.4));
|
20
|
+
@include box-shadow(0 1px 0 rgba(255,255,255,0.4), 0 1px 0 rgba(0,0,0,0.8));
|
22
21
|
}
|
23
22
|
|
24
23
|
.brand {
|
@@ -26,19 +25,18 @@
|
|
26
25
|
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
|
27
26
|
|
28
27
|
&:hover {
|
29
|
-
color: $
|
28
|
+
color: $navbarLinkColorHover;
|
30
29
|
}
|
31
30
|
}
|
32
31
|
|
33
32
|
.nav > li > a {
|
34
|
-
padding: 11px 10px
|
33
|
+
padding: 11px 10px 8px;
|
35
34
|
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
|
36
35
|
}
|
37
36
|
|
38
37
|
.navbar-text {
|
39
|
-
|
40
|
-
|
41
|
-
line-height: 38px;
|
38
|
+
padding: 11px 10px 8px;
|
39
|
+
line-height: inherit;
|
42
40
|
}
|
43
41
|
|
44
42
|
.navbar-search .search-query,
|
@@ -55,33 +53,34 @@
|
|
55
53
|
color: $textColor;
|
56
54
|
}
|
57
55
|
}
|
58
|
-
}
|
59
56
|
|
60
|
-
.navbar-inverse {
|
61
|
-
.brand {
|
62
|
-
text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
|
57
|
+
.navbar-inverse {
|
63
58
|
|
64
|
-
|
65
|
-
|
59
|
+
.brand {
|
60
|
+
text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
|
61
|
+
|
62
|
+
&:hover {
|
63
|
+
color: $white;
|
64
|
+
}
|
66
65
|
}
|
67
|
-
}
|
68
66
|
|
69
|
-
|
70
|
-
|
71
|
-
|
67
|
+
.nav > li > a {
|
68
|
+
text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
|
69
|
+
}
|
72
70
|
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
71
|
+
.nav li.dropdown.open > .dropdown-toggle .caret,
|
72
|
+
.nav li.dropdown:hover > .dropdown-toggle .caret,
|
73
|
+
.nav li.dropdown.open:hover > .dropdown-toggle .caret {
|
74
|
+
border-top-color: $white;
|
75
|
+
}
|
78
76
|
|
79
|
-
|
80
|
-
|
77
|
+
.navbar-search .search-query,
|
78
|
+
.navbar-search .search-query:hover {
|
81
79
|
|
82
|
-
|
80
|
+
color: $white;
|
83
81
|
|
84
|
-
|
82
|
+
@include placeholder($grayLighter);
|
83
|
+
}
|
85
84
|
}
|
86
85
|
}
|
87
86
|
|
@@ -121,10 +120,10 @@ div.subnav {
|
|
121
120
|
|
122
121
|
.nav > li > a {
|
123
122
|
|
124
|
-
color: $
|
123
|
+
color: $navbarLinkColor;
|
125
124
|
|
126
125
|
&:hover {
|
127
|
-
color: $
|
126
|
+
color: $navbarLinkColorHover;
|
128
127
|
}
|
129
128
|
}
|
130
129
|
|
@@ -176,59 +175,6 @@ div.subnav {
|
|
176
175
|
// BUTTONS
|
177
176
|
// -----------------------------------------------------
|
178
177
|
|
179
|
-
.btn-info {
|
180
|
-
&:hover,
|
181
|
-
&.disabled {
|
182
|
-
|
183
|
-
color: $textColor;
|
184
|
-
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
|
185
|
-
|
186
|
-
.caret {
|
187
|
-
border-top-color: $textColor;
|
188
|
-
border-bottom-color: $textColor;
|
189
|
-
}
|
190
|
-
}
|
191
|
-
}
|
192
|
-
|
193
|
-
/*.btn {
|
194
|
-
.buttonBackground(#F4F4F4, #ECECEC);
|
195
|
-
color: $textColor;
|
196
|
-
text-shadow: none;
|
197
|
-
|
198
|
-
|
199
|
-
&:hover,
|
200
|
-
&:active,
|
201
|
-
&.active,
|
202
|
-
&.disabled,
|
203
|
-
&[disabled] {
|
204
|
-
color: $grayDark;
|
205
|
-
}
|
206
|
-
}
|
207
|
-
|
208
|
-
.btn-primary {
|
209
|
-
.buttonBackground(#909090, #3F3F3F);
|
210
|
-
}
|
211
|
-
|
212
|
-
.btn-warning {
|
213
|
-
.buttonBackground(adjust-hue($yellow, .15), $yellow);
|
214
|
-
}
|
215
|
-
|
216
|
-
.btn-danger {
|
217
|
-
.buttonBackground(adjust-hue(#DA2D2D, .15), #DA2D2D);
|
218
|
-
}
|
219
|
-
|
220
|
-
.btn-success {
|
221
|
-
.buttonBackground(#8ADD6D, #60B044);
|
222
|
-
}
|
223
|
-
|
224
|
-
.btn-info {
|
225
|
-
.buttonBackground(adjust-hue(#4488BB, .15), #4488BB);
|
226
|
-
}
|
227
|
-
|
228
|
-
.btn-inverse {
|
229
|
-
.buttonBackground(adjust-hue($purple, .05), $purple);
|
230
|
-
}*/
|
231
|
-
|
232
178
|
// TABLES
|
233
179
|
// -----------------------------------------------------
|
234
180
|
|
@@ -254,41 +200,48 @@ div.subnav {
|
|
254
200
|
// -----------------------------------------------------
|
255
201
|
|
256
202
|
.alert {
|
257
|
-
|
203
|
+
|
258
204
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
205
|
+
|
206
|
+
h1, h2, h3, h4, h5, h6 {
|
207
|
+
color: $white;
|
208
|
+
font-weight: bold;
|
209
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
210
|
+
}
|
259
211
|
}
|
260
212
|
|
261
213
|
.label, .badge {
|
214
|
+
|
262
215
|
padding-top: 4px;
|
263
216
|
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
}
|
217
|
+
.label,-important {
|
218
|
+
background-color: $red;
|
219
|
+
}
|
268
220
|
|
269
|
-
.label
|
270
|
-
|
271
|
-
}
|
221
|
+
.label,-warning {
|
222
|
+
background-color: $orange;
|
223
|
+
}
|
272
224
|
|
273
|
-
.label
|
274
|
-
|
275
|
-
}
|
225
|
+
.label,-success {
|
226
|
+
background-color: $green;
|
227
|
+
}
|
276
228
|
|
277
|
-
.label
|
278
|
-
|
229
|
+
.label,-info {
|
230
|
+
background-color: $blue;
|
231
|
+
}
|
279
232
|
}
|
280
233
|
|
281
234
|
// MISC
|
282
235
|
// -----------------------------------------------------
|
283
236
|
|
284
237
|
.well {
|
285
|
-
|
238
|
+
@include box-shadow(inset 1px 1px 0 rgba(0,0,0,.1));
|
286
239
|
}
|
287
240
|
|
288
241
|
.hero-unit {
|
289
|
-
|
290
|
-
|
242
|
+
@include box-shadow(inset 1px 1px 0 rgba(0,0,0,.1));
|
243
|
+
border: 1px solid rgba(0,0,0,.1);
|
291
244
|
}
|
292
245
|
|
293
246
|
// MEDIA QUERIES
|
294
|
-
// -----------------------------------------------------
|
247
|
+
// -----------------------------------------------------
|