less-rails-bootswatch 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/less/rails/bootswatch/version.rb +1 -1
- data/vendor/frameworks/stylesheets/bootswatch/amelia/bootswatch.less +5 -8
- data/vendor/frameworks/stylesheets/bootswatch/amelia/variables.less +10 -8
- data/vendor/frameworks/stylesheets/bootswatch/cerulean/bootswatch.less +33 -31
- data/vendor/frameworks/stylesheets/bootswatch/cerulean/variables.less +11 -9
- data/vendor/frameworks/stylesheets/bootswatch/cyborg/bootswatch.less +171 -144
- data/vendor/frameworks/stylesheets/bootswatch/cyborg/variables.less +20 -18
- data/vendor/frameworks/stylesheets/bootswatch/default/variables.less +10 -6
- data/vendor/frameworks/stylesheets/bootswatch/journal/bootswatch.less +74 -74
- data/vendor/frameworks/stylesheets/bootswatch/journal/variables.less +12 -10
- data/vendor/frameworks/stylesheets/bootswatch/readable/bootswatch.less +39 -11
- data/vendor/frameworks/stylesheets/bootswatch/readable/variables.less +10 -8
- data/vendor/frameworks/stylesheets/bootswatch/simplex/bootswatch.less +32 -39
- data/vendor/frameworks/stylesheets/bootswatch/simplex/variables.less +10 -8
- data/vendor/frameworks/stylesheets/bootswatch/slate/bootswatch.less +7 -11
- data/vendor/frameworks/stylesheets/bootswatch/slate/variables.less +13 -11
- data/vendor/frameworks/stylesheets/bootswatch/spacelab/bootswatch.less +85 -77
- data/vendor/frameworks/stylesheets/bootswatch/spacelab/variables.less +10 -8
- data/vendor/frameworks/stylesheets/bootswatch/spruce/bootswatch.less +143 -121
- data/vendor/frameworks/stylesheets/bootswatch/spruce/variables.less +12 -10
- data/vendor/frameworks/stylesheets/bootswatch/superhero/bootswatch.less +145 -134
- data/vendor/frameworks/stylesheets/bootswatch/superhero/variables.less +12 -10
- data/vendor/frameworks/stylesheets/bootswatch/united/bootswatch.less +38 -43
- data/vendor/frameworks/stylesheets/bootswatch/united/variables.less +10 -8
- metadata +10 -5
@@ -1,11 +1,9 @@
|
|
1
1
|
// Variables.less
|
2
2
|
// Variables to customize the look and feel of Bootstrap
|
3
3
|
// Swatch: Spruce
|
4
|
-
// Version: 2.0.
|
4
|
+
// Version: 2.0.3
|
5
5
|
// -----------------------------------------------------
|
6
6
|
|
7
|
-
|
8
|
-
|
9
7
|
// GLOBAL VALUES
|
10
8
|
// --------------------------------------------------
|
11
9
|
|
@@ -47,10 +45,14 @@
|
|
47
45
|
|
48
46
|
// Typography
|
49
47
|
// -------------------------
|
48
|
+
@sansFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
49
|
+
@serifFontFamily: Georgia, "Times New Roman", Times, serif;
|
50
|
+
@monoFontFamily: Menlo, Monaco, Consolas, "Courier New", monospace;
|
51
|
+
|
50
52
|
@baseFontSize: 14px;
|
51
|
-
@baseFontFamily:
|
53
|
+
@baseFontFamily: @sansFontFamily;
|
52
54
|
@baseLineHeight: 21px;
|
53
|
-
@altFontFamily:
|
55
|
+
@altFontFamily: @serifFontFamily;
|
54
56
|
|
55
57
|
@headingsFontFamily: 'Josefin Slab', serif; // empty to use BS default, @baseFontFamily
|
56
58
|
@headingsFontWeight: 700; // instead of browser default, bold
|
@@ -94,8 +96,9 @@
|
|
94
96
|
// -------------------------
|
95
97
|
@inputBackground: @white;
|
96
98
|
@inputBorder: #ccc;
|
99
|
+
@inputBorderRadius: 3px;
|
97
100
|
@inputDisabledBackground: @grayLighter;
|
98
|
-
|
101
|
+
@formActionsBackground: transparent;
|
99
102
|
|
100
103
|
// Dropdowns
|
101
104
|
// -------------------------
|
@@ -146,8 +149,8 @@
|
|
146
149
|
@navbarBackgroundHighlight: @navbarBackground;
|
147
150
|
|
148
151
|
@navbarText: @grayLight;
|
149
|
-
@navbarLinkColor: @
|
150
|
-
@navbarLinkColorHover: @
|
152
|
+
@navbarLinkColor: @linkColor;
|
153
|
+
@navbarLinkColorHover: @yellow;
|
151
154
|
@navbarLinkColorActive: @navbarLinkColorHover;
|
152
155
|
@navbarLinkBackgroundHover: transparent;
|
153
156
|
@navbarLinkBackgroundActive: @navbarBackground;
|
@@ -156,6 +159,7 @@
|
|
156
159
|
@navbarSearchBackgroundFocus: @white;
|
157
160
|
@navbarSearchBorder: darken(@navbarSearchBackground, 30%);
|
158
161
|
@navbarSearchPlaceholderColor: #ccc;
|
162
|
+
@navbarBrandColor: @linkColor;
|
159
163
|
|
160
164
|
|
161
165
|
// Hero unit
|
@@ -185,7 +189,6 @@
|
|
185
189
|
|
186
190
|
|
187
191
|
|
188
|
-
|
189
192
|
// GRID
|
190
193
|
// --------------------------------------------------
|
191
194
|
|
@@ -196,7 +199,6 @@
|
|
196
199
|
@gridGutterWidth: 20px;
|
197
200
|
@gridRowWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
|
198
201
|
|
199
|
-
|
200
202
|
// Fluid grid
|
201
203
|
// -------------------------
|
202
204
|
@fluidGridColumnWidth: 6.382978723%;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
// Bootswatch.less
|
2
2
|
// Swatch: Superhero
|
3
|
-
// Version: 2.0.
|
3
|
+
// Version: 2.0.3
|
4
4
|
// -----------------------------------------------------
|
5
5
|
|
6
6
|
// TYPOGRAPHY
|
@@ -9,16 +9,14 @@
|
|
9
9
|
@import url(https://fonts.googleapis.com/css?family=Oswald);
|
10
10
|
@import url(https://fonts.googleapis.com/css?family=Noticia+Text);
|
11
11
|
|
12
|
-
|
13
|
-
.navbar .nav > li > a,
|
12
|
+
h6, legend,
|
14
13
|
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
|
15
|
-
font-family:
|
14
|
+
font-family: @headingsFontFamily;
|
16
15
|
color: @orange;
|
17
16
|
text-shadow: -1px 1px 0 darken(@orange, 30%);
|
18
17
|
}
|
19
18
|
|
20
|
-
h1, h2, legend
|
21
|
-
.navbar .nav > li > a {
|
19
|
+
h1, h2, legend {
|
22
20
|
text-shadow: -2px 2px 0 darken(@orange, 30%);
|
23
21
|
}
|
24
22
|
|
@@ -51,54 +49,116 @@ blockquote.pull-right {
|
|
51
49
|
// NAVBAR
|
52
50
|
// --------------------------------------------------
|
53
51
|
|
54
|
-
.navbar
|
55
|
-
|
56
|
-
|
52
|
+
.navbar {
|
53
|
+
|
54
|
+
.navbar-inner {
|
55
|
+
.box-shadow(none);
|
56
|
+
background-image: none;
|
57
|
+
}
|
58
|
+
|
59
|
+
.brand {
|
60
|
+
padding: 25px 20px 15px;
|
61
|
+
font-family: @headingsFontFamily;
|
62
|
+
font-size: 30px;
|
63
|
+
text-shadow: -2px 2px 0 darken(@orange, 30%);
|
64
|
+
}
|
65
|
+
|
66
|
+
.nav > li > a {
|
67
|
+
padding: 27px 20px 13px;
|
68
|
+
line-height: 30px;
|
69
|
+
font-family: @headingsFontFamily;
|
70
|
+
font-size: 22px;
|
71
|
+
text-shadow: -2px 2px 0 darken(@orange, 30%);
|
72
|
+
}
|
73
|
+
|
74
|
+
.navbar-text {
|
75
|
+
padding: 27px 20px 13px;
|
76
|
+
line-height: 30px;
|
77
|
+
font-family: @headingsFontFamily;
|
78
|
+
font-size: 22px;
|
79
|
+
text-shadow: -2px 2px 0 @gray;
|
80
|
+
}
|
81
|
+
|
82
|
+
.nav > li.active > a {
|
83
|
+
color: @orange;
|
84
|
+
}
|
85
|
+
|
86
|
+
.brand:hover,
|
87
|
+
.nav > li > a:hover,
|
88
|
+
.nav > li.active > a:hover,
|
89
|
+
.nav > li.dropdown.open > a,
|
90
|
+
.nav > li.dropdown.open > a:hover {
|
91
|
+
position: relative;
|
92
|
+
top: 1px;
|
93
|
+
left: -1px;
|
94
|
+
color: @orange;
|
95
|
+
text-shadow: -1px 1px 0 darken(@orange, 30%);
|
96
|
+
}
|
97
|
+
|
98
|
+
.navbar-search {
|
99
|
+
padding-top: 20px;
|
100
|
+
}
|
57
101
|
|
58
|
-
.navbar .
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
text-shadow: -1px 1px 0 darken(@orange, 30%);
|
68
|
-
}
|
102
|
+
.navbar-search .search-query {
|
103
|
+
font-family: @baseFontFamily;
|
104
|
+
font-size: @baseFontSize;
|
105
|
+
line-height: @baseLineHeight;
|
106
|
+
color: @textColor;
|
107
|
+
background-color: @blue;
|
108
|
+
.box-shadow(none);
|
109
|
+
border: none;
|
110
|
+
}
|
69
111
|
|
70
|
-
.
|
71
|
-
|
72
|
-
|
73
|
-
|
112
|
+
.divider-vertical {
|
113
|
+
height: 70px;
|
114
|
+
}
|
115
|
+
|
116
|
+
.nav .dropdown-toggle .caret,
|
117
|
+
.nav .open.dropdown .caret {
|
118
|
+
border-top-color: @textColor;
|
119
|
+
}
|
120
|
+
|
121
|
+
.dropdown-menu::before {
|
122
|
+
border: none;
|
123
|
+
}
|
74
124
|
|
75
|
-
.
|
76
|
-
|
77
|
-
|
78
|
-
|
125
|
+
.dropdown-menu::after {
|
126
|
+
left: 20px;
|
127
|
+
border-left: 7px solid transparent;
|
128
|
+
border-right: 7px solid transparent;
|
129
|
+
border-bottom: 7px solid lighten(@blue, 10%);
|
130
|
+
}
|
131
|
+
|
132
|
+
[class^="icon-"], [class*=" icon-"] {
|
133
|
+
vertical-align: 20%;
|
134
|
+
}
|
79
135
|
|
80
|
-
.navbar
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
}
|
136
|
+
.btn-navbar {
|
137
|
+
background-color: @blue;
|
138
|
+
border-color: transparent;
|
139
|
+
}
|
85
140
|
|
86
|
-
.
|
87
|
-
|
88
|
-
|
141
|
+
.nav-collapse.in {
|
142
|
+
background-color: @blue;
|
143
|
+
.border-radius(4px);
|
89
144
|
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
line-height: @baseLineHeight;
|
94
|
-
color: @textColor;
|
95
|
-
background-color: @blue;
|
96
|
-
.box-shadow(none);
|
97
|
-
border: none;
|
98
|
-
}
|
145
|
+
li > a {
|
146
|
+
color: @textColor;
|
147
|
+
}
|
99
148
|
|
100
|
-
|
101
|
-
|
149
|
+
li > a:hover {
|
150
|
+
color: @textColor;
|
151
|
+
background-color: lighten(@blue, 10%);
|
152
|
+
}
|
153
|
+
}
|
154
|
+
|
155
|
+
.nav-collapse.in > .nav > li > a {
|
156
|
+
color: @orange;
|
157
|
+
|
158
|
+
&:hover {
|
159
|
+
background-color: lighten(@blue, 10%);
|
160
|
+
}
|
161
|
+
}
|
102
162
|
}
|
103
163
|
|
104
164
|
.dropdown .caret {
|
@@ -109,64 +169,11 @@ blockquote.pull-right {
|
|
109
169
|
border-top: 6px solid lighten(@blue, 10%);
|
110
170
|
}
|
111
171
|
|
112
|
-
.navbar .nav .dropdown-toggle .caret,
|
113
|
-
.navbar .nav .open.dropdown .caret,
|
114
|
-
.nav-pills .dropdown .caret,
|
115
|
-
.nav-pills .dropdown:hover .caret {
|
116
|
-
border-top-color: @textColor;
|
117
|
-
}
|
118
|
-
|
119
|
-
.navbar .dropdown-menu::before {
|
120
|
-
border: none;
|
121
|
-
}
|
122
|
-
|
123
|
-
.navbar .dropdown-menu::after {
|
124
|
-
left: 20px;
|
125
|
-
border-left: 7px solid transparent;
|
126
|
-
border-right: 7px solid transparent;
|
127
|
-
border-bottom: 7px solid lighten(@blue, 10%);
|
128
|
-
}
|
129
|
-
|
130
|
-
.navbar [class^="icon-"], .navbar [class*=" icon-"] {
|
131
|
-
vertical-align: 20%;
|
132
|
-
}
|
133
|
-
|
134
|
-
.navbar .btn-navbar {
|
135
|
-
background-color: @blue;
|
136
|
-
border-color: transparent;
|
137
|
-
}
|
138
|
-
|
139
|
-
.navbar .nav-collapse.in {
|
140
|
-
background-color: @blue;
|
141
|
-
.border-radius(4px);
|
142
|
-
|
143
|
-
li > a {
|
144
|
-
color: @textColor;
|
145
|
-
}
|
146
|
-
|
147
|
-
li > a:hover {
|
148
|
-
color: @textColor;
|
149
|
-
background-color: lighten(@blue, 10%);
|
150
|
-
}
|
151
|
-
}
|
152
|
-
|
153
|
-
.navbar .nav-collapse.in > .nav > li > a {
|
154
|
-
color: @orange;
|
155
|
-
|
156
|
-
&:hover {
|
157
|
-
background-color: lighten(@blue, 10%);
|
158
|
-
}
|
159
|
-
}
|
160
|
-
|
161
|
-
.subnav.subnav-fixed {
|
162
|
-
top: 70px;
|
163
|
-
}
|
164
|
-
|
165
172
|
div.subnav {
|
166
173
|
background-color: @blue;
|
167
174
|
background-image: none;
|
168
175
|
border: none;
|
169
|
-
|
176
|
+
|
170
177
|
.nav > li > a,
|
171
178
|
.nav > li.active > a {
|
172
179
|
border-left: none;
|
@@ -178,44 +185,44 @@ div.subnav {
|
|
178
185
|
.nav > li.active > a:hover {
|
179
186
|
background-color: lighten(@blue, 10%);
|
180
187
|
}
|
181
|
-
}
|
182
|
-
|
183
|
-
div.subnav .nav > li + li > a {
|
184
|
-
border-top: 0px solid transparent;
|
185
|
-
}
|
186
|
-
|
187
|
-
div.subnav .nav > li:first-child > a,
|
188
|
-
div.subnav .nav > li:first-child > a:hover,
|
189
|
-
div.subnav .nav > li.active:first-child > a,
|
190
|
-
div.subnav .nav > li.active:first-child > a:hover {
|
191
|
-
.border-radius(4px 0 0 4px);
|
192
|
-
}
|
193
|
-
|
194
|
-
div.subnav .nav > li.active > a,
|
195
|
-
div.subnav .nav > li.active > a:hover {
|
196
|
-
color: @white;
|
197
|
-
background-color: @orange;
|
198
|
-
background-image: none;
|
199
|
-
.box-shadow(none);
|
200
|
-
}
|
201
|
-
|
202
|
-
div.subnav.subnav-fixed {
|
203
|
-
.box-shadow(none);
|
204
188
|
|
205
|
-
.nav > li > a
|
206
|
-
|
207
|
-
.nav > li > a:hover,
|
208
|
-
.nav > li.active > a:hover {
|
209
|
-
border-color: transparent;
|
210
|
-
padding-left: 12px;
|
211
|
-
padding-right: 12px;
|
212
|
-
.border-radius(0);
|
189
|
+
.nav > li + li > a {
|
190
|
+
border-top: 0px solid transparent;
|
213
191
|
}
|
214
192
|
|
193
|
+
.nav > li:first-child > a,
|
194
|
+
.nav > li:first-child > a:hover,
|
195
|
+
.nav > li.active:first-child > a,
|
196
|
+
.nav > li.active:first-child > a:hover {
|
197
|
+
.border-radius(4px 0 0 4px);
|
198
|
+
}
|
215
199
|
|
216
|
-
.nav > li > a
|
200
|
+
.nav > li.active > a,
|
217
201
|
.nav > li.active > a:hover {
|
218
202
|
color: @white;
|
203
|
+
background-color: @orange;
|
204
|
+
background-image: none;
|
205
|
+
.box-shadow(none);
|
206
|
+
}
|
207
|
+
|
208
|
+
&.subnav-fixed {
|
209
|
+
top: 70px;
|
210
|
+
.box-shadow(none);
|
211
|
+
|
212
|
+
.nav > li > a,
|
213
|
+
.nav > li.active > a,
|
214
|
+
.nav > li > a:hover,
|
215
|
+
.nav > li.active > a:hover {
|
216
|
+
border-color: transparent;
|
217
|
+
padding-left: 12px;
|
218
|
+
padding-right: 12px;
|
219
|
+
.border-radius(0);
|
220
|
+
}
|
221
|
+
|
222
|
+
.nav > li > a:hover,
|
223
|
+
.nav > li.active > a:hover {
|
224
|
+
color: @white;
|
225
|
+
}
|
219
226
|
}
|
220
227
|
}
|
221
228
|
|
@@ -410,6 +417,11 @@ div.subnav.subnav-fixed {
|
|
410
417
|
border-color: transparent;
|
411
418
|
}
|
412
419
|
|
420
|
+
.nav-pills .dropdown .caret,
|
421
|
+
.nav-pills .dropdown:hover .caret {
|
422
|
+
border-top-color: @textColor;
|
423
|
+
}
|
424
|
+
|
413
425
|
.dropdown.open .dropdown-menu > li > a:hover,
|
414
426
|
.dropdown.open .dropdown-menu > li.active > a:hover {
|
415
427
|
background-color: @orange;
|
@@ -497,7 +509,6 @@ label {
|
|
497
509
|
}
|
498
510
|
|
499
511
|
.form-actions {
|
500
|
-
background-color: transparent;
|
501
512
|
border-top: none;
|
502
513
|
}
|
503
514
|
|
@@ -1,11 +1,9 @@
|
|
1
1
|
// Variables.less
|
2
2
|
// Variables to customize the look and feel of Bootstrap
|
3
3
|
// Swatch: Superhero
|
4
|
-
// Version: 2.0.
|
4
|
+
// Version: 2.0.3
|
5
5
|
// -----------------------------------------------------
|
6
6
|
|
7
|
-
|
8
|
-
|
9
7
|
// GLOBAL VALUES
|
10
8
|
// --------------------------------------------------
|
11
9
|
|
@@ -47,10 +45,14 @@
|
|
47
45
|
|
48
46
|
// Typography
|
49
47
|
// -------------------------
|
48
|
+
@sansFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
49
|
+
@serifFontFamily: Georgia, Utopia, Palatino, 'Palatino Linotype', serif;
|
50
|
+
@monoFontFamily: Menlo, Monaco, Consolas, "Courier New", monospace;
|
51
|
+
|
50
52
|
@baseFontSize: 15px;
|
51
|
-
@baseFontFamily:
|
53
|
+
@baseFontFamily: @serifFontFamily;
|
52
54
|
@baseLineHeight: 20px;
|
53
|
-
@altFontFamily:
|
55
|
+
@altFontFamily: @serifFontFamily;
|
54
56
|
|
55
57
|
@headingsFontFamily: 'Oswald', sans-serif; // empty to use BS default, @baseFontFamily
|
56
58
|
@headingsFontWeight: bold; // instead of browser default, bold
|
@@ -94,8 +96,9 @@
|
|
94
96
|
// -------------------------
|
95
97
|
@inputBackground: @white;
|
96
98
|
@inputBorder: #ccc;
|
99
|
+
@inputBorderRadius: 3px;
|
97
100
|
@inputDisabledBackground: @grayLighter;
|
98
|
-
|
101
|
+
@formActionsBackground: transparent;
|
99
102
|
|
100
103
|
// Dropdowns
|
101
104
|
// -------------------------
|
@@ -146,8 +149,8 @@
|
|
146
149
|
@navbarBackgroundHighlight: @navbarBackground;
|
147
150
|
|
148
151
|
@navbarText: @grayLight;
|
149
|
-
@navbarLinkColor: @
|
150
|
-
@navbarLinkColorHover: @
|
152
|
+
@navbarLinkColor: @orange;
|
153
|
+
@navbarLinkColorHover: @orange;
|
151
154
|
@navbarLinkColorActive: @navbarLinkColorHover;
|
152
155
|
@navbarLinkBackgroundHover: transparent;
|
153
156
|
@navbarLinkBackgroundActive: @navbarBackground;
|
@@ -156,6 +159,7 @@
|
|
156
159
|
@navbarSearchBackgroundFocus: @white;
|
157
160
|
@navbarSearchBorder: darken(@navbarSearchBackground, 30%);
|
158
161
|
@navbarSearchPlaceholderColor: #ccc;
|
162
|
+
@navbarBrandColor: @navbarLinkColor;
|
159
163
|
|
160
164
|
|
161
165
|
// Hero unit
|
@@ -185,7 +189,6 @@
|
|
185
189
|
|
186
190
|
|
187
191
|
|
188
|
-
|
189
192
|
// GRID
|
190
193
|
// --------------------------------------------------
|
191
194
|
|
@@ -196,7 +199,6 @@
|
|
196
199
|
@gridGutterWidth: 20px;
|
197
200
|
@gridRowWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
|
198
201
|
|
199
|
-
|
200
202
|
// Fluid grid
|
201
203
|
// -------------------------
|
202
204
|
@fluidGridColumnWidth: 6.382978723%;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
// Bootswatch.less
|
2
2
|
// Swatch: United
|
3
|
-
// Version: 2.0.
|
3
|
+
// Version: 2.0.3
|
4
4
|
// -----------------------------------------------------
|
5
5
|
|
6
6
|
// TYPOGRAPHY
|
@@ -11,55 +11,53 @@
|
|
11
11
|
// NAVBAR
|
12
12
|
// -----------------------------------------------------
|
13
13
|
|
14
|
-
.navbar
|
15
|
-
border-right: 1px solid #C03D14;
|
16
|
-
border-left: 1px solid #E6633A;
|
14
|
+
.navbar {
|
17
15
|
|
18
|
-
|
19
|
-
|
16
|
+
.nav > li > a {
|
17
|
+
border-right: 1px solid #C03D14;
|
18
|
+
border-left: 1px solid #E6633A;
|
19
|
+
|
20
|
+
&:hover {
|
21
|
+
background-color: @linkColorHover;
|
22
|
+
}
|
23
|
+
}
|
24
|
+
|
25
|
+
.nav .active > a,
|
26
|
+
.nav .active > a:hover {
|
27
|
+
background-color: rgba(0,0,0,.2);
|
20
28
|
}
|
21
|
-
}
|
22
29
|
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
}
|
30
|
+
.divider-vertical {
|
31
|
+
background-color: inherit;
|
32
|
+
border-right: 0px solid #CE4213;
|
33
|
+
}
|
28
34
|
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
}
|
35
|
+
.navbar-text {
|
36
|
+
padding: 9px 10px 11px;
|
37
|
+
line-height: 19px;
|
38
|
+
color: @white;
|
39
|
+
}
|
34
40
|
|
35
|
-
.navbar .
|
36
|
-
|
37
|
-
text-decoration: underline;
|
38
|
-
|
39
|
-
&:hover {
|
40
|
-
color: #ddd;
|
41
|
+
.navbar-search .search-query {
|
42
|
+
border: 1px solid darken(@navbarBackground, 15%);
|
41
43
|
}
|
42
|
-
}
|
43
44
|
|
44
|
-
.
|
45
|
-
|
46
|
-
|
45
|
+
.nav-collapse.in > .nav li > a {
|
46
|
+
color: @white;
|
47
|
+
border-left: 0px solid @orange;
|
48
|
+
border-right: 0px solid @orange;
|
47
49
|
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
border-right: 0px solid @orange;
|
52
|
-
|
53
|
-
&:hover {
|
54
|
-
background-color: @linkColorHover;
|
50
|
+
&:hover {
|
51
|
+
background-color: @linkColorHover;
|
52
|
+
}
|
55
53
|
}
|
56
|
-
}
|
57
54
|
|
58
|
-
.
|
59
|
-
.
|
60
|
-
|
61
|
-
|
62
|
-
|
55
|
+
.nav-collapse.in .navbar-form,
|
56
|
+
.nav-collapse.in .navbar-search {
|
57
|
+
border-top: 0px solid @orange;
|
58
|
+
border-bottom: 0px solid @orange;
|
59
|
+
.box-shadow(none);
|
60
|
+
}
|
63
61
|
}
|
64
62
|
|
65
63
|
// BUTTONS
|
@@ -76,9 +74,6 @@
|
|
76
74
|
// FORMS
|
77
75
|
// -----------------------------------------------------
|
78
76
|
|
79
|
-
.form-actions {
|
80
|
-
background-color: transparent;
|
81
|
-
}
|
82
77
|
|
83
78
|
// MISC
|
84
79
|
// -----------------------------------------------------
|
@@ -1,11 +1,9 @@
|
|
1
1
|
// Variables.less
|
2
2
|
// Variables to customize the look and feel of Bootstrap
|
3
3
|
// Swatch: United
|
4
|
-
// Version: 2.0.
|
4
|
+
// Version: 2.0.3
|
5
5
|
// -----------------------------------------------------
|
6
6
|
|
7
|
-
|
8
|
-
|
9
7
|
// GLOBAL VALUES
|
10
8
|
// --------------------------------------------------
|
11
9
|
|
@@ -47,10 +45,14 @@
|
|
47
45
|
|
48
46
|
// Typography
|
49
47
|
// -------------------------
|
48
|
+
@sansFontFamily: 'Ubuntu', Tahoma, sans-serif;
|
49
|
+
@serifFontFamily: Georgia, "Times New Roman", Times, serif;
|
50
|
+
@monoFontFamily: Menlo, Monaco, Consolas, "Courier New", monospace;
|
51
|
+
|
50
52
|
@baseFontSize: 13px;
|
51
|
-
@baseFontFamily:
|
53
|
+
@baseFontFamily: @sansFontFamily;
|
52
54
|
@baseLineHeight: 18px;
|
53
|
-
@altFontFamily:
|
55
|
+
@altFontFamily: @serifFontFamily;
|
54
56
|
|
55
57
|
@headingsFontFamily: inherit; // empty to use BS default, @baseFontFamily
|
56
58
|
@headingsFontWeight: bold; // instead of browser default, bold
|
@@ -94,8 +96,9 @@
|
|
94
96
|
// -------------------------
|
95
97
|
@inputBackground: @white;
|
96
98
|
@inputBorder: #ccc;
|
99
|
+
@inputBorderRadius: 3px;
|
97
100
|
@inputDisabledBackground: @grayLighter;
|
98
|
-
|
101
|
+
@formActionsBackground: transparent;
|
99
102
|
|
100
103
|
// Dropdowns
|
101
104
|
// -------------------------
|
@@ -156,6 +159,7 @@
|
|
156
159
|
@navbarSearchBackgroundFocus: @white;
|
157
160
|
@navbarSearchBorder: darken(@navbarSearchBackground, 30%);
|
158
161
|
@navbarSearchPlaceholderColor: #ccc;
|
162
|
+
@navbarBrandColor: @navbarLinkColor;
|
159
163
|
|
160
164
|
|
161
165
|
// Hero unit
|
@@ -185,7 +189,6 @@
|
|
185
189
|
|
186
190
|
|
187
191
|
|
188
|
-
|
189
192
|
// GRID
|
190
193
|
// --------------------------------------------------
|
191
194
|
|
@@ -196,7 +199,6 @@
|
|
196
199
|
@gridGutterWidth: 20px;
|
197
200
|
@gridRowWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
|
198
201
|
|
199
|
-
|
200
202
|
// Fluid grid
|
201
203
|
// -------------------------
|
202
204
|
@fluidGridColumnWidth: 6.382978723%;
|