bootswatch-rails 0.5.0 → 3.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +6 -14
  2. data/CONTRIBUTING.md +52 -0
  3. data/CONVERSION.md +6 -8
  4. data/HISTORY.md +9 -1
  5. data/README.md +6 -1
  6. data/Rakefile +3 -0
  7. data/lib/bootswatch-rails/version.rb +1 -1
  8. data/rearranges +12 -10
  9. data/vendor/assets/stylesheets/bootswatch/amelia/_bootswatch.scss +109 -718
  10. data/vendor/assets/stylesheets/bootswatch/amelia/_variables.scss +743 -217
  11. data/vendor/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +78 -133
  12. data/vendor/assets/stylesheets/bootswatch/cerulean/_variables.scss +745 -217
  13. data/vendor/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +113 -552
  14. data/vendor/assets/stylesheets/bootswatch/cosmo/_variables.scss +745 -217
  15. data/vendor/assets/stylesheets/bootswatch/custom/_bootswatch.scss +22 -0
  16. data/vendor/assets/stylesheets/bootswatch/custom/_variables.scss +620 -0
  17. data/vendor/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +105 -525
  18. data/vendor/assets/stylesheets/bootswatch/cyborg/_variables.scss +745 -217
  19. data/vendor/assets/stylesheets/bootswatch/darkly/_bootswatch.scss +273 -0
  20. data/vendor/assets/stylesheets/bootswatch/darkly/_variables.scss +829 -0
  21. data/vendor/assets/stylesheets/bootswatch/flatly/_bootswatch.scss +183 -452
  22. data/vendor/assets/stylesheets/bootswatch/flatly/_variables.scss +747 -218
  23. data/vendor/assets/stylesheets/bootswatch/journal/_bootswatch.scss +77 -295
  24. data/vendor/assets/stylesheets/bootswatch/journal/_variables.scss +745 -217
  25. data/vendor/assets/stylesheets/bootswatch/lumen/_bootswatch.scss +408 -0
  26. data/vendor/assets/stylesheets/bootswatch/lumen/_variables.scss +827 -0
  27. data/vendor/assets/stylesheets/bootswatch/readable/_bootswatch.scss +149 -37
  28. data/vendor/assets/stylesheets/bootswatch/readable/_variables.scss +745 -217
  29. data/vendor/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +84 -413
  30. data/vendor/assets/stylesheets/bootswatch/simplex/_variables.scss +745 -217
  31. data/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss +251 -481
  32. data/vendor/assets/stylesheets/bootswatch/slate/_variables.scss +749 -217
  33. data/vendor/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +87 -231
  34. data/vendor/assets/stylesheets/bootswatch/spacelab/_variables.scss +745 -216
  35. data/vendor/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +168 -569
  36. data/vendor/assets/stylesheets/bootswatch/superhero/_variables.scss +746 -217
  37. data/vendor/assets/stylesheets/bootswatch/united/_bootswatch.scss +21 -110
  38. data/vendor/assets/stylesheets/bootswatch/united/_variables.scss +745 -217
  39. data/vendor/assets/stylesheets/bootswatch/yeti/_bootswatch.scss +418 -0
  40. data/vendor/assets/stylesheets/bootswatch/yeti/_variables.scss +827 -0
  41. metadata +17 -9
  42. data/vendor/assets/stylesheets/bootswatch/spruce/_bootswatch.scss +0 -650
  43. data/vendor/assets/stylesheets/bootswatch/spruce/_variables.scss +0 -301
