bootswatch-rails 0.5.0 → 3.1.1

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