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.
- 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
|
+
// Spruce 2.2.2
|
2
|
+
// Variables
|
3
|
+
// --------------------------------------------------
|
6
4
|
|
7
5
|
|
8
|
-
//
|
6
|
+
// Global values
|
9
7
|
// --------------------------------------------------
|
10
8
|
|
11
9
|
|
@@ -22,109 +20,144 @@ $white: #fff;
|
|
22
20
|
|
23
21
|
// Accent colors
|
24
22
|
// -------------------------
|
25
|
-
$blue: #
|
23
|
+
$blue: #004E8B;
|
26
24
|
$blueDark: #013435;
|
27
25
|
$green: #015B4E;
|
28
26
|
$red: #D14432;
|
29
|
-
$yellow: #
|
30
|
-
$orange: #
|
27
|
+
$yellow: #F0F1E1;
|
28
|
+
$orange: #F26522;
|
31
29
|
$pink: #A15B66;
|
32
30
|
$purple: #7073CF;
|
33
31
|
|
34
32
|
|
35
33
|
// Scaffolding
|
36
34
|
// -------------------------
|
37
|
-
$bodyBackground:
|
38
|
-
$textColor: $
|
35
|
+
$bodyBackground: $white;
|
36
|
+
$textColor: $gray;
|
39
37
|
|
40
38
|
|
41
39
|
// Links
|
42
40
|
// -------------------------
|
43
|
-
$linkColor:
|
44
|
-
$linkColorHover: $
|
41
|
+
$linkColor: lighten($green, 10%);
|
42
|
+
$linkColorHover: $linkColor;
|
45
43
|
|
46
44
|
|
47
45
|
// Typography
|
48
46
|
// -------------------------
|
49
|
-
$
|
50
|
-
$
|
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: 15px;
|
52
|
+
$baseFontFamily: $serifFontFamily;
|
51
53
|
$baseLineHeight: 21px;
|
52
|
-
$altFontFamily:
|
54
|
+
$altFontFamily: $serifFontFamily;
|
53
55
|
|
54
|
-
$headingsFontFamily: '
|
55
|
-
$headingsFontWeight:
|
56
|
-
$headingsColor:
|
56
|
+
$headingsFontFamily: 'Crete Round', serif; // empty to use BS default, $baseFontFamily
|
57
|
+
$headingsFontWeight: normal; // instead of browser default, bold
|
58
|
+
$headingsColor: $grayDark; // empty to use BS default, $textColor
|
57
59
|
|
58
60
|
|
59
|
-
//
|
61
|
+
// Component sizing
|
60
62
|
// -------------------------
|
61
|
-
|
62
|
-
|
63
|
-
$
|
64
|
-
$
|
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
|
65
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
|
+
|
78
|
+
// Tables
|
79
|
+
// -------------------------
|
80
|
+
$tableBackground: lighten(#ddd, 10%); // overall background-color
|
81
|
+
$tableBackgroundAccent: lighten(#ddd, 5%); // for striping
|
82
|
+
$tableBackgroundHover: #ddd; // for hover
|
83
|
+
$tableBorder: $headingsColor; // 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, 15%);
|
72
90
|
|
73
|
-
$btnPrimaryBackground: $
|
74
|
-
$btnPrimaryBackgroundHighlight:
|
91
|
+
$btnPrimaryBackground: lighten($green, 5%);
|
92
|
+
$btnPrimaryBackgroundHighlight: $green;
|
75
93
|
|
76
|
-
$btnInfoBackground: #
|
94
|
+
$btnInfoBackground: lighten(#2f96b4, 5%);
|
77
95
|
$btnInfoBackgroundHighlight: #2f96b4;
|
78
96
|
|
79
|
-
$btnSuccessBackground:
|
80
|
-
$btnSuccessBackgroundHighlight:
|
97
|
+
$btnSuccessBackground: lighten($blue, 10%);
|
98
|
+
$btnSuccessBackgroundHighlight: lighten($blue, 5%);
|
81
99
|
|
82
|
-
$btnWarningBackground: lighten($orange,
|
100
|
+
$btnWarningBackground: lighten($orange, 5%);
|
83
101
|
$btnWarningBackgroundHighlight: $orange;
|
84
102
|
|
85
|
-
$btnDangerBackground:
|
86
|
-
$btnDangerBackgroundHighlight:
|
103
|
+
$btnDangerBackground: lighten($red, 5%);
|
104
|
+
$btnDangerBackgroundHighlight: $red;
|
87
105
|
|
88
106
|
$btnInverseBackground: $gray;
|
89
|
-
$btnInverseBackgroundHighlight: $
|
107
|
+
$btnInverseBackgroundHighlight: darken($gray, 5%);
|
90
108
|
|
91
109
|
|
92
110
|
// Forms
|
93
111
|
// -------------------------
|
94
112
|
$inputBackground: $white;
|
95
113
|
$inputBorder: #ccc;
|
114
|
+
$inputBorderRadius: $baseBorderRadius;
|
96
115
|
$inputDisabledBackground: $grayLighter;
|
116
|
+
$formActionsBackground: transparent;
|
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:
|
102
|
-
$dropdownBorder:
|
103
|
-
$
|
122
|
+
$dropdownBackground: #002425;
|
123
|
+
$dropdownBorder: transparent;
|
124
|
+
$dropdownDividerTop: transparent;
|
125
|
+
$dropdownDividerBottom: $black;
|
126
|
+
|
127
|
+
$dropdownLinkColor: $white;
|
104
128
|
$dropdownLinkColorHover: $white;
|
105
|
-
$
|
129
|
+
$dropdownLinkColorActive: $white;
|
106
130
|
|
131
|
+
$dropdownLinkBackgroundActive: $green;
|
132
|
+
$dropdownLinkBackgroundHover: $green;
|
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
|
-
$placeholderText:
|
160
|
+
$placeholderText: #ccc;
|
128
161
|
|
129
162
|
|
130
163
|
// Hr border color
|
@@ -132,56 +165,110 @@ $placeholderText: $grayLight;
|
|
132
165
|
$hrBorder: $linkColor;
|
133
166
|
|
134
167
|
|
168
|
+
// Horizontal forms & lists
|
169
|
+
// -------------------------
|
170
|
+
$horizontalComponentOffset: 180px;
|
171
|
+
|
172
|
+
|
173
|
+
// Wells
|
174
|
+
// -------------------------
|
175
|
+
$wellBackground: #ddd;
|
176
|
+
|
177
|
+
|
135
178
|
// Navbar
|
136
179
|
// -------------------------
|
137
|
-
$
|
180
|
+
$navbarCollapseWidth: 979px;
|
181
|
+
$navbarCollapseDesktopWidth: $navbarCollapseWidth + 1;
|
182
|
+
|
183
|
+
$navbarHeight: 55px;
|
138
184
|
$navbarBackground: $blueDark;
|
139
185
|
$navbarBackgroundHighlight: $navbarBackground;
|
186
|
+
$navbarBorder: darken($navbarBackground, 5%);
|
140
187
|
|
141
188
|
$navbarText: $grayLight;
|
142
|
-
$navbarLinkColor: $
|
189
|
+
$navbarLinkColor: $white;
|
143
190
|
$navbarLinkColorHover: $white;
|
144
|
-
$navbarLinkColorActive: $
|
145
|
-
$navbarLinkBackgroundHover:
|
146
|
-
$navbarLinkBackgroundActive: $
|
191
|
+
$navbarLinkColorActive: $white;
|
192
|
+
$navbarLinkBackgroundHover: #002425;
|
193
|
+
$navbarLinkBackgroundActive: $navbarLinkBackgroundHover;
|
194
|
+
|
195
|
+
$navbarBrandColor: $navbarLinkColor;
|
196
|
+
|
197
|
+
// Inverted navbar
|
198
|
+
$navbarInverseBackground: $wellBackground;
|
199
|
+
$navbarInverseBackgroundHighlight: lighten($wellBackground, 5%);
|
200
|
+
$navbarInverseBorder: darken($navbarInverseBackground, 5%);
|
147
201
|
|
148
|
-
$
|
149
|
-
$
|
150
|
-
$
|
151
|
-
$
|
202
|
+
$navbarInverseText: $textColor;
|
203
|
+
$navbarInverseLinkColor: $headingsColor;
|
204
|
+
$navbarInverseLinkColorHover: $navbarInverseLinkColor;
|
205
|
+
$navbarInverseLinkColorActive: $navbarInverseLinkColor;
|
206
|
+
$navbarInverseLinkBackgroundHover: darken($navbarInverseBackground, 7%);
|
207
|
+
$navbarInverseLinkBackgroundActive: $navbarInverseLinkBackgroundHover;
|
208
|
+
|
209
|
+
$navbarInverseSearchBackground: lighten($navbarInverseBackground, 25%);
|
210
|
+
$navbarInverseSearchBackgroundFocus: $white;
|
211
|
+
$navbarInverseSearchBorder: $navbarInverseBackground;
|
212
|
+
$navbarInverseSearchPlaceholderColor: $white;
|
213
|
+
|
214
|
+
$navbarInverseBrandColor: $navbarInverseLinkColor;
|
215
|
+
|
216
|
+
|
217
|
+
// Pagination
|
218
|
+
// -------------------------
|
219
|
+
$paginationBackground: darken($bodyBackground, 10%);
|
220
|
+
$paginationBorder: transparent;
|
221
|
+
$paginationActiveBackground: #A2CDB5;
|
152
222
|
|
153
223
|
|
154
224
|
// Hero unit
|
155
225
|
// -------------------------
|
156
|
-
$heroUnitBackground:
|
157
|
-
$heroUnitHeadingColor:
|
226
|
+
$heroUnitBackground: #ddd;
|
227
|
+
$heroUnitHeadingColor: $headingsColor;
|
158
228
|
$heroUnitLeadColor: inherit;
|
159
229
|
|
160
230
|
|
161
231
|
// Form states and alerts
|
162
232
|
// -------------------------
|
163
|
-
$warningText: $
|
164
|
-
$warningBackground:
|
165
|
-
$warningBorder: darken(adjust-hue($warningBackground, -10),
|
233
|
+
$warningText: $white;
|
234
|
+
$warningBackground: $orange;
|
235
|
+
$warningBorder: darken(adjust-hue($warningBackground, -10), 3%);
|
166
236
|
|
167
|
-
$errorText:
|
168
|
-
$errorBackground:
|
169
|
-
$errorBorder: darken(adjust-hue($errorBackground, -10),
|
237
|
+
$errorText: $white;
|
238
|
+
$errorBackground: $red;
|
239
|
+
$errorBorder: darken(adjust-hue($errorBackground, -10), 3%);
|
170
240
|
|
171
|
-
$successText:
|
172
|
-
$successBackground:
|
173
|
-
$successBorder: darken(adjust-hue($successBackground, -10),
|
241
|
+
$successText: $white;
|
242
|
+
$successBackground: #24C00B;
|
243
|
+
$successBorder: darken(adjust-hue($successBackground, -10), 5%);
|
174
244
|
|
175
|
-
$infoText:
|
176
|
-
$infoBackground:
|
177
|
-
$infoBorder: darken(adjust-hue($infoBackground, -10),
|
245
|
+
$infoText: $white;
|
246
|
+
$infoBackground: #185AF9;
|
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: $green;
|
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,40 +1,38 @@
|
|
1
|
-
//
|
2
|
-
//
|
1
|
+
// Superhero 2.2.2
|
2
|
+
// Bootswatch
|
3
3
|
// -----------------------------------------------------
|
4
4
|
|
5
|
+
|
5
6
|
// TYPOGRAPHY
|
6
7
|
// --------------------------------------------------
|
7
8
|
|
8
|
-
@import url(
|
9
|
-
@import url(https://fonts.googleapis.com/css?family=Noticia+Text);
|
9
|
+
@import url('//fonts.googleapis.com/css?family=Oswald|Noticia+Text');
|
10
10
|
|
11
|
-
h6,
|
12
|
-
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
|
11
|
+
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, h6 {
|
13
12
|
font-family: $headingsFontFamily;
|
14
13
|
color: $orange;
|
15
|
-
text-shadow: -1px 1px 0 darken($orange,
|
14
|
+
text-shadow: -1px 1px 0 darken($orange, 30%);
|
16
15
|
}
|
17
16
|
|
18
|
-
h1, h2
|
19
|
-
text-shadow: -2px 2px 0 darken($orange,
|
17
|
+
h1, h2 {
|
18
|
+
text-shadow: -2px 2px 0 darken($orange, 30%);
|
20
19
|
}
|
21
20
|
|
22
21
|
h1 {
|
23
22
|
line-height: 55px;
|
24
23
|
}
|
25
24
|
|
26
|
-
// SCAFFOLDING
|
27
|
-
// --------------------------------------------------
|
28
|
-
|
29
25
|
code, pre {
|
30
|
-
background-color: lighten($blue,
|
26
|
+
background-color: lighten($blue, 8%);
|
31
27
|
border: none;
|
32
28
|
color: $textColor;
|
33
29
|
}
|
34
30
|
|
35
|
-
|
36
|
-
|
37
|
-
|
31
|
+
// SCAFFOLDING
|
32
|
+
// --------------------------------------------------
|
33
|
+
|
34
|
+
.page-header {
|
35
|
+
border-bottom: none;
|
38
36
|
}
|
39
37
|
|
40
38
|
blockquote {
|
@@ -59,27 +57,15 @@ blockquote.pull-right {
|
|
59
57
|
padding: 25px 20px 15px;
|
60
58
|
font-family: $headingsFontFamily;
|
61
59
|
font-size: 30px;
|
62
|
-
text-shadow: -2px 2px 0 darken($orange,
|
60
|
+
text-shadow: -2px 2px 0 darken($orange, 30%);
|
63
61
|
}
|
64
62
|
|
65
63
|
.nav > li > a {
|
66
|
-
padding:
|
67
|
-
line-height: 30px;
|
68
|
-
font-family: $headingsFontFamily;
|
69
|
-
font-size: 22px;
|
70
|
-
text-shadow: -2px 2px 0 darken($orange, .3);
|
71
|
-
}
|
72
|
-
|
73
|
-
.navbar-text {
|
74
|
-
padding: 27px 20px 13px;
|
64
|
+
padding: 23px 20px 13px;
|
75
65
|
line-height: 30px;
|
76
66
|
font-family: $headingsFontFamily;
|
77
67
|
font-size: 22px;
|
78
|
-
text-shadow: -2px 2px 0 $
|
79
|
-
}
|
80
|
-
|
81
|
-
.nav > li.active > a {
|
82
|
-
color: $orange;
|
68
|
+
text-shadow: -2px 2px 0 darken($orange, 30%);
|
83
69
|
}
|
84
70
|
|
85
71
|
.brand:hover,
|
@@ -91,21 +77,36 @@ blockquote.pull-right {
|
|
91
77
|
top: 1px;
|
92
78
|
left: -1px;
|
93
79
|
color: $orange;
|
94
|
-
text-shadow: -1px 1px 0 darken($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
95
|
}
|
96
96
|
|
97
97
|
.navbar-search {
|
98
|
-
|
98
|
+
margin-top: 24px;
|
99
99
|
}
|
100
100
|
|
101
101
|
.navbar-search .search-query {
|
102
102
|
font-family: $baseFontFamily;
|
103
103
|
font-size: $baseFontSize;
|
104
104
|
line-height: $baseLineHeight;
|
105
|
-
color: $textColor;
|
106
|
-
background-color: $blue;
|
107
105
|
@include box-shadow(none);
|
108
|
-
|
106
|
+
}
|
107
|
+
|
108
|
+
&.navbar-inverse .navbar-search .search-query {
|
109
|
+
color: $blueDark;
|
109
110
|
}
|
110
111
|
|
111
112
|
.divider-vertical {
|
@@ -114,6 +115,7 @@ blockquote.pull-right {
|
|
114
115
|
|
115
116
|
.nav .dropdown-toggle .caret,
|
116
117
|
.nav .open.dropdown .caret {
|
118
|
+
margin-top: 14px;
|
117
119
|
border-top-color: $textColor;
|
118
120
|
}
|
119
121
|
|
@@ -125,45 +127,47 @@ blockquote.pull-right {
|
|
125
127
|
left: 20px;
|
126
128
|
border-left: 7px solid transparent;
|
127
129
|
border-right: 7px solid transparent;
|
128
|
-
border-bottom: 7px solid lighten($blue,
|
130
|
+
border-bottom: 7px solid lighten($blue, 10%);
|
131
|
+
}
|
132
|
+
|
133
|
+
[class^="icon-"], [class*=" icon-"] {
|
134
|
+
vertical-align: 20%;
|
129
135
|
}
|
130
136
|
|
131
137
|
.btn-navbar {
|
132
138
|
background-color: $blue;
|
133
139
|
border-color: transparent;
|
134
140
|
}
|
141
|
+
}
|
142
|
+
|
143
|
+
@media (max-width: $navbarCollapseWidth) {
|
144
|
+
|
145
|
+
.navbar .nav-collapse {
|
135
146
|
|
136
|
-
.nav-collapse.in {
|
137
|
-
background-color: $blue;
|
138
147
|
@include border-radius(4px);
|
139
148
|
|
140
|
-
li > a {
|
141
|
-
color: $
|
142
|
-
}
|
149
|
+
.nav li > a {
|
150
|
+
color: $orange;
|
143
151
|
|
144
|
-
|
145
|
-
|
146
|
-
|
152
|
+
&:hover {
|
153
|
+
background-color: lighten($blue, 10%) !important;
|
154
|
+
background-image: none;
|
155
|
+
}
|
147
156
|
}
|
148
|
-
}
|
149
157
|
|
150
|
-
|
151
|
-
|
158
|
+
.navbar-form,
|
159
|
+
.navbar-search {
|
160
|
+
border-top: none;
|
161
|
+
border-bottom: none;
|
162
|
+
@include box-shadow(none);
|
163
|
+
}
|
152
164
|
|
153
|
-
|
154
|
-
|
165
|
+
.nav-header {
|
166
|
+
color: $textColor;
|
155
167
|
}
|
156
168
|
}
|
157
169
|
}
|
158
170
|
|
159
|
-
.dropdown .caret {
|
160
|
-
margin-top: 14px;
|
161
|
-
opacity: 1;
|
162
|
-
border-left: 6px solid transparent;
|
163
|
-
border-right: 6px solid transparent;
|
164
|
-
border-top: 6px solid lighten($blue, .1);
|
165
|
-
}
|
166
|
-
|
167
171
|
div.subnav {
|
168
172
|
background-color: $blue;
|
169
173
|
background-image: none;
|
@@ -178,7 +182,7 @@ div.subnav {
|
|
178
182
|
|
179
183
|
.nav > li > a:hover,
|
180
184
|
.nav > li.active > a:hover {
|
181
|
-
background-color: lighten($blue,
|
185
|
+
background-color: lighten($blue, 10%);
|
182
186
|
}
|
183
187
|
|
184
188
|
.nav > li + li > a {
|
@@ -226,127 +230,12 @@ div.subnav {
|
|
226
230
|
}
|
227
231
|
}
|
228
232
|
|
229
|
-
@media (max-width: 768px) {
|
230
|
-
div.subnav .nav > li:first-child > a,
|
231
|
-
div.subnav .nav > li:first-child > a:hover,
|
232
|
-
div.subnav .nav > li.active:first-child > a,
|
233
|
-
div.subnav .nav > li.active:first-child > a:hover {
|
234
|
-
@include border-radius(4px 4px 0 0);
|
235
|
-
}
|
236
|
-
|
237
|
-
div.subnav .nav > li:last-child > a,
|
238
|
-
div.subnav .nav > li:last-child > a:hover,
|
239
|
-
div.subnav .nav > li.active:last-child > a,
|
240
|
-
div.subnav .nav > li.active:last-child > a:hover {
|
241
|
-
@include border-radius(0 0 4px 4px);
|
242
|
-
}
|
243
|
-
|
244
|
-
}
|
245
|
-
|
246
|
-
// TABLES
|
247
|
-
// -----------------------------------------------------
|
248
|
-
|
249
|
-
.table,
|
250
|
-
.table-striped tbody > tr > td:first-child,
|
251
|
-
.table-striped tbody > tr > td:last-child, {
|
252
|
-
@include border-radius(4px);
|
253
|
-
}
|
254
|
-
|
255
|
-
// BUTTONS
|
256
|
-
// --------------------------------------------------
|
257
|
-
|
258
|
-
.btn,
|
259
|
-
.btn:hover {
|
260
|
-
text-shadow: none;
|
261
|
-
background-image: none;
|
262
|
-
@include box-shadow(-2px 2px 0 darken($white, .8));
|
263
|
-
border: none;
|
264
|
-
}
|
265
|
-
|
266
|
-
.btn-warning {
|
267
|
-
background-color: $yellow;
|
268
|
-
}
|
269
|
-
|
270
|
-
.btn-primary, .btn-primary:hover {
|
271
|
-
@include box-shadow(-2px 2px 0 darken($btnPrimaryBackground, .3));
|
272
|
-
}
|
273
|
-
|
274
|
-
.btn-warning, .btn-warning:hover {
|
275
|
-
@include box-shadow(-2px 2px 0 darken($yellow, .3));
|
276
|
-
}
|
277
|
-
|
278
|
-
.btn-danger, .btn-danger:hover {
|
279
|
-
@include box-shadow(-2px 2px 0 darken(#ee5f5b, .3));
|
280
|
-
}
|
281
|
-
|
282
|
-
.btn-success, .btn-success:hover {
|
283
|
-
@include box-shadow(-2px 2px 0 darken(#62c462, .3));
|
284
|
-
}
|
285
|
-
|
286
|
-
.btn-info, .btn-info:hover {
|
287
|
-
@include box-shadow(-2px 2px 0 darken(#5bc0de, .4));
|
288
|
-
}
|
289
|
-
|
290
|
-
.btn-inverse, .btn-inverse:hover {
|
291
|
-
@include box-shadow(-2px 2px 0 darken(#454545, .2));
|
292
|
-
}
|
293
|
-
|
294
|
-
.btn.dropdown-toggle, .btn.dropdown-toggle:hover {
|
295
|
-
@include box-shadow(0 2px 0 darken($white, .8));
|
296
|
-
}
|
297
|
-
|
298
|
-
.btn-primary.dropdown-toggle, .btn-primary.dropdown-toggle:hover {
|
299
|
-
@include box-shadow(0 2px 0 darken($btnPrimaryBackground, .3));
|
300
|
-
}
|
301
|
-
|
302
|
-
.btn-warning.dropdown-toggle, .btn-warning.dropdown-toggle:hover {
|
303
|
-
@include box-shadow(0 2px 0 darken($yellow, .3));
|
304
|
-
}
|
305
|
-
|
306
|
-
.btn-danger.dropdown-toggle, .btn-danger.dropdown-toggle:hover {
|
307
|
-
@include box-shadow(0 2px 0 darken(#ee5f5b, .3));
|
308
|
-
}
|
309
|
-
|
310
|
-
.btn-success.dropdown-toggle, .btn-success.dropdown-toggle:hover {
|
311
|
-
@include box-shadow(0 2px 0 darken(#62c462, .3));
|
312
|
-
}
|
313
|
-
|
314
|
-
.btn-info.dropdown-toggle, .btn-info.dropdown-toggle:hover {
|
315
|
-
@include box-shadow(0 2px 0 darken(#5bc0de, .4));
|
316
|
-
}
|
317
|
-
|
318
|
-
.btn-inverse.dropdown-toggle, .btn-inverse.dropdown-toggle:hover {
|
319
|
-
@include box-shadow(0 2px 0 darken(#454545, .2));
|
320
|
-
}
|
321
|
-
|
322
|
-
.btn.active,
|
323
|
-
.btn:active {
|
324
|
-
position: relative;
|
325
|
-
top: 1px;
|
326
|
-
left: -1px;
|
327
|
-
@include box-shadow(-1px 1px 0 darken($white, .8))
|
328
|
-
}
|
329
|
-
|
330
|
-
.btn.disabled,
|
331
|
-
.btn.disabled.active,
|
332
|
-
.btn.disabled:active,
|
333
|
-
.btn[disabled] {
|
334
|
-
@include box-shadow(none);
|
335
|
-
text-shadow: none;
|
336
|
-
top: 0;
|
337
|
-
left: 0;
|
338
|
-
}
|
339
|
-
|
340
|
-
[class^="icon-"], [class*=" icon-"] {
|
341
|
-
vertical-align: -13%;
|
342
|
-
}
|
343
|
-
|
344
233
|
// NAVIGATION
|
345
234
|
// --------------------------------------------------
|
346
235
|
|
347
236
|
.nav .nav-header {
|
348
|
-
color: $
|
349
|
-
text-shadow:none;
|
237
|
+
color: $textColor;
|
238
|
+
text-shadow: none;
|
350
239
|
}
|
351
240
|
|
352
241
|
.nav-list {
|
@@ -364,7 +253,7 @@ div.subnav {
|
|
364
253
|
}
|
365
254
|
|
366
255
|
.nav-list li > a:hover {
|
367
|
-
background-color: lighten($blue,
|
256
|
+
background-color: lighten($blue, 10%);
|
368
257
|
}
|
369
258
|
|
370
259
|
.nav-tabs, .nav-tabs.nav-stacked > li > a {
|
@@ -387,7 +276,7 @@ div.subnav {
|
|
387
276
|
|
388
277
|
li > a:hover,
|
389
278
|
&.nav-stacked > li > a:hover {
|
390
|
-
background-color: lighten($blue,
|
279
|
+
background-color: lighten($blue, 10%);
|
391
280
|
border-color: transparent;
|
392
281
|
}
|
393
282
|
}
|
@@ -398,14 +287,14 @@ div.subnav {
|
|
398
287
|
}
|
399
288
|
|
400
289
|
.nav-pills > li:hover > a {
|
401
|
-
background-color: lighten($blue,
|
290
|
+
background-color: lighten($blue, 10%);
|
402
291
|
border-color: transparent;
|
403
292
|
}
|
404
293
|
|
405
294
|
.nav-tabs .open .dropdown-toggle,
|
406
295
|
.nav-pills .open .dropdown-toggle,
|
407
296
|
.nav > .open.active > a:hover {
|
408
|
-
background-color: lighten($blue,
|
297
|
+
background-color: lighten($blue, 10%);
|
409
298
|
border-color: transparent;
|
410
299
|
}
|
411
300
|
|
@@ -442,141 +331,216 @@ div.subnav {
|
|
442
331
|
}
|
443
332
|
}
|
444
333
|
|
445
|
-
.pagination
|
334
|
+
.pagination {
|
446
335
|
|
447
|
-
|
448
|
-
|
449
|
-
|
336
|
+
ul {
|
337
|
+
background-image: none;
|
338
|
+
border-color: transparent;
|
339
|
+
}
|
450
340
|
|
451
|
-
li > a
|
341
|
+
ul > li > a,
|
342
|
+
ul > li > span {
|
452
343
|
border: none;
|
453
344
|
color: $textColor;
|
454
345
|
}
|
455
346
|
|
456
|
-
li
|
457
|
-
|
458
|
-
background: $orange;
|
459
|
-
color: $white;
|
347
|
+
ul > li > a:hover {
|
348
|
+
background: lighten($blue, 10%);
|
460
349
|
}
|
461
350
|
|
462
|
-
|
463
|
-
|
351
|
+
ul > .active > a,
|
352
|
+
ul > .active > a:hover,
|
353
|
+
ul > .active > span,
|
354
|
+
ul > .active > span:hover {
|
355
|
+
background-color: $orange;
|
356
|
+
color: $white;
|
464
357
|
}
|
465
358
|
|
466
|
-
|
467
|
-
|
468
|
-
|
359
|
+
ul > .disabled > a,
|
360
|
+
ul > .disabled > a:hover,
|
361
|
+
ul > .disabled > span,
|
362
|
+
ul > .disabled > span:hover {
|
363
|
+
background: darken($blue, 5%);
|
469
364
|
}
|
470
365
|
}
|
471
366
|
|
472
|
-
.pager
|
473
|
-
color: $textColor;
|
474
|
-
background-color: $blue;
|
475
|
-
border-color: transparent;
|
367
|
+
.pager {
|
476
368
|
|
477
|
-
|
478
|
-
|
369
|
+
a {
|
370
|
+
color: $textColor;
|
371
|
+
background-color: $blue;
|
372
|
+
border-color: transparent;
|
373
|
+
|
374
|
+
&:hover {
|
375
|
+
background: lighten($blue, 10%);
|
376
|
+
}
|
377
|
+
}
|
378
|
+
|
379
|
+
.disabled a,
|
380
|
+
.disabled a:hover {
|
381
|
+
background-color: $blue;
|
479
382
|
}
|
480
383
|
}
|
481
384
|
|
482
|
-
//
|
385
|
+
// BUTTONS
|
483
386
|
// --------------------------------------------------
|
484
387
|
|
485
|
-
|
486
|
-
|
388
|
+
.btn,
|
389
|
+
.btn:hover {
|
390
|
+
text-shadow: none;
|
391
|
+
background-image: none;
|
392
|
+
@include box-shadow(-2px 2px 0 rgba(0, 0, 0, 0.2));
|
393
|
+
border: none;
|
487
394
|
}
|
488
395
|
|
489
|
-
|
490
|
-
|
396
|
+
.btn-warning {
|
397
|
+
background-color: $yellow;
|
491
398
|
}
|
492
399
|
|
493
|
-
|
494
|
-
|
495
|
-
line-height: 15px;
|
400
|
+
.btn-primary, .btn-primary:hover {
|
401
|
+
@include box-shadow(-2px 2px 0 darken($btnPrimaryBackground, 30%));
|
496
402
|
}
|
497
403
|
|
498
|
-
.
|
499
|
-
|
500
|
-
opacity: 0.6;
|
404
|
+
.btn-warning, .btn-warning:hover {
|
405
|
+
@include box-shadow(-2px 2px 0 darken($yellow, 30%));
|
501
406
|
}
|
502
407
|
|
503
|
-
.
|
504
|
-
|
408
|
+
.btn-danger, .btn-danger:hover {
|
409
|
+
@include box-shadow(-2px 2px 0 darken(#ee5f5b, 30%));
|
505
410
|
}
|
506
411
|
|
507
|
-
.
|
508
|
-
|
412
|
+
.btn-success, .btn-success:hover {
|
413
|
+
@include box-shadow(-2px 2px 0 darken(#62c462, 30%));
|
509
414
|
}
|
510
415
|
|
511
|
-
.
|
512
|
-
|
416
|
+
.btn-info, .btn-info:hover {
|
417
|
+
@include box-shadow(-2px 2px 0 darken(#5bc0de, 40%));
|
513
418
|
}
|
514
419
|
|
515
|
-
.
|
516
|
-
|
420
|
+
.btn-inverse, .btn-inverse:hover {
|
421
|
+
@include box-shadow(-2px 2px 0 darken(#454545, 20%));
|
517
422
|
}
|
518
423
|
|
519
|
-
|
520
|
-
|
424
|
+
.btn.dropdown-toggle, .btn.dropdown-toggle:hover {
|
425
|
+
@include box-shadow(0 2px 0 darken($white, 80%));
|
426
|
+
}
|
521
427
|
|
522
|
-
.
|
523
|
-
|
428
|
+
.btn-primary.dropdown-toggle, .btn-primary.dropdown-toggle:hover {
|
429
|
+
@include box-shadow(0 2px 0 darken($btnPrimaryBackground, 30%));
|
430
|
+
}
|
431
|
+
|
432
|
+
.btn-warning.dropdown-toggle, .btn-warning.dropdown-toggle:hover {
|
433
|
+
@include box-shadow(0 2px 0 darken($yellow, 30%));
|
434
|
+
}
|
435
|
+
|
436
|
+
.btn-danger.dropdown-toggle, .btn-danger.dropdown-toggle:hover {
|
437
|
+
@include box-shadow(0 2px 0 darken(#ee5f5b, 30%));
|
438
|
+
}
|
439
|
+
|
440
|
+
.btn-success.dropdown-toggle, .btn-success.dropdown-toggle:hover {
|
441
|
+
@include box-shadow(0 2px 0 darken(#62c462, 30%));
|
442
|
+
}
|
443
|
+
|
444
|
+
.btn-info.dropdown-toggle, .btn-info.dropdown-toggle:hover {
|
445
|
+
@include box-shadow(0 2px 0 darken(#5bc0de, 40%));
|
446
|
+
}
|
447
|
+
|
448
|
+
.btn-inverse.dropdown-toggle, .btn-inverse.dropdown-toggle:hover {
|
449
|
+
@include box-shadow(0 2px 0 darken(#454545, 20%));
|
450
|
+
}
|
451
|
+
|
452
|
+
.btn.active,
|
453
|
+
.btn:active {
|
454
|
+
position: relative;
|
455
|
+
top: 1px;
|
456
|
+
left: -1px;
|
457
|
+
@include box-shadow(-1px 1px 0 darken($white, 80%))
|
524
458
|
}
|
525
459
|
|
526
|
-
.
|
527
|
-
.
|
528
|
-
.
|
460
|
+
.btn.disabled,
|
461
|
+
.btn.disabled.active,
|
462
|
+
.btn.disabled:active,
|
463
|
+
.btn[disabled] {
|
529
464
|
@include box-shadow(none);
|
530
|
-
|
531
|
-
|
465
|
+
text-shadow: none;
|
466
|
+
top: 0;
|
467
|
+
left: 0;
|
532
468
|
}
|
533
469
|
|
534
|
-
|
535
|
-
|
470
|
+
[class^="icon-"], [class*=" icon-"] {
|
471
|
+
vertical-align: -13%;
|
536
472
|
}
|
537
473
|
|
538
|
-
|
539
|
-
|
474
|
+
// TABLES
|
475
|
+
// -----------------------------------------------------
|
476
|
+
|
477
|
+
.table,
|
478
|
+
.table-striped tbody > tr > td:first-child,
|
479
|
+
.table-striped tbody > tr > td:last-child, {
|
480
|
+
@include border-radius(4px);
|
540
481
|
}
|
541
482
|
|
542
|
-
//
|
483
|
+
// FORMS
|
543
484
|
// --------------------------------------------------
|
544
485
|
|
545
|
-
|
486
|
+
input, button, select, textarea {
|
487
|
+
font-family: 'Noticia Text', serif;
|
488
|
+
}
|
489
|
+
|
490
|
+
legend {
|
546
491
|
border-bottom: none;
|
492
|
+
font-family: $headingsFontFamily;
|
493
|
+
color: $orange;
|
494
|
+
text-shadow: -2px 2px 0 darken($orange, 30%);
|
547
495
|
}
|
548
496
|
|
549
|
-
|
550
|
-
|
497
|
+
label {
|
498
|
+
color: $textColor;
|
499
|
+
line-height: 15px;
|
551
500
|
}
|
552
501
|
|
553
|
-
.
|
554
|
-
|
555
|
-
|
556
|
-
@include box-shadow(none);
|
502
|
+
.help-block {
|
503
|
+
color: $textColor;
|
504
|
+
opacity: 0.6;
|
557
505
|
}
|
558
506
|
|
559
|
-
.
|
560
|
-
|
561
|
-
line-height: 2em;
|
507
|
+
.form-actions {
|
508
|
+
border-top: none;
|
562
509
|
}
|
563
510
|
|
564
|
-
.
|
565
|
-
|
566
|
-
|
567
|
-
@include box-shadow(none);
|
511
|
+
.control-group.warning {
|
512
|
+
@include formFieldState(lighten($warningText, 10%), lighten($warningText, 10%), $warningBackground);
|
513
|
+
}
|
568
514
|
|
569
|
-
|
570
|
-
|
571
|
-
}
|
515
|
+
.control-group.error {
|
516
|
+
@include formFieldState(lighten($errorText, 10%), lighten($errorText, 10%), $errorBackground);
|
572
517
|
}
|
573
518
|
|
574
|
-
.
|
575
|
-
|
576
|
-
|
577
|
-
|
519
|
+
.control-group.success {
|
520
|
+
@include formFieldState(lighten($successText, 10%), lighten($successText, 10%), $successBackground);
|
521
|
+
}
|
522
|
+
|
523
|
+
.input-append .add-on,
|
524
|
+
.input-prepend .add-on,
|
525
|
+
.input-append .btn,
|
526
|
+
.input-prepend .btn {
|
527
|
+
color: $bodyBackground;
|
528
|
+
}
|
529
|
+
|
530
|
+
// DROPDOWNS
|
531
|
+
// --------------------------------------------------
|
532
|
+
|
533
|
+
.dropdown .caret {
|
534
|
+
margin-top: 14px;
|
535
|
+
opacity: 1;
|
536
|
+
border-left: 6px solid transparent;
|
537
|
+
border-right: 6px solid transparent;
|
538
|
+
border-top: 6px solid lighten($blue, 10%);
|
578
539
|
}
|
579
540
|
|
541
|
+
// ALERTS, LABELS, BADGES
|
542
|
+
// --------------------------------------------------
|
543
|
+
|
580
544
|
.label {
|
581
545
|
background-color: $blue;
|
582
546
|
color: $textColor;
|
@@ -605,7 +569,7 @@ footer.footer {
|
|
605
569
|
text-shadow: none;
|
606
570
|
|
607
571
|
a {
|
608
|
-
color: lighten($orange,
|
572
|
+
color: lighten($orange, 12%);
|
609
573
|
}
|
610
574
|
}
|
611
575
|
|
@@ -626,3 +590,77 @@ footer.footer {
|
|
626
590
|
background-color: $infoText;
|
627
591
|
}
|
628
592
|
|
593
|
+
// MISC
|
594
|
+
// --------------------------------------------------
|
595
|
+
|
596
|
+
.well, .hero-unit {
|
597
|
+
border: none;
|
598
|
+
@include box-shadow(none);
|
599
|
+
}
|
600
|
+
|
601
|
+
.hero-unit h1 {
|
602
|
+
color: $orange;
|
603
|
+
line-height: 2em;
|
604
|
+
}
|
605
|
+
|
606
|
+
.progress {
|
607
|
+
background-color: darken($blueDark, 5%);
|
608
|
+
background-image: none;
|
609
|
+
@include box-shadow(none);
|
610
|
+
|
611
|
+
.bar {
|
612
|
+
@include box-shadow(none);
|
613
|
+
}
|
614
|
+
}
|
615
|
+
|
616
|
+
.thumbnail {
|
617
|
+
border: none;
|
618
|
+
background: $blue;
|
619
|
+
@include border-radius(3px);
|
620
|
+
}
|
621
|
+
|
622
|
+
.modal {
|
623
|
+
background-color: transparent;
|
624
|
+
|
625
|
+
.modal-header,
|
626
|
+
.modal-body,
|
627
|
+
.modal-footer {
|
628
|
+
@include box-shadow(none);
|
629
|
+
background-color: $bodyBackground;
|
630
|
+
border: none;
|
631
|
+
}
|
632
|
+
|
633
|
+
.modal-header {
|
634
|
+
@include border-radius(4px 4px 0 0);
|
635
|
+
}
|
636
|
+
|
637
|
+
.modal-footer {
|
638
|
+
@include border-radius(0 0 4px 4px);
|
639
|
+
}
|
640
|
+
}
|
641
|
+
|
642
|
+
// MEDIA QUERIES
|
643
|
+
// --------------------------------------------------
|
644
|
+
|
645
|
+
@media (max-width: 768px) {
|
646
|
+
|
647
|
+
div.subnav {
|
648
|
+
|
649
|
+
.nav > li {
|
650
|
+
|
651
|
+
&:first-child > a,
|
652
|
+
&:first-child > a:hover,
|
653
|
+
&.active:first-child > a,
|
654
|
+
&.active:first-child > a:hover {
|
655
|
+
@include border-radius(4px 4px 0 0);
|
656
|
+
}
|
657
|
+
|
658
|
+
&:last-child > a,
|
659
|
+
&:last-child > a:hover,
|
660
|
+
&.active:last-child > a,
|
661
|
+
&.active:last-child > a:hover {
|
662
|
+
@include border-radius(0 0 4px 4px);
|
663
|
+
}
|
664
|
+
}
|
665
|
+
}
|
666
|
+
}
|