@@ -0,0 +1,408 @@
1
+ // Lumen 3.1.1
2
+ // Bootswatch
3
+ // -----------------------------------------------------
4
+
5
+ @import url("//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,400italic");
6
+
7
+ @mixin shadow($width: 4px) {
8
+ border-width: 0 1px $width 1px;
9
+ }
10
+
11
+ // Navbar =====================================================================
12
+
13
+ .navbar {
14
+ @include shadow();
15
+ }
16
+
17
+ // Buttons ====================================================================
18
+
19
+ .btn {
20
+ padding: 8px $padding-base-horizontal 7px;
21
+ @include shadow();
22
+ font-size: 12px;
23
+ font-weight: bold;
24
+ text-transform: uppercase;
25
+
26
+ &:hover {
27
+ margin-top: 1px;
28
+ border-bottom-width: 3px;
29
+ }
30
+
31
+ &:active {
32
+ margin-top: 2px;
33
+ border-bottom-width: 2px;
34
+ @include box-shadow(none);
35
+ }
36
+ }
37
+
38
+ .btn-lg,
39
+ .btn-group-lg > .btn {
40
+ padding: 14px $padding-large-horizontal 13px;
41
+ line-height: 15px;
42
+ }
43
+
44
+ .btn-sm,
45
+ .btn-group-sm > .btn {
46
+ padding: 4px $padding-small-horizontal;
47
+ }
48
+
49
+ .btn-xs,
50
+ .btn-group-xs > .btn {
51
+ padding: $padding-xs-vertical $padding-xs-horizontal;
52
+ }
53
+
54
+ .btn-default:hover,
55
+ .btn-default:focus,
56
+ .btn-group.open .dropdown-toggle.btn-default {
57
+ background-color: $btn-default-bg;
58
+ border-color: $btn-default-border;
59
+ }
60
+
61
+ .btn-primary:hover,
62
+ .btn-primary:focus,
63
+ .btn-group.open .dropdown-toggle.btn-primary {
64
+ background-color: $btn-primary-bg;
65
+ border-color: $btn-primary-border;
66
+ }
67
+
68
+ .btn-success:hover,
69
+ .btn-success:focus,
70
+ .btn-group.open .dropdown-toggle.btn-success {
71
+ background-color: $btn-success-bg;
72
+ border-color: $btn-success-border;
73
+ }
74
+
75
+ .btn-info:hover,
76
+ .btn-info:focus,
77
+ .btn-group.open .dropdown-toggle.btn-info {
78
+ background-color: $btn-info-bg;
79
+ border-color: $btn-info-border;
80
+ }
81
+
82
+ .btn-warning:hover,
83
+ .btn-warning:focus,
84
+ .btn-group.open .dropdown-toggle.btn-warning {
85
+ background-color: $btn-warning-bg;
86
+ border-color: $btn-warning-border;
87
+ }
88
+
89
+ .btn-danger:hover,
90
+ .btn-danger:focus,
91
+ .btn-group.open .dropdown-toggle.btn-danger {
92
+ background-color: $btn-danger-bg;
93
+ border-color: $btn-danger-border;
94
+ }
95
+
96
+ .btn-group.open .dropdown-toggle {
97
+ @include box-shadow(none);
98
+ }
99
+
100
+ .navbar-btn {
101
+ &:hover {
102
+ margin-top: 8px
103
+ }
104
+
105
+ &:active {
106
+ margin-top: 9px
107
+ }
108
+
109
+ &.btn-sm {
110
+ &:hover {
111
+ margin-top: 11px
112
+ }
113
+
114
+ &:active {
115
+ margin-top: 12px
116
+ }
117
+ }
118
+
119
+ &.btn-xs {
120
+ &:hover {
121
+ margin-top: 15px
122
+ }
123
+
124
+ &:active {
125
+ margin-top: 16px
126
+ }
127
+ }
128
+ }
129
+
130
+ // Typography =================================================================
131
+
132
+ .text-primary,
133
+ .text-primary:hover {
134
+ color: $brand-primary;
135
+ }
136
+
137
+ .text-success,
138
+ .text-success:hover {
139
+ color: $brand-success;
140
+ }
141
+
142
+ .text-danger,
143
+ .text-danger:hover {
144
+ color: $brand-danger;
145
+ }
146
+
147
+ .text-warning,
148
+ .text-warning:hover {
149
+ color: $brand-warning;
150
+ }
151
+
152
+ .text-info,
153
+ .text-info:hover {
154
+ color: $brand-info;
155
+ }
156
+
157
+ // Tables =====================================================================
158
+
159
+ table,
160
+ .table {
161
+
162
+ a {
163
+ text-decoration: underline;
164
+ }
165
+
166
+ .success,
167
+ .warning,
168
+ .danger,
169
+ .info {
170
+ color: #fff;
171
+
172
+ a {
173
+ color: #fff;
174
+ }
175
+ }
176
+
177
+ > thead > tr > th,
178
+ > tbody > tr > th,
179
+ > tfoot > tr > th,
180
+ > thead > tr > td,
181
+ > tbody > tr > td,
182
+ > tfoot > tr > td {
183
+ border-color: transparent;
184
+ }
185
+ }
186
+
187
+ // Forms ======================================================================
188
+
189
+ .form-control {
190
+ @include box-shadow(inset 0 2px 0 rgba(0, 0, 0, 0.075));
191
+ }
192
+
193
+ label {
194
+ font-weight: normal;
195
+ }
196
+
197
+ .has-warning {
198
+ .help-block,
199
+ .control-label,
200
+ .form-control-feedback {
201
+ color: $brand-warning;
202
+ }
203
+
204
+ .form-control,
205
+ .form-control:focus {
206
+ border: 1px solid $brand-warning;
207
+ @include box-shadow(inset 0 2px 0 rgba(0, 0, 0, 0.075));
208
+ }
209
+ }
210
+
211
+ .has-error {
212
+ .help-block,
213
+ .control-label,
214
+ .form-control-feedback {
215
+ color: $brand-danger;
216
+ }
217
+
218
+ .form-control,
219
+ .form-control:focus {
220
+ border: 1px solid $brand-danger;
221
+ @include box-shadow(inset 0 2px 0 rgba(0, 0, 0, 0.075));
222
+ }
223
+ }
224
+
225
+ .has-success {
226
+ .help-block,
227
+ .control-label,
228
+ .form-control-feedback {
229
+ color: $brand-success;
230
+ }
231
+
232
+ .form-control,
233
+ .form-control:focus {
234
+ border: 1px solid $brand-success;
235
+ @include box-shadow(inset 0 2px 0 rgba(0, 0, 0, 0.075));
236
+ }
237
+ }
238
+
239
+ // Navs =======================================================================
240
+
241
+ .nav {
242
+ .open > a,
243
+ .open > a:hover,
244
+ .open > a:focus {
245
+ border-color: transparent;
246
+ }
247
+ }
248
+
249
+ .nav-tabs {
250
+
251
+ > li > a {
252
+ margin-top: 6px;
253
+ border-color: $navbar-default-border;
254
+ color: $gray-dark;
255
+ @include transition(all 0.2s ease-in-out);
256
+ }
257
+
258
+ > li > a:hover,
259
+ > li > a:focus,
260
+ > li.active > a,
261
+ > li.active > a:hover,
262
+ > li.active > a:focus,
263
+ .open > a,
264
+ .open > a:hover,
265
+ .open > a:focus {
266
+ padding-top: $padding-large-vertical + 3px;
267
+ padding-bottom: $padding-large-vertical + 3px;
268
+ margin-top: 0;
269
+ }
270
+
271
+ .open > a,
272
+ .open > a:hover,
273
+ .open > a:focus {
274
+ border-color: $navbar-default-border;
275
+ }
276
+
277
+ > li.disabled > a:hover,
278
+ > li.disabled > a:focus {
279
+ padding-top: $padding-large-vertical;
280
+ padding-bottom: $padding-large-vertical;
281
+ margin-top: 6px;
282
+ }
283
+ }
284
+
285
+ .dropdown-menu {
286
+ margin-top: 0;
287
+ @include shadow();
288
+ border-top-width: 1px;
289
+ @include box-shadow(none);
290
+ }
291
+
292
+ .breadcrumb {
293
+ border-color: darken($breadcrumb-bg, 5%);
294
+ border-style: solid;
295
+ @include shadow();
296
+ }
297
+
298
+ .pagination,
299
+ .pager {
300
+
301
+ > li > a,
302
+ > li > span {
303
+ position: relative;
304
+ top: 0;
305
+ @include shadow();
306
+ color: $pagination-color;
307
+ font-size: 12px;
308
+ font-weight: bold;
309
+ text-transform: uppercase;
310
+
311
+ &:hover {
312
+ top: 1px;
313
+ border-bottom-width: 3px;
314
+ }
315
+
316
+ &:active {
317
+ top: 2px;
318
+ border-bottom-width: 2px;
319
+ }
320
+ }
321
+
322
+ > .disabled > a,
323
+ > .disabled > span {
324
+
325
+ &:hover {
326
+ top: 0;
327
+ @include shadow();
328
+ }
329
+
330
+ &:active {
331
+ top: 0;
332
+ @include shadow();
333
+ }
334
+ }
335
+ }
336
+
337
+ .pager {
338
+
339
+ > li > a,
340
+ > li > span,
341
+ > .disabled > a,
342
+ > .disabled > span {
343
+
344
+ &,
345
+ &:hover,
346
+ &:active {
347
+ border-left-width: 2px;
348
+ border-right-width: 2px;
349
+ }
350
+ }
351
+ }
352
+
353
+ // Indicators =================================================================
354
+
355
+ .alert {
356
+ @include shadow();
357
+
358
+ a,
359
+ .alert-link {
360
+ font-weight: normal;
361
+ color: #fff;
362
+ text-decoration: underline;
363
+ }
364
+
365
+ .close {
366
+ color: #fff;
367
+ text-decoration: none;
368
+ opacity: 0.4;
369
+
370
+ &:hover,
371
+ &:focus {
372
+ color: #fff;
373
+ opacity: 1;
374
+ }
375
+ }
376
+ }
377
+
378
+ .label {
379
+ font-weight: normal;
380
+ }
381
+
382
+ // Progress bars ==============================================================
383
+
384
+ .progress {
385
+ border: 1px solid $navbar-default-border;
386
+ @include box-shadow(inset 0 2px 0 rgba(0, 0, 0, 0.1));
387
+ }
388
+
389
+ .progress-bar {
390
+ @include box-shadow(inset 0 -4px 0 rgba(0, 0, 0, 0.15));
391
+ }
392
+
393
+ // Containers =================================================================
394
+
395
+ .well {
396
+ border: 1px solid $navbar-default-border;
397
+ @include box-shadow(inset 0 2px 0 rgba(0, 0, 0, 0.05));
398
+ }
399
+
400
+ .jumbotron {
401
+ border: 1px solid $navbar-default-border;
402
+ @include box-shadow(inset 0 2px 0 rgba(0, 0, 0, 0.05));
403
+ }
404
+
405
+ .panel {
406
+ border: 1px solid $navbar-default-border;
407
+ @include shadow();
408
+ }
@@ -0,0 +1,827 @@
1
+ // Lumen 3.1.1
2
+ // Variables
3
+ // --------------------------------------------------
4
+
5
+
6
+ //== Colors
7
+ //
8
+ //## Gray and brand colors for use across Bootstrap.
9
+
10
+ $gray-darker: lighten(#000, 13.5%) !default; // #222
11
+ $gray-dark: lighten(#000, 20%) !default; // #333
12
+ $gray: lighten(#000, 33.5%) !default; // #555
13
+ $gray-light: lighten(#000, 60%) !default; // #999
14
+ $gray-lighter: lighten(#000, 93.5%) !default; // #eee
15
+
16
+ $brand-primary: #158CBA !default;
17
+ $brand-success: #28B62C !default;
18
+ $brand-info: #75CAEB !default;
19
+ $brand-warning: #FF851B !default;
20
+ $brand-danger: #FF4136 !default;
21
+
22
+
23
+ //== Scaffolding
24
+ //
25
+ // ## Settings for some of the most global styles.
26
+
27
+ //** Background color for `<body>`.
28
+ $body-bg: #fff !default;
29
+ //** Global text color on `<body>`.
30
+ $text-color: $gray !default;
31
+
32
+ //** Global textual link color.
33
+ $link-color: $brand-primary !default;
34
+ //** Link hover color set via `darken()` function.
35
+ $link-hover-color: $link-color !default;
36
+
37
+
38
+ //== Typography
39
+ //
40
+ //## Font, line-height, and color for body text, headings, and more.
41
+
42
+ $font-family-sans-serif: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif !default;
43
+ $font-family-serif: Georgia, "Times New Roman", Times, serif !default;
44
+ //** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
45
+ $font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
46
+ $font-family-base: $font-family-sans-serif !default;
47
+
48
+ $font-size-base: 14px !default;
49
+ $font-size-large: ceil(($font-size-base * 1.25)) !default; // ~18px
50
+ $font-size-small: ceil(($font-size-base * 0.85)) !default; // ~12px
51
+
52
+ $font-size-h1: floor(($font-size-base * 2.6)) !default; // ~36px
53
+ $font-size-h2: floor(($font-size-base * 2.15)) !default; // ~30px
54
+ $font-size-h3: ceil(($font-size-base * 1.7)) !default; // ~24px
55
+ $font-size-h4: ceil(($font-size-base * 1.25)) !default; // ~18px
56
+ $font-size-h5: $font-size-base !default;
57
+ $font-size-h6: ceil(($font-size-base * 0.85)) !default; // ~12px
58
+
59
+ //** Unit-less `line-height` for use in components like buttons.
60
+ $line-height-base: 1.428571429 !default; // 20/14
61
+ //** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
62
+ $line-height-computed: floor(($font-size-base * $line-height-base)) !default; // ~20px
63
+
64
+ //** By default, this inherits from the `<body>`.
65
+ $headings-font-family: inherit !default;
66
+ $headings-font-weight: 400 !default;
67
+ $headings-line-height: 1.1 !default;
68
+ $headings-color: $gray-dark !default;
69
+
70
+
71
+ //-- Iconography
72
+ //
73
+ //## Specify custom locations of the include Glyphicons icon font. Useful for those including Bootstrap via Bower.
74
+
75
+ $icon-font-path: "../fonts/" !default;
76
+ $icon-font-name: "glyphicons-halflings-regular" !default;
77
+ $icon-font-svg-id: "glyphicons_halflingsregular" !default;
78
+
79
+ //== Components
80
+ //
81
+ //## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
82
+
83
+ $padding-base-vertical: 6px !default;
84
+ $padding-base-horizontal: 12px !default;
85
+
86
+ $padding-large-vertical: 10px !default;
87
+ $padding-large-horizontal: 16px !default;
88
+
89
+ $padding-small-vertical: 5px !default;
90
+ $padding-small-horizontal: 10px !default;
91
+
92
+ $padding-xs-vertical: 1px !default;
93
+ $padding-xs-horizontal: 5px !default;
94
+
95
+ $line-height-large: 1.33 !default;
96
+ $line-height-small: 1.5 !default;
97
+
98
+ $border-radius-base: 4px !default;
99
+ $border-radius-large: 5px !default;
100
+ $border-radius-small: 2px !default;
101
+
102
+ //** Global color for active items (e.g., navs or dropdowns).
103
+ $component-active-color: #fff !default;
104
+ //** Global background color for active items (e.g., navs or dropdowns).
105
+ $component-active-bg: $brand-primary !default;
106
+
107
+ //** Width of the `border` for generating carets that indicator dropdowns.
108
+ $caret-width-base: 4px !default;
109
+ //** Carets increase slightly in size for larger components.
110
+ $caret-width-large: 5px !default;
111
+
112
+
113
+ //== Tables
114
+ //
115
+ //## Customizes the `.table` component with basic values, each used across all table variations.
116
+
117
+ //** Padding for `<th>`s and `<td>`s.
118
+ $table-cell-padding: 8px !default;
119
+ //** Padding for cells in `.table-condensed`.
120
+ $table-condensed-cell-padding: 5px !default;
121
+
122
+ //** Default background color used for all tables.
123
+ $table-bg: transparent !default;
124
+ //** Background color used for `.table-striped`.
125
+ $table-bg-accent: #f9f9f9 !default;
126
+ //** Background color used for `.table-hover`.
127
+ $table-bg-hover: #f5f5f5 !default;
128
+ $table-bg-active: $table-bg-hover !default;
129
+
130
+ //** Border color for table and cell borders.
131
+ $table-border-color: #ddd !default;
132
+
133
+
134
+ //== Buttons
135
+ //
136
+ //## For each of Bootstrap's buttons, define text, background and border color.
137
+
138
+ $btn-font-weight: normal !default;
139
+
140
+ $btn-default-color: $gray !default;
141
+ $btn-default-bg: $gray-lighter !default;
142
+ $btn-default-border: darken($btn-default-bg, 5%) !default;
143
+
144
+ $btn-primary-color: #fff !default;
145
+ $btn-primary-bg: $brand-primary !default;
146
+ $btn-primary-border: darken($btn-primary-bg, 5%) !default;
147
+
148
+ $btn-success-color: #fff !default;
149
+ $btn-success-bg: $brand-success !default;
150
+ $btn-success-border: darken($btn-success-bg, 5%) !default;
151
+
152
+ $btn-info-color: #fff !default;
153
+ $btn-info-bg: $brand-info !default;
154
+ $btn-info-border: darken($btn-info-bg, 5%) !default;
155
+
156
+ $btn-warning-color: #fff !default;
157
+ $btn-warning-bg: $brand-warning !default;
158
+ $btn-warning-border: darken($btn-warning-bg, 5%) !default;
159
+
160
+ $btn-danger-color: #fff !default;
161
+ $btn-danger-bg: $brand-danger !default;
162
+ $btn-danger-border: darken($btn-danger-bg, 5%) !default;
163
+
164
+ $btn-link-disabled-color: $gray-light !default;
165
+
166
+
167
+ //== Media queries breakpoints
168
+ //
169
+ //## Define the breakpoints at which your layout will change, adapting to different screen sizes.
170
+
171
+ // Extra small screen / phone
172
+ // Note: Deprecated @screen-xs and @screen-phone as of v3.0.1
173
+ $screen-xs: 480px !default;
174
+ $screen-xs-min: $screen-xs !default;
175
+ $screen-phone: $screen-xs-min !default;
176
+
177
+ // Small screen / tablet
178
+ // Note: Deprecated @screen-sm and @screen-tablet as of v3.0.1
179
+ $screen-sm: 768px !default;
180
+ $screen-sm-min: $screen-sm !default;
181
+ $screen-tablet: $screen-sm-min !default;
182
+
183
+ // Medium screen / desktop
184
+ // Note: Deprecated @screen-md and @screen-desktop as of v3.0.1
185
+ $screen-md: 992px !default;
186
+ $screen-md-min: $screen-md !default;
187
+ $screen-desktop: $screen-md-min !default;
188
+
189
+ // Large screen / wide desktop
190
+ // Note: Deprecated @screen-lg and @screen-lg-desktop as of v3.0.1
191
+ $screen-lg: 1200px !default;
192
+ $screen-lg-min: $screen-lg !default;
193
+ $screen-lg-desktop: $screen-lg-min !default;
194
+
195
+ // So media queries don't overlap when required, provide a maximum
196
+ $screen-xs-max: ($screen-sm-min - 1) !default;
197
+ $screen-sm-max: ($screen-md-min - 1) !default;
198
+ $screen-md-max: ($screen-lg-min - 1) !default;
199
+
200
+
201
+ //== Grid system
202
+ //
203
+ //## Define your custom responsive grid.
204
+
205
+ //** Number of columns in the grid.
206
+ $grid-columns: 12 !default;
207
+ //** Padding between columns. Gets divided in half for the left and right.
208
+ $grid-gutter-width: 30px !default;
209
+ // Navbar collapse
210
+ //** Point at which the navbar becomes uncollapsed.
211
+ $grid-float-breakpoint: $screen-sm-min !default;
212
+ //** Point at which the navbar begins collapsing.
213
+ $grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
214
+
215
+
216
+ //== Navbar
217
+ //
218
+ //##
219
+
220
+ // Basics of a navbar
221
+ $navbar-height: 50px !default;
222
+ $navbar-margin-bottom: $line-height-computed !default;
223
+ $navbar-border-radius: $border-radius-base !default;
224
+ $navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;
225
+ $navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;
226
+ $navbar-collapse-max-height: 340px !default;
227
+
228
+ $navbar-default-color: $text-color !default;
229
+ $navbar-default-bg: #f8f8f8 !default;
230
+ $navbar-default-border: darken($navbar-default-bg, 6.5%) !default;
231
+
232
+ // Navbar links
233
+ $navbar-default-link-color: $gray-light !default;
234
+ $navbar-default-link-hover-color: $gray-dark !default;
235
+ $navbar-default-link-hover-bg: transparent !default;
236
+ $navbar-default-link-active-color: $navbar-default-link-hover-color !default;
237
+ $navbar-default-link-active-bg: transparent !default;
238
+ $navbar-default-link-disabled-color: $gray-lighter !default;
239
+ $navbar-default-link-disabled-bg: transparent !default;
240
+
241
+ // Navbar brand label
242
+ $navbar-default-brand-color: $navbar-default-link-hover-color !default;
243
+ $navbar-default-brand-hover-color: $navbar-default-link-hover-color !default;
244
+ $navbar-default-brand-hover-bg: transparent !default;
245
+
246
+ // Navbar toggle
247
+ $navbar-default-toggle-hover-bg: #fff !default;
248
+ $navbar-default-toggle-icon-bar-bg: $gray-light !default;
249
+ $navbar-default-toggle-border-color: $gray-lighter !default;
250
+
251
+
252
+ // Inverted navbar
253
+ // Reset inverted navbar basics
254
+ $navbar-inverse-color: $gray-light !default;
255
+ $navbar-inverse-bg: #fff !default;
256
+ $navbar-inverse-border: darken($navbar-inverse-bg, 10%) !default;
257
+
258
+ // Inverted navbar links
259
+ $navbar-inverse-link-color: $gray-light !default;
260
+ $navbar-inverse-link-hover-color: $gray-dark !default;
261
+ $navbar-inverse-link-hover-bg: transparent !default;
262
+ $navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default;
263
+ $navbar-inverse-link-active-bg: transparent !default;
264
+ $navbar-inverse-link-disabled-color: $gray-lighter !default;
265
+ $navbar-inverse-link-disabled-bg: transparent !default;
266
+
267
+ // Inverted navbar brand label
268
+ $navbar-inverse-brand-color: $navbar-inverse-link-color !default;
269
+ $navbar-inverse-brand-hover-color: $navbar-inverse-link-hover-color !default;
270
+ $navbar-inverse-brand-hover-bg: transparent !default;
271
+
272
+ // Inverted navbar toggle
273
+ $navbar-inverse-toggle-hover-bg: $gray-lighter !default;
274
+ $navbar-inverse-toggle-icon-bar-bg: $gray-light !default;
275
+ $navbar-inverse-toggle-border-color: $gray-lighter !default;
276
+
277
+
278
+ //== Forms
279
+ //
280
+ //##
281
+
282
+ //** `<input>` background color
283
+ $input-bg: #fff !default;
284
+ //** `<input disabled>` background color
285
+ $input-bg-disabled: $gray-lighter !default;
286
+
287
+ //** Text color for `<input>`s
288
+ $input-color: $gray !default;
289
+ //** `<input>` border color
290
+ $input-border: $navbar-default-border !default;
291
+ //** `<input>` border radius
292
+ $input-border-radius: $border-radius-base !default;
293
+ //** Border color for inputs on focus
294
+ $input-border-focus: #66afe9 !default;
295
+
296
+ //** Placeholder text color
297
+ $input-color-placeholder: $gray-light !default;
298
+
299
+ //** Default `.form-control` height
300
+ $input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 4) !default;
301
+ //** Large `.form-control` height
302
+ $input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2) !default;
303
+ //** Small `.form-control` height
304
+ $input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
305
+
306
+ $legend-color: $gray-dark !default;
307
+ $legend-border-color: #e5e5e5 !default;
308
+
309
+ //** Background color for textual input addons
310
+ $input-group-addon-bg: $gray-lighter !default;
311
+ //** Border color for textual input addons
312
+ $input-group-addon-border-color: $input-border !default;
313
+
314
+
315
+ //== Dropdowns
316
+ //
317
+ //## Dropdown menu container and contents.
318
+
319
+ //** Background for the dropdown menu.
320
+ $dropdown-bg: #fff !default;
321
+ //** Dropdown menu `border-color`.
322
+ $dropdown-border: $navbar-default-border !default;
323
+ //** Dropdown menu `border-color` **for IE8**.
324
+ $dropdown-fallback-border: #ccc !default;
325
+ //** Divider color for between dropdown items.
326
+ $dropdown-divider-bg: $gray-lighter !default;
327
+
328
+ //** Dropdown link text color.
329
+ $dropdown-link-color: $gray-light !default;
330
+ //** Hover color for dropdown links.
331
+ $dropdown-link-hover-color: $gray-dark !default;
332
+ //** Hover background for dropdown links.
333
+ $dropdown-link-hover-bg: transparent !default;
334
+
335
+ //** Active dropdown menu item text color.
336
+ $dropdown-link-active-color: $component-active-color !default;
337
+ //** Active dropdown menu item background color.
338
+ $dropdown-link-active-bg: $component-active-bg !default;
339
+
340
+ //** Disabled dropdown menu item background color.
341
+ $dropdown-link-disabled-color: $gray-lighter !default;
342
+
343
+ //** Text color for headers within dropdown menus.
344
+ $dropdown-header-color: $gray-light !default;
345
+
346
+ // Note: Deprecated @dropdown-caret-color as of v3.1.0
347
+ $dropdown-caret-color: #000 !default;
348
+
349
+
350
+ //-- Z-index master list
351
+ //
352
+ // Warning: Avoid customizing these values. They're used for a bird's eye view
353
+ // of components dependent on the z-axis and are designed to all work together.
354
+ //
355
+ // Note: These variables are not generated into the Customizer.
356
+
357
+ $zindex-navbar: 1000 !default;
358
+ $zindex-dropdown: 1000 !default;
359
+ $zindex-popover: 1010 !default;
360
+ $zindex-tooltip: 1030 !default;
361
+ $zindex-navbar-fixed: 1030 !default;
362
+ $zindex-modal-background: 1040 !default;
363
+ $zindex-modal: 1050 !default;
364
+
365
+
366
+ //== Container sizes
367
+ //
368
+ //## Define the maximum width of `.container` for different screen sizes.
369
+
370
+ // Small screen / tablet
371
+ $container-tablet: ((720px + $grid-gutter-width)) !default;
372
+ //** For `@screen-sm-min` and up.
373
+ $container-sm: $container-tablet !default;
374
+
375
+ // Medium screen / desktop
376
+ $container-desktop: ((940px + $grid-gutter-width)) !default;
377
+ //** For `@screen-md-min` and up.
378
+ $container-md: $container-desktop !default;
379
+
380
+ // Large screen / wide desktop
381
+ $container-large-desktop: ((1140px + $grid-gutter-width)) !default;
382
+ //** For `@screen-lg-min` and up.
383
+ $container-lg: $container-large-desktop !default;
384
+
385
+ //== Navs
386
+ //
387
+ //##
388
+
389
+ //=== Shared nav styles
390
+ $nav-link-padding: 10px 15px !default;
391
+ $nav-link-hover-bg: #fff !default;
392
+
393
+ $nav-disabled-link-color: $gray-light !default;
394
+ $nav-disabled-link-hover-color: $gray-light !default;
395
+
396
+ $nav-open-link-hover-color: #fff !default;
397
+
398
+ //== Tabs
399
+ $nav-tabs-border-color: $navbar-default-border !default;
400
+
401
+ $nav-tabs-link-hover-border-color: $gray-lighter !default;
402
+
403
+ $nav-tabs-active-link-hover-bg: #fff !default;
404
+ $nav-tabs-active-link-hover-color: $gray !default;
405
+ $nav-tabs-active-link-hover-border-color: $nav-tabs-border-color !default;
406
+
407
+ $nav-tabs-justified-link-border-color: $nav-tabs-border-color !default;
408
+ $nav-tabs-justified-active-link-border-color: $body-bg !default;
409
+
410
+ //== Pills
411
+ $nav-pills-border-radius: $border-radius-base !default;
412
+ $nav-pills-active-link-hover-bg: $component-active-bg !default;
413
+ $nav-pills-active-link-hover-color: $component-active-color !default;
414
+
415
+
416
+ //== Pagination
417
+ //
418
+ //##
419
+
420
+ $pagination-color: $btn-default-color !default;
421
+ $pagination-bg: $btn-default-bg !default;
422
+ $pagination-border: $btn-default-border !default;
423
+
424
+ $pagination-hover-color: $pagination-color !default;
425
+ $pagination-hover-bg: $pagination-bg !default;
426
+ $pagination-hover-border: $pagination-border !default;
427
+
428
+ $pagination-active-color: #fff !default;
429
+ $pagination-active-bg: $brand-primary !default;
430
+ $pagination-active-border: $btn-primary-border !default;
431
+
432
+ $pagination-disabled-color: $gray-light !default;
433
+ $pagination-disabled-bg: $pagination-bg !default;
434
+ $pagination-disabled-border: $pagination-border !default;
435
+
436
+
437
+ //== Pager
438
+ //
439
+ //##
440
+
441
+ $pager-bg: $pagination-bg !default;
442
+ $pager-border: $pagination-border !default;
443
+ $pager-border-radius: 15px !default;
444
+
445
+ $pager-hover-bg: $pagination-hover-bg !default;
446
+
447
+ $pager-active-bg: $pagination-active-bg !default;
448
+ $pager-active-color: $pagination-active-color !default;
449
+
450
+ $pager-disabled-color: $pagination-disabled-color !default;
451
+
452
+
453
+ //== Wells
454
+ //
455
+ //##
456
+
457
+ $well-bg: #fafafa !default;
458
+ $well-border: darken($well-bg, 7%) !default;
459
+
460
+ //== Jumbotron
461
+ //
462
+ //##
463
+
464
+ $jumbotron-padding: 30px !default;
465
+ $jumbotron-color: inherit !default;
466
+ $jumbotron-bg: $well-bg !default;
467
+ $jumbotron-heading-color: inherit !default;
468
+ $jumbotron-font-size: ceil(($font-size-base * 1.5)) !default;
469
+
470
+
471
+ //== Form states and alerts
472
+ //
473
+ //## Define colors for form feedback states and, by default, alerts.
474
+
475
+ $state-success-text: #fff !default;
476
+ $state-success-bg: $brand-success !default;
477
+ $state-success-border: darken($state-success-bg, 4%) !default;
478
+
479
+ $state-info-text: #fff !default;
480
+ $state-info-bg: $brand-info !default;
481
+ $state-info-border: darken($state-info-bg, 12%) !default;
482
+
483
+ $state-warning-text: #fff !default;
484
+ $state-warning-bg: $brand-warning !default;
485
+ $state-warning-border: darken($state-warning-bg, 5%) !default;
486
+
487
+ $state-danger-text: #fff !default;
488
+ $state-danger-bg: $brand-danger !default;
489
+ $state-danger-border: darken($state-danger-bg, 10%) !default;
490
+
491
+
492
+ //== Tooltips
493
+ //
494
+ //##
495
+
496
+ //** Tooltip max width
497
+ $tooltip-max-width: 200px !default;
498
+ //** Tooltip text color
499
+ $tooltip-color: #fff !default;
500
+ //** Tooltip background color
501
+ $tooltip-bg: #000 !default;
502
+ $tooltip-opacity: .9 !default;
503
+
504
+ //** Tooltip arrow width
505
+ $tooltip-arrow-width: 5px !default;
506
+ //** Tooltip arrow color
507
+ $tooltip-arrow-color: $tooltip-bg !default;
508
+
509
+
510
+ //== Popovers
511
+ //
512
+ //##
513
+
514
+ //** Popover body background color
515
+ $popover-bg: #fff !default;
516
+ //** Popover maximum width
517
+ $popover-max-width: 276px !default;
518
+ //** Popover border color
519
+ $popover-border-color: rgba(0,0,0,.2) !default;
520
+ //** Popover fallback border color
521
+ $popover-fallback-border-color: #ccc !default;
522
+
523
+ //** Popover title background color
524
+ $popover-title-bg: darken($popover-bg, 3%) !default;
525
+
526
+ //** Popover arrow width
527
+ $popover-arrow-width: 10px !default;
528
+ //** Popover arrow color
529
+ $popover-arrow-color: #fff !default;
530
+
531
+ //** Popover outer arrow width
532
+ $popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
533
+ //** Popover outer arrow color
534
+ $popover-arrow-outer-color: fadein($popover-border-color, 5%) !default;
535
+ //** Popover outer arrow fallback color
536
+ $popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%) !default;
537
+
538
+
539
+ //== Labels
540
+ //
541
+ //##
542
+
543
+ //** Default label background color
544
+ $label-default-bg: $gray-light !default;
545
+ //** Primary label background color
546
+ $label-primary-bg: $brand-primary !default;
547
+ //** Success label background color
548
+ $label-success-bg: $brand-success !default;
549
+ //** Info label background color
550
+ $label-info-bg: $brand-info !default;
551
+ //** Warning label background color
552
+ $label-warning-bg: $brand-warning !default;
553
+ //** Danger label background color
554
+ $label-danger-bg: $brand-danger !default;
555
+
556
+ //** Default label text color
557
+ $label-color: #fff !default;
558
+ //** Default text color of a linked label
559
+ $label-link-hover-color: #fff !default;
560
+
561
+
562
+ //== Modals
563
+ //
564
+ //##
565
+
566
+ //** Padding applied to the modal body
567
+ $modal-inner-padding: 20px !default;
568
+
569
+ //** Padding applied to the modal title
570
+ $modal-title-padding: 15px !default;
571
+ //** Modal title line-height
572
+ $modal-title-line-height: $line-height-base !default;
573
+
574
+ //** Background color of modal content area
575
+ $modal-content-bg: #fff !default;
576
+ //** Modal content border color
577
+ $modal-content-border-color: rgba(0,0,0,.2) !default;
578
+ //** Modal content border color **for IE8**
579
+ $modal-content-fallback-border-color: #999 !default;
580
+
581
+ //** Modal backdrop background color
582
+ $modal-backdrop-bg: #000 !default;
583
+ //** Modal backdrop opacity
584
+ $modal-backdrop-opacity: .5 !default;
585
+ //** Modal header border color
586
+ $modal-header-border-color: #e5e5e5 !default;
587
+ //** Modal footer border color
588
+ $modal-footer-border-color: $modal-header-border-color !default;
589
+
590
+ $modal-lg: 900px !default;
591
+ $modal-md: 600px !default;
592
+ $modal-sm: 300px !default;
593
+
594
+
595
+ //== Alerts
596
+ //
597
+ //## Define alert colors, border radius, and padding.
598
+
599
+ $alert-padding: 15px !default;
600
+ $alert-border-radius: $border-radius-base !default;
601
+ $alert-link-font-weight: bold !default;
602
+
603
+ $alert-success-bg: $state-success-bg !default;
604
+ $alert-success-text: $state-success-text !default;
605
+ $alert-success-border: $state-success-border !default;
606
+
607
+ $alert-info-bg: $state-info-bg !default;
608
+ $alert-info-text: $state-info-text !default;
609
+ $alert-info-border: $state-info-border !default;
610
+
611
+ $alert-warning-bg: $state-warning-bg !default;
612
+ $alert-warning-text: $state-warning-text !default;
613
+ $alert-warning-border: $state-warning-border !default;
614
+
615
+ $alert-danger-bg: $state-danger-bg !default;
616
+ $alert-danger-text: $state-danger-text !default;
617
+ $alert-danger-border: $state-danger-border !default;
618
+
619
+
620
+ //== Progress bars
621
+ //
622
+ //##
623
+
624
+ //** Background color of the whole progress component
625
+ $progress-bg: #fafafa !default;
626
+ //** Progress bar text color
627
+ $progress-bar-color: #fff !default;
628
+
629
+ //** Default progress bar color
630
+ $progress-bar-bg: $brand-primary !default;
631
+ //** Success progress bar color
632
+ $progress-bar-success-bg: $brand-success !default;
633
+ //** Warning progress bar color
634
+ $progress-bar-warning-bg: $brand-warning !default;
635
+ //** Danger progress bar color
636
+ $progress-bar-danger-bg: $brand-danger !default;
637
+ //** Info progress bar color
638
+ $progress-bar-info-bg: $brand-info !default;
639
+
640
+
641
+ //== List group
642
+ //
643
+ //##
644
+
645
+ //** Background color on `.list-group-item`
646
+ $list-group-bg: #fff !default;
647
+ //** `.list-group-item` border color
648
+ $list-group-border: #ddd !default;
649
+ //** List group border radius
650
+ $list-group-border-radius: $border-radius-base !default;
651
+
652
+ //** Background color of single list elements on hover
653
+ $list-group-hover-bg: #f5f5f5 !default;
654
+ //** Text color of active list elements
655
+ $list-group-active-color: $component-active-color !default;
656
+ //** Background color of active list elements
657
+ $list-group-active-bg: $component-active-bg !default;
658
+ //** Border color of active list elements
659
+ $list-group-active-border: $list-group-active-bg !default;
660
+ $list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
661
+
662
+ $list-group-link-color: #555 !default;
663
+ $list-group-link-heading-color: #333 !default;
664
+
665
+
666
+ //== Panels
667
+ //
668
+ //##
669
+
670
+ $panel-bg: #fff !default;
671
+ $panel-body-padding: 15px !default;
672
+ $panel-border-radius: $border-radius-base !default;
673
+
674
+ //** Border color for elements within panels
675
+ $panel-inner-border: transparent !default;
676
+ $panel-footer-bg: #f5f5f5 !default;
677
+
678
+ $panel-default-text: $gray-dark !default;
679
+ $panel-default-border: transparent !default;
680
+ $panel-default-heading-bg: #f5f5f5 !default;
681
+
682
+ $panel-primary-text: #fff !default;
683
+ $panel-primary-border: transparent !default;
684
+ $panel-primary-heading-bg: $brand-primary !default;
685
+
686
+ $panel-success-text: $state-success-text !default;
687
+ $panel-success-border: transparent !default;
688
+ $panel-success-heading-bg: $state-success-bg !default;
689
+
690
+ $panel-info-text: $state-info-text !default;
691
+ $panel-info-border: transparent !default;
692
+ $panel-info-heading-bg: $state-info-bg !default;
693
+
694
+ $panel-warning-text: $state-warning-text !default;
695
+ $panel-warning-border: transparent !default;
696
+ $panel-warning-heading-bg: $state-warning-bg !default;
697
+
698
+ $panel-danger-text: $state-danger-text !default;
699
+ $panel-danger-border: transparent !default;
700
+ $panel-danger-heading-bg: $state-danger-bg !default;
701
+
702
+
703
+ //== Thumbnails
704
+ //
705
+ //##
706
+
707
+ //** Padding around the thumbnail image
708
+ $thumbnail-padding: 4px !default;
709
+ //** Thumbnail background color
710
+ $thumbnail-bg: $body-bg !default;
711
+ //** Thumbnail border color
712
+ $thumbnail-border: $gray-lighter !default;
713
+ //** Thumbnail border radius
714
+ $thumbnail-border-radius: $border-radius-base !default;
715
+
716
+ //** Custom text color for thumbnail captions
717
+ $thumbnail-caption-color: $text-color !default;
718
+ //** Padding around the thumbnail caption
719
+ $thumbnail-caption-padding: 9px !default;
720
+
721
+
722
+ //== Badges
723
+ //
724
+ //##
725
+
726
+ $badge-color: #fff !default;
727
+ //** Linked badge text color on hover
728
+ $badge-link-hover-color: #fff !default;
729
+ $badge-bg: $brand-primary !default;
730
+
731
+ //** Badge text color in active nav link
732
+ $badge-active-color: $link-color !default;
733
+ //** Badge background color in active nav link
734
+ $badge-active-bg: #fff !default;
735
+
736
+ $badge-font-weight: normal !default;
737
+ $badge-line-height: 1 !default;
738
+ $badge-border-radius: 10px !default;
739
+
740
+
741
+ //== Breadcrumbs
742
+ //
743
+ //##
744
+
745
+ $breadcrumb-padding-vertical: 8px !default;
746
+ $breadcrumb-padding-horizontal: 15px !default;
747
+ //** Breadcrumb background color
748
+ $breadcrumb-bg: $well-bg !default;
749
+ //** Breadcrumb text color
750
+ $breadcrumb-color: $gray-light !default;
751
+ //** Text color of current page in the breadcrumb
752
+ $breadcrumb-active-color: $gray-light !default;
753
+ //** Textual separator for between breadcrumb elements
754
+ $breadcrumb-separator: ">" !default;
755
+
756
+
757
+ //== Carousel
758
+ //
759
+ //##
760
+
761
+ $carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6) !default;
762
+
763
+ $carousel-control-color: #fff !default;
764
+ $carousel-control-width: 15% !default;
765
+ $carousel-control-opacity: .5 !default;
766
+ $carousel-control-font-size: 20px !default;
767
+
768
+ $carousel-indicator-active-bg: #fff !default;
769
+ $carousel-indicator-border-color: #fff !default;
770
+
771
+ $carousel-caption-color: #fff !default;
772
+
773
+
774
+ //== Close
775
+ //
776
+ //##
777
+
778
+ $close-font-weight: bold !default;
779
+ $close-color: #000 !default;
780
+ $close-text-shadow: 0 1px 0 #fff !default;
781
+
782
+
783
+ //== Code
784
+ //
785
+ //##
786
+
787
+ $code-color: #c7254e !default;
788
+ $code-bg: #f9f2f4 !default;
789
+
790
+ $kbd-color: #fff !default;
791
+ $kbd-bg: #333 !default;
792
+
793
+ $pre-bg: #f5f5f5 !default;
794
+ $pre-color: $gray-dark !default;
795
+ $pre-border-color: #ccc !default;
796
+ $pre-scrollable-max-height: 340px !default;
797
+
798
+
799
+ //== Type
800
+ //
801
+ //##
802
+
803
+ //** Text muted color
804
+ $text-muted: $gray-light !default;
805
+ //** Abbreviations and acronyms border color
806
+ $abbr-border-color: $gray-light !default;
807
+ //** Headings small color
808
+ $headings-small-color: $gray-light !default;
809
+ //** Blockquote small color
810
+ $blockquote-small-color: $gray-light !default;
811
+ //** Blockquote font size
812
+ $blockquote-font-size: ($font-size-base * 1.25) !default;
813
+ //** Blockquote border color
814
+ $blockquote-border-color: $gray-lighter !default;
815
+ //** Page header border color
816
+ $page-header-border-color: $gray-lighter !default;
817
+
818
+
819
+ //== Miscellaneous
820
+ //
821
+ //##
822
+
823
+ //** Horizontal line color.
824
+ $hr-border: $gray-lighter !default;
825
+
826
+ //** Horizontal offset for forms and lists.
827
+ $component-offset-horizontal: 180px !default;