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