bootstrap-honoka-rails 3.3.7.5 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +23 -94
  3. data/Rakefile +17 -39
  4. data/assets/stylesheets/_honoka.scss +5 -0
  5. data/assets/stylesheets/_nico.scss +5 -0
  6. data/assets/stylesheets/_umi.scss +5 -0
  7. data/assets/stylesheets/honoka/_honoka.scss +25 -36
  8. data/assets/stylesheets/honoka/_mixins.scss +1 -60
  9. data/assets/stylesheets/honoka/_override.scss +35 -63
  10. data/assets/stylesheets/honoka/_variables.scss +729 -710
  11. data/assets/stylesheets/nico/_honoka.scss +25 -36
  12. data/assets/stylesheets/nico/_mixins.scss +1 -60
  13. data/assets/stylesheets/nico/_override.scss +66 -68
  14. data/assets/stylesheets/nico/_variables.scss +730 -710
  15. data/assets/stylesheets/umi/_bootswatch.scss +193 -0
  16. data/assets/stylesheets/umi/_honoka.scss +28 -36
  17. data/assets/stylesheets/umi/_mixins.scss +1 -60
  18. data/assets/stylesheets/umi/_override.scss +35 -63
  19. data/assets/stylesheets/umi/_variables.scss +730 -710
  20. data/lib/bootstrap/honoka/rails.rb +0 -5
  21. data/lib/bootstrap/honoka/rails/engine.rb +4 -2
  22. data/lib/bootstrap/honoka/rails/version.rb +1 -5
  23. data/test/dummy/app/assets/javascripts/application.js +2 -2
  24. data/test/dummy/app/assets/stylesheets/application.css +1 -0
  25. data/test/dummy/app/assets/stylesheets/honoka.css +0 -1
  26. data/test/dummy/app/assets/stylesheets/nico.css +0 -1
  27. data/test/dummy/app/assets/stylesheets/umi.css +0 -1
  28. data/test/dummy/app/controllers/pages_controller.rb +6 -4
  29. data/test/dummy/app/views/layouts/application.html.erb +1 -1
  30. data/test/dummy/app/views/pages/honoka.html.erb +1108 -682
  31. data/test/dummy/app/views/pages/nico.html.erb +994 -685
  32. data/test/dummy/app/views/pages/umi.html.erb +993 -684
  33. data/test/dummy/config/application.rb +4 -1
  34. data/test/dummy/config/environments/development.rb +24 -0
  35. data/test/dummy/config/environments/production.rb +8 -4
  36. data/test/dummy/config/initializers/assets.rb +1 -17
  37. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  38. data/test/dummy/config/initializers/inflections.rb +16 -0
  39. data/test/dummy/config/initializers/mime_types.rb +4 -0
  40. data/test/dummy/config/routes.rb +3 -3
  41. data/test/honoka_test.rb +4 -41
  42. data/test/test_helper.rb +5 -49
  43. metadata +16 -117
  44. data/VERSIONS.md +0 -10
  45. data/assets/stylesheets/_rin.scss +0 -3
  46. data/assets/stylesheets/honoka/_font.scss +0 -58
  47. data/assets/stylesheets/nico/_font.scss +0 -58
  48. data/assets/stylesheets/rin/_font.scss +0 -58
  49. data/assets/stylesheets/rin/_honoka.scss +0 -60
  50. data/assets/stylesheets/rin/_mixins.scss +0 -60
  51. data/assets/stylesheets/rin/_override.scss +0 -372
  52. data/assets/stylesheets/rin/_variables.scss +0 -877
  53. data/assets/stylesheets/umi/_font.scss +0 -58
  54. data/test/dummy/app/assets/stylesheets/rin.css +0 -4
  55. data/test/dummy/app/views/pages/rin.html.erb +0 -1278
  56. data/test/dummy/bin/rails +0 -4
  57. data/test/dummy/production_key_generate.sh +0 -4
  58. data/test/dummy/public/favicon.ico +0 -0
  59. data/test/support/dummy_integration.rb +0 -57
  60. data/test/support/dummy_reporters.rb +0 -61
@@ -1,877 +1,897 @@
1
1
  @charset "UTF-8";
2
+ // Variables
3
+ //
4
+ // Variables should follow the `$component-state-property-size` formula for
5
+ // consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
6
+
7
+ // Applied bootswatch/dist/flatly/_variables.scss 13d7f1c
8
+
9
+ //
10
+ // Color system
11
+ //
12
+
13
+ // stylelint-disable
14
+ $white: #fff !default;
15
+ $gray-100: #f8f9fa !default;
16
+ $gray-200: #ecf0f1 !default;
17
+ $gray-300: #dee2e6 !default;
18
+ $gray-400: #ced4da !default;
19
+ $gray-500: #b4bcc2 !default;
20
+ $gray-600: #95a5a6 !default;
21
+ $gray-700: #7b8a8b !default;
22
+ $gray-800: #343a40 !default;
23
+ $gray-900: #212529 !default;
24
+ $black: #000 !default;
25
+
26
+ $grays: () !default;
27
+ $grays: map-merge((
28
+ "100": $gray-100,
29
+ "200": $gray-200,
30
+ "300": $gray-300,
31
+ "400": $gray-400,
32
+ "500": $gray-500,
33
+ "600": $gray-600,
34
+ "700": $gray-700,
35
+ "800": $gray-800,
36
+ "900": $gray-900
37
+ ), $grays);
38
+
39
+ $blue: #2C3E50 !default;
40
+ $indigo: #6610f2 !default;
41
+ $purple: #6f42c1 !default;
42
+ $pink: #e83e8c !default;
43
+ $red: #E74C3C !default;
44
+ $orange: #fd7e14 !default;
45
+ $yellow: #F39C12 !default;
46
+ $green: #18BC9C !default;
47
+ $teal: #20c997 !default;
48
+ $cyan: #3498DB !default;
49
+
50
+ $colors: () !default;
51
+ $colors: map-merge((
52
+ "blue": $blue,
53
+ "indigo": $indigo,
54
+ "purple": $purple,
55
+ "pink": $pink,
56
+ "red": $red,
57
+ "orange": $orange,
58
+ "yellow": $yellow,
59
+ "green": $green,
60
+ "teal": $teal,
61
+ "cyan": $cyan,
62
+ "white": $white,
63
+ "gray": $gray-600,
64
+ "gray-dark": $gray-800
65
+ ), $colors);
66
+
67
+ $primary: $blue !default;
68
+ $secondary: $gray-600 !default;
69
+ $success: $green !default;
70
+ $info: $cyan !default;
71
+ $warning: $yellow !default;
72
+ $danger: $red !default;
73
+ $light: $gray-200 !default;
74
+ $dark: $gray-700 !default;
75
+
76
+ $theme-colors: () !default;
77
+ $theme-colors: map-merge((
78
+ "primary": $primary,
79
+ "secondary": $secondary,
80
+ "success": $success,
81
+ "info": $info,
82
+ "warning": $warning,
83
+ "danger": $danger,
84
+ "light": $light,
85
+ "dark": $dark
86
+ ), $theme-colors);
87
+ // stylelint-enable
88
+
89
+ // Set a specific jump point for requesting color jumps
90
+ $theme-color-interval: 8% !default;
91
+
92
+ // The yiq lightness value that determines when the lightness of color changes from "dark" to "light". Acceptable values are between 0 and 255.
93
+ $yiq-contrasted-threshold: 150 !default;
94
+
95
+ // Customize the light and dark text colors for use in our YIQ color contrast function.
96
+ $yiq-text-dark: $gray-900 !default;
97
+ $yiq-text-light: $white !default;
98
+
99
+ // Options
100
+ //
101
+ // Quickly modify global styling by enabling or disabling optional features.
102
+
103
+ $enable-caret: true !default;
104
+ $enable-rounded: true !default;
105
+ $enable-shadows: false !default;
106
+ $enable-gradients: false !default;
107
+ $enable-transitions: true !default;
108
+ $enable-hover-media-query: false !default; // Deprecated, no longer affects any compiled CSS
109
+ $enable-grid-classes: true !default;
110
+ $enable-print-styles: true !default;
111
+
112
+
113
+ // Spacing
114
+ //
115
+ // Control the default styling of most Bootstrap elements by modifying these
116
+ // variables. Mostly focused on spacing.
117
+ // You can add more entries to the $spacers map, should you need more variation.
118
+
119
+ // stylelint-disable
120
+ $spacer: 1rem !default;
121
+ $spacers: () !default;
122
+ $spacers: map-merge((
123
+ 0: 0,
124
+ 1: ($spacer * .25),
125
+ 2: ($spacer * .5),
126
+ 3: $spacer,
127
+ 4: ($spacer * 1.5),
128
+ 5: ($spacer * 3)
129
+ ), $spacers);
2
130
 
3
- // When true, asset path helpers are used, otherwise the regular CSS `url()` is used.
4
- // When there no function is defined, `fn('')` is parsed as string that equals the right hand side
5
- // NB: in Sass 3.3 there is a native function: function-exists(twbs-font-path)
6
- $bootstrap-sass-asset-helper: (twbs-font-path("") != unquote('twbs-font-path("")')) !default;
7
- $bootstrap-version: "3.3.6";
131
+ // This variable affects the `.h-*` and `.w-*` classes.
132
+ $sizes: () !default;
133
+ $sizes: map-merge((
134
+ 25: 25%,
135
+ 50: 50%,
136
+ 75: 75%,
137
+ 100: 100%
138
+ ), $sizes);
139
+ // stylelint-enable
8
140
 
141
+ // Body
9
142
  //
10
- // Variables
11
- // --------------------------------------------------
143
+ // Settings for the `<body>` element.
12
144
 
145
+ $body-bg: $white !default;
146
+ $body-color: $gray-900 !default;
13
147
 
14
- //== Colors
148
+ // Links
15
149
  //
16
- //## Gray and brand colors for use across Bootstrap.
17
-
18
- $gray-base: #000 !default;
19
- $gray-darker: lighten($gray-base, 13.5%) !default; // #222
20
- $gray-dark: lighten($gray-base, 20%) !default; // #333
21
- $gray: #95a5a6 !default; // #555
22
- $gray-light: #b4bcc2 !default; // #999
23
- $gray-lighter: #ecf0f1 !default; // #eee
24
-
25
- $brand-primary: #2c3e50 !default;
26
- $brand-success: #18bc9c !default;
27
- $brand-info: #3498db !default;
28
- $brand-warning: #f39c12 !default;
29
- $brand-danger: #e74c3c !default;
30
-
31
- //== Scaffolding
150
+ // Style anchor elements.
151
+
152
+ $link-color: $success !default;
153
+ $link-decoration: none !default;
154
+ $link-hover-color: darken($link-color, 15%) !default;
155
+ $link-hover-decoration: underline !default;
156
+
157
+ // Paragraphs
158
+ //
159
+ // Style p element.
160
+
161
+ $paragraph-margin-bottom: 1rem !default;
162
+
163
+
164
+ // Grid breakpoints
165
+ //
166
+ // Define the minimum dimensions at which your layout will change,
167
+ // adapting to different screen sizes, for use in media queries.
168
+
169
+ $grid-breakpoints: (
170
+ xs: 0,
171
+ sm: 576px,
172
+ md: 768px,
173
+ lg: 992px,
174
+ xl: 1200px
175
+ ) !default;
176
+
177
+ @include _assert-ascending($grid-breakpoints, "$grid-breakpoints");
178
+ @include _assert-starts-at-zero($grid-breakpoints);
179
+
180
+
181
+ // Grid containers
32
182
  //
33
- //## Settings for some of the most global styles.
183
+ // Define the maximum width of `.container` for different screen sizes.
34
184
 
35
- //** Background color for `<body>`.
36
- $body-bg: #f9f9f9 !default;
37
- //** Global text color on `<body>`.
38
- $text-color: $gray-dark !default;
185
+ $container-max-widths: (
186
+ sm: 540px,
187
+ md: 720px,
188
+ lg: 960px,
189
+ xl: 1140px
190
+ ) !default;
39
191
 
40
- //** Global textual link color.
41
- $link-color: $brand-success !default;
42
- //** Link hover color set via `darken()` function.
43
- $link-hover-color: darken($link-color, 15%) !default;
44
- //** Link hover decoration.
45
- $link-hover-decoration: underline !default;
192
+ @include _assert-ascending($container-max-widths, "$container-max-widths");
46
193
 
47
194
 
48
- //== Typography
195
+ // Grid columns
49
196
  //
50
- //## Font, line-height, and color for body text, headings, and more.
51
- $font-family-open-sans-import-path: "https://fonts.googleapis.com/css?family=Open+Sans" !default;
52
- $font-family-humanist-sans-serif: 'Open Sans', 'Helvetica Neue', Helvetica, 'Arial', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif !default;
53
- $font-family-sans-serif: 'Open Sans', 'Helvetica Neue', Helvetica, 'Arial', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif !default;
54
- $font-family-serif: 'Times New Roman', Times, 'Yu Mincho', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'MS P明朝', 'MS PMincho', 'MS 明朝', serif !default;
55
- //** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
56
- $font-family-monospace: Consolas, "Liberation Mono", Menlo, Courier, monospace !default;
57
- $font-family-base: $font-family-humanist-sans-serif !default;
58
-
59
- $font-size-base: 16px !default;
60
- $font-size-large: ceil(($font-size-base * 1.25)) !default; // ~20px
61
- $font-size-small: ceil(($font-size-base * 0.75)) !default; // ~12px
62
-
63
- $font-size-h1: floor(($font-size-base * 2)) !default; // ~32px
64
- $font-size-h2: floor(($font-size-base * 1.75)) !default; // ~28px
65
- $font-size-h3: ceil(($font-size-base * 1.5)) !default; // ~24px
66
- $font-size-h4: ceil(($font-size-base * 1.15)) !default; // ~18px
67
- $font-size-h5: $font-size-base !default;
68
- $font-size-h6: ceil(($font-size-base * 0.75)) !default; // ~12px
69
-
70
- //** Unit-less `line-height` for use in components like buttons.
71
- $line-height-base: 1.5 !default; // 24/16
72
- //** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
73
- $line-height-computed: floor(($font-size-base * $line-height-base)) !default; // ~24px
74
-
75
- //** By default, this inherits from the `<body>`.
76
- $headings-font-family: $font-family-sans-serif !default;
77
- $headings-font-weight: 300 !default;
78
- $headings-line-height: 1.2 !default;
79
- $headings-color: inherit !default;
80
-
81
-
82
- //== Iconography
197
+ // Set the number of columns and specify the width of the gutters.
198
+
199
+ $grid-columns: 12 !default;
200
+ $grid-gutter-width: 30px !default;
201
+
202
+ // Components
83
203
  //
84
- //## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
204
+ // Define common padding and border radius sizes and more.
205
+
206
+ $line-height-lg: 1.5 !default;
207
+ $line-height-sm: 1.5 !default;
85
208
 
86
- //** Load fonts from this directory.
209
+ $border-width: 1px !default;
210
+ $border-color: $gray-300 !default;
87
211
 
88
- // [converter] Asset helpers such as Sprockets and Node.js Mincer do not resolve relative paths
89
- $icon-font-path: "../fonts/" !default;
212
+ $border-radius: .25rem !default;
213
+ $border-radius-lg: .3rem !default;
214
+ $border-radius-sm: .2rem !default;
90
215
 
91
- //** File name for all font files.
92
- $icon-font-name: "glyphicons-halflings-regular" !default;
93
- //** Element ID within SVG icon file.
94
- $icon-font-svg-id: "glyphicons_halflingsregular" !default;
216
+ $component-active-color: $white !default;
217
+ $component-active-bg: theme-color("primary") !default;
95
218
 
219
+ $caret-width: .3em !default;
96
220
 
97
- //== Components
221
+ $transition-base: all .2s ease-in-out !default;
222
+ $transition-fade: opacity .15s linear !default;
223
+ $transition-collapse: height .35s ease !default;
224
+
225
+
226
+ // Fonts
98
227
  //
99
- //## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
228
+ // Font, line-height, and color for body text, headings, and more.
100
229
 
101
- $padding-base-vertical: 6px !default;
102
- $padding-base-horizontal: 12px !default;
230
+ // stylelint-disable value-keyword-case
231
+ $font-family-sans-serif: -apple-system, "BlinkMacSystemFont", "Helvetica Neue", Helvetica, "Arial", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
232
+ $font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
233
+ $font-family-serif: "Times New Roman", Times, "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", "MS 明朝", serif !default;
234
+ $font-family-base: $font-family-sans-serif !default;
235
+ // stylelint-enable value-keyword-case
103
236
 
104
- $padding-large-vertical: 10px !default;
105
- $padding-large-horizontal: 20px !default;
237
+ $font-size-base: 1rem !default; // Assumes the browser default, typically `16px`
238
+ $font-size-lg: ($font-size-base * 1.25) !default;
239
+ $font-size-sm: ($font-size-base * .875) !default;
106
240
 
107
- $padding-small-vertical: 5px !default;
108
- $padding-small-horizontal: 10px !default;
241
+ $font-weight-light: 400 !default;
242
+ $font-weight-normal: 400 !default;
243
+ $font-weight-bold: 600 !default;
109
244
 
110
- $padding-xs-vertical: 1px !default;
111
- $padding-xs-horizontal: 5px !default;
245
+ $font-weight-base: $font-weight-normal !default;
246
+ $line-height-base: 1.5 !default;
112
247
 
113
- $line-height-large: 1.33 !default;
114
- $line-height-small: 1.5 !default;
248
+ $h1-font-size: $font-size-base * 2.5 !default;
249
+ $h2-font-size: $font-size-base * 2 !default;
250
+ $h3-font-size: $font-size-base * 1.75 !default;
251
+ $h4-font-size: $font-size-base * 1.5 !default;
252
+ $h5-font-size: $font-size-base * 1.25 !default;
253
+ $h6-font-size: $font-size-base !default;
115
254
 
116
- $border-radius-base: 2px !default;
117
- $border-radius-large: 4px !default;
118
- $border-radius-small: 1px !default;
255
+ $headings-margin-bottom: ($spacer / 2) !default;
256
+ $headings-font-family: $font-family-sans-serif !default;
257
+ $headings-font-weight: $font-weight-bold !default;
258
+ $headings-line-height: 1.2 !default;
259
+ $headings-color: inherit !default;
119
260
 
120
- //** Global color for active items (e.g., navs or dropdowns).
121
- $component-active-color: #fff !default;
122
- //** Global background color for active items (e.g., navs or dropdowns).
123
- $component-active-bg: $brand-primary !default;
261
+ $display1-size: 6rem !default;
262
+ $display2-size: 5.5rem !default;
263
+ $display3-size: 4.5rem !default;
264
+ $display4-size: 3.5rem !default;
124
265
 
125
- //** Width of the `border` for generating carets that indicator dropdowns.
126
- $caret-width-base: 4px !default;
127
- //** Carets increase slightly in size for larger components.
128
- $caret-width-large: 5px !default;
266
+ $display1-weight: $font-weight-normal !default;
267
+ $display2-weight: $font-weight-normal !default;
268
+ $display3-weight: $font-weight-normal !default;
269
+ $display4-weight: $font-weight-normal !default;
270
+ $display-line-height: $headings-line-height !default;
129
271
 
272
+ $lead-font-size: ($font-size-base * 1.25) !default;
273
+ $lead-font-weight: $font-weight-normal !default;
130
274
 
131
- //== Tables
132
- //
133
- //## Customizes the `.table` component with basic values, each used across all table variations.
275
+ $small-font-size: 80% !default;
276
+
277
+ $text-muted: $gray-600 !default;
278
+
279
+ $blockquote-small-color: $gray-600 !default;
280
+ $blockquote-font-size: $font-size-base !default;
281
+
282
+ $hr-border-color: rgba($black, .1) !default;
283
+ $hr-border-width: $border-width !default;
284
+
285
+ $mark-padding: .2em !default;
286
+
287
+ $dt-font-weight: $font-weight-bold !default;
134
288
 
135
- //** Padding for `<th>`s and `<td>`s.
136
- $table-cell-padding: 8px !default;
137
- //** Padding for cells in `.table-condensed`.
138
- $table-condensed-cell-padding: 5px !default;
289
+ $kbd-box-shadow: inset 0 -.1rem 0 rgba($black, .25) !default;
290
+ $nested-kbd-font-weight: $font-weight-bold !default;
139
291
 
140
- //** Default background color used for all tables.
141
- $table-bg: transparent !default;
142
- //** Background color used for `.table-striped`.
143
- $table-bg-accent: #fff !default;
144
- //** Background color used for `.table-hover`.
145
- $table-bg-hover: #f5f5f5 !default;
146
- $table-bg-active: $table-bg-hover !default;
292
+ $list-inline-padding: .5rem !default;
147
293
 
148
- //** Border color for table and cell borders.
149
- $table-border-color: #ddd !default;
294
+ $mark-bg: #fcf8e3 !default;
150
295
 
296
+ $hr-margin-y: $spacer !default;
151
297
 
152
- //== Buttons
298
+
299
+ // Tables
153
300
  //
154
- //## For each of Bootstrap's buttons, define text, background and border color.
301
+ // Customizes the `.table` component with basic values, each used across all table variations.
302
+
303
+ $table-cell-padding: .75rem !default;
304
+ $table-cell-padding-sm: .3rem !default;
155
305
 
156
- $btn-font-weight: normal !default;
306
+ $table-bg: transparent !default;
307
+ $table-accent-bg: $gray-200 !default;
308
+ $table-hover-bg: rgba($black, .075) !default;
309
+ $table-active-bg: $table-hover-bg !default;
157
310
 
158
- $btn-default-color: #333 !default;
159
- $btn-default-bg: #fff !default;
160
- $btn-default-border: #ccc !default;
311
+ $table-border-width: $border-width !default;
312
+ $table-border-color: $gray-300 !default;
161
313
 
162
- $btn-primary-color: #fff !default;
163
- $btn-primary-bg: $brand-primary !default;
164
- $btn-primary-border: darken($btn-primary-bg, 2%) !default;
314
+ $table-head-bg: $gray-200 !default;
315
+ $table-head-color: $gray-700 !default;
165
316
 
166
- $btn-success-color: #fff !default;
167
- $btn-success-bg: $brand-success !default;
168
- $btn-success-border: darken($btn-success-bg, 2%) !default;
317
+ $table-dark-bg: $gray-900 !default;
318
+ $table-dark-accent-bg: rgba($white, .05) !default;
319
+ $table-dark-hover-bg: rgba($white, .075) !default;
320
+ $table-dark-border-color: lighten($gray-900, 7.5%) !default;
321
+ $table-dark-color: $body-bg !default;
169
322
 
170
- $btn-info-color: #fff !default;
171
- $btn-info-bg: $brand-info !default;
172
- $btn-info-border: darken($btn-info-bg, 2%) !default;
173
323
 
174
- $btn-warning-color: #fff !default;
175
- $btn-warning-bg: $brand-warning !default;
176
- $btn-warning-border: darken($btn-warning-bg, 2%) !default;
324
+ // Buttons + Forms
325
+ //
326
+ // Shared variables that are reassigned to `$input-` and `$btn-` specific variables.
327
+
328
+ $input-btn-padding-y: .375rem !default;
329
+ $input-btn-padding-x: .75rem !default;
330
+ $input-btn-line-height: $line-height-base !default;
177
331
 
178
- $btn-danger-color: #fff !default;
179
- $btn-danger-bg: $brand-danger !default;
180
- $btn-danger-border: darken($btn-danger-bg, 2%) !default;
332
+ $input-btn-focus-width: .2rem !default;
333
+ $input-btn-focus-color: rgba($component-active-bg, .25) !default;
334
+ $input-btn-focus-box-shadow: 0 0 0 $input-btn-focus-width $input-btn-focus-color !default;
181
335
 
182
- $btn-link-disabled-color: darken($link-color, 2%) !default;
336
+ $input-btn-padding-y-sm: .25rem !default;
337
+ $input-btn-padding-x-sm: .5rem !default;
338
+ $input-btn-line-height-sm: $line-height-sm !default;
183
339
 
184
- $btn-border-radius-base: $border-radius-base !default;
185
- $btn-border-radius-large: $border-radius-large !default;
186
- $btn-border-radius-small: $border-radius-small !default;
340
+ $input-btn-padding-y-lg: .5rem !default;
341
+ $input-btn-padding-x-lg: 1rem !default;
342
+ $input-btn-line-height-lg: $line-height-lg !default;
187
343
 
188
- //== Forms
344
+ $input-btn-border-width: $border-width !default;
345
+
346
+
347
+ // Buttons
189
348
  //
190
- //##
349
+ // For each of Bootstrap's buttons, define text, background, and border color.
191
350
 
192
- //** `<input>` background color
193
- $input-bg: #fff !default;
194
- //** `<input disabled>` background color
195
- $input-bg-disabled: $gray-lighter !default;
351
+ $btn-padding-y: $input-btn-padding-y !default;
352
+ $btn-padding-x: $input-btn-padding-x !default;
353
+ $btn-line-height: $input-btn-line-height !default;
196
354
 
197
- //** Text color for `<input>`s
198
- $input-color: $gray-dark !default;
199
- //** `<input>` border color
200
- $input-border: #ccc !default;
355
+ $btn-padding-y-sm: $input-btn-padding-y-sm !default;
356
+ $btn-padding-x-sm: $input-btn-padding-x-sm !default;
357
+ $btn-line-height-sm: $input-btn-line-height-sm !default;
201
358
 
202
- // TODO: Rename `$input-border-radius` to `$input-border-radius-base` in v4
203
- //** Default `.form-control` border radius
204
- $input-border-radius: $border-radius-base !default;
205
- //** Large `.form-control` border radius
206
- $input-border-radius-large: $border-radius-large !default;
207
- //** Small `.form-control` border radius
208
- $input-border-radius-small: $border-radius-small !default;
359
+ $btn-padding-y-lg: $input-btn-padding-y-lg !default;
360
+ $btn-padding-x-lg: $input-btn-padding-x-lg !default;
361
+ $btn-line-height-lg: $input-btn-line-height-lg !default;
209
362
 
210
- //** Border color for inputs on focus
211
- $input-border-focus: #66afe9 !default;
363
+ $btn-border-width: $input-btn-border-width !default;
212
364
 
213
- //** Placeholder text color
214
- $input-color-placeholder: #999 !default;
365
+ $btn-font-weight: $font-weight-normal !default;
366
+ $btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;
367
+ $btn-focus-width: $input-btn-focus-width !default;
368
+ $btn-focus-box-shadow: $input-btn-focus-box-shadow !default;
369
+ $btn-disabled-opacity: .65 !default;
370
+ $btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;
215
371
 
216
- //** Default `.form-control` height
217
- $input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2) !default;
218
- //** Large `.form-control` height
219
- $input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2) !default;
220
- //** Small `.form-control` height
221
- $input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
372
+ $btn-link-disabled-color: $gray-600 !default;
222
373
 
223
- //** `.form-group` margin
224
- $form-group-margin-bottom: 15px !default;
374
+ $btn-block-spacing-y: .5rem !default;
225
375
 
226
- $legend-color: $gray-dark !default;
227
- $legend-border-color: #e5e5e5 !default;
376
+ // Allows for customizing button radius independently from global border radius
377
+ $btn-border-radius: $border-radius !default;
378
+ $btn-border-radius-lg: $border-radius-lg !default;
379
+ $btn-border-radius-sm: $border-radius-sm !default;
228
380
 
229
- //** Background color for textual input addons
230
- $input-group-addon-bg: $gray-lighter !default;
231
- //** Border color for textual input addons
232
- $input-group-addon-border-color: $input-border !default;
381
+ $btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
233
382
 
234
- //** Disabled cursor for form controls and buttons.
235
- $cursor-disabled: not-allowed !default;
236
383
 
384
+ // Forms
237
385
 
238
- //== Dropdowns
239
- //
240
- //## Dropdown menu container and contents.
386
+ $input-padding-y: $input-btn-padding-y !default;
387
+ $input-padding-x: $input-btn-padding-x !default;
388
+ $input-line-height: $input-btn-line-height !default;
241
389
 
242
- //** Background for the dropdown menu.
243
- $dropdown-bg: #fff !default;
244
- //** Dropdown menu `border-color`.
245
- $dropdown-border: rgba(0,0,0,.15) !default;
246
- //** Dropdown menu `border-color` **for IE8**.
247
- $dropdown-fallback-border: #ccc !default;
248
- //** Divider color for between dropdown items.
249
- $dropdown-divider-bg: #e5e5e5 !default;
390
+ $input-padding-y-sm: $input-btn-padding-y-sm !default;
391
+ $input-padding-x-sm: $input-btn-padding-x-sm !default;
392
+ $input-line-height-sm: $input-btn-line-height-sm !default;
250
393
 
251
- //** Dropdown link text color.
252
- $dropdown-link-color: $gray-dark !default;
253
- //** Hover color for dropdown links.
254
- $dropdown-link-hover-color: darken($gray-dark, 5%) !default;
255
- //** Hover background for dropdown links.
256
- $dropdown-link-hover-bg: #f5f5f5 !default;
394
+ $input-padding-y-lg: $input-btn-padding-y-lg !default;
395
+ $input-padding-x-lg: $input-btn-padding-x-lg !default;
396
+ $input-line-height-lg: $input-btn-line-height-lg !default;
257
397
 
258
- //** Active dropdown menu item text color.
259
- $dropdown-link-active-color: $component-active-color !default;
260
- //** Active dropdown menu item background color.
261
- $dropdown-link-active-bg: $component-active-bg !default;
398
+ $input-bg: $white !default;
399
+ $input-disabled-bg: $gray-200 !default;
262
400
 
263
- //** Disabled dropdown menu item background color.
264
- $dropdown-link-disabled-color: $gray-light !default;
401
+ $input-color: $gray-700 !default;
402
+ $input-border-color: $gray-400 !default;
403
+ $input-border-width: $input-btn-border-width !default;
404
+ $input-box-shadow: inset 0 1px 1px rgba($black, .075) !default;
265
405
 
266
- //** Text color for headers within dropdown menus.
267
- $dropdown-header-color: $gray-light !default;
406
+ $input-border-radius: $border-radius !default;
407
+ $input-border-radius-lg: $border-radius-lg !default;
408
+ $input-border-radius-sm: $border-radius-sm !default;
268
409
 
269
- //** Deprecated `$dropdown-caret-color` as of v3.1.0
270
- $dropdown-caret-color: #000 !default;
410
+ $input-focus-bg: $input-bg !default;
411
+ $input-focus-border-color: lighten($component-active-bg, 25%) !default;
412
+ $input-focus-color: $input-color !default;
413
+ $input-focus-width: $input-btn-focus-width !default;
414
+ $input-focus-box-shadow: $input-btn-focus-box-shadow !default;
271
415
 
416
+ $input-placeholder-color: $gray-600 !default;
272
417
 
273
- //-- Z-index master list
274
- //
275
- // Warning: Avoid customizing these values. They're used for a bird's eye view
276
- // of components dependent on the z-axis and are designed to all work together.
277
- //
278
- // Note: These variables are not generated into the Customizer.
418
+ $input-height-border: $input-border-width * 2 !default;
279
419
 
280
- $zindex-navbar: 1000 !default;
281
- $zindex-dropdown: 1000 !default;
282
- $zindex-popover: 1060 !default;
283
- $zindex-tooltip: 1070 !default;
284
- $zindex-navbar-fixed: 1030 !default;
285
- $zindex-modal-background: 1040 !default;
286
- $zindex-modal: 1050 !default;
420
+ $input-height-inner: ($font-size-base * $input-btn-line-height) + ($input-btn-padding-y * 2) !default;
421
+ $input-height: calc(#{$input-height-inner} + #{$input-height-border}) !default;
287
422
 
423
+ $input-height-inner-sm: ($font-size-sm * $input-btn-line-height-sm) + ($input-btn-padding-y-sm * 2) !default;
424
+ $input-height-sm: calc(#{$input-height-inner-sm} + #{$input-height-border}) !default;
288
425
 
289
- //== Media queries breakpoints
290
- //
291
- //## Define the breakpoints at which your layout will change, adapting to different screen sizes.
292
-
293
- // Extra small screen / phone
294
- //** Deprecated `$screen-xs` as of v3.0.1
295
- $screen-xs: 480px !default;
296
- //** Deprecated `$screen-xs-min` as of v3.2.0
297
- $screen-xs-min: $screen-xs !default;
298
- //** Deprecated `$screen-phone` as of v3.0.1
299
- $screen-phone: $screen-xs-min !default;
300
-
301
- // Small screen / tablet
302
- //** Deprecated `$screen-sm` as of v3.0.1
303
- $screen-sm: 768px !default;
304
- $screen-sm-min: $screen-sm !default;
305
- //** Deprecated `$screen-tablet` as of v3.0.1
306
- $screen-tablet: $screen-sm-min !default;
307
-
308
- // Medium screen / desktop
309
- //** Deprecated `$screen-md` as of v3.0.1
310
- $screen-md: 992px !default;
311
- $screen-md-min: $screen-md !default;
312
- //** Deprecated `$screen-desktop` as of v3.0.1
313
- $screen-desktop: $screen-md-min !default;
314
-
315
- // Large screen / wide desktop
316
- //** Deprecated `$screen-lg` as of v3.0.1
317
- $screen-lg: 1200px !default;
318
- $screen-lg-min: $screen-lg !default;
319
- //** Deprecated `$screen-lg-desktop` as of v3.0.1
320
- $screen-lg-desktop: $screen-lg-min !default;
321
-
322
- // So media queries don't overlap when required, provide a maximum
323
- $screen-xs-max: ($screen-sm-min - 1) !default;
324
- $screen-sm-max: ($screen-md-min - 1) !default;
325
- $screen-md-max: ($screen-lg-min - 1) !default;
326
-
327
-
328
- //== Grid system
329
- //
330
- //## Define your custom responsive grid.
426
+ $input-height-inner-lg: ($font-size-lg * $input-btn-line-height-lg) + ($input-btn-padding-y-lg * 2) !default;
427
+ $input-height-lg: calc(#{$input-height-inner-lg} + #{$input-height-border}) !default;
331
428
 
332
- //** Number of columns in the grid.
333
- $grid-columns: 12 !default;
334
- //** Padding between columns. Gets divided in half for the left and right.
335
- $grid-gutter-width: 30px !default;
336
- // Navbar collapse
337
- //** Point at which the navbar becomes uncollapsed.
338
- $grid-float-breakpoint: $screen-sm-min !default;
339
- //** Point at which the navbar begins collapsing.
340
- $grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
429
+ $input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
341
430
 
431
+ $form-text-margin-top: .25rem !default;
342
432
 
343
- //== Container sizes
344
- //
345
- //## Define the maximum width of `.container` for different screen sizes.
433
+ $form-check-input-gutter: 1.25rem !default;
434
+ $form-check-input-margin-y: .3rem !default;
435
+ $form-check-input-margin-x: .25rem !default;
346
436
 
347
- // Small screen / tablet
348
- $container-tablet: (720px + $grid-gutter-width) !default;
349
- //** For `$screen-sm-min` and up.
350
- $container-sm: $container-tablet !default;
437
+ $form-check-inline-margin-x: .75rem !default;
438
+ $form-check-inline-input-margin-x: .3125rem !default;
351
439
 
352
- // Medium screen / desktop
353
- $container-desktop: (940px + $grid-gutter-width) !default;
354
- //** For `$screen-md-min` and up.
355
- $container-md: $container-desktop !default;
440
+ $form-group-margin-bottom: 1rem !default;
356
441
 
357
- // Large screen / wide desktop
358
- $container-large-desktop: (1140px + $grid-gutter-width) !default;
359
- //** For `$screen-lg-min` and up.
360
- $container-lg: $container-large-desktop !default;
442
+ $input-group-addon-color: $input-color !default;
443
+ $input-group-addon-bg: $gray-200 !default;
444
+ $input-group-addon-border-color: $input-border-color !default;
361
445
 
446
+ $custom-control-gutter: 1.5rem !default;
447
+ $custom-control-spacer-x: 1rem !default;
362
448
 
363
- //== Navbar
364
- //
365
- //##
366
-
367
- // Basics of a navbar
368
- $navbar-height: 80px !default;
369
- $navbar-margin-bottom: $line-height-computed !default;
370
- $navbar-border-radius: $border-radius-base !default;
371
- $navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;
372
- $navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;
373
- $navbar-collapse-max-height: 340px !default;
374
-
375
- $navbar-default-color: #fff !default;
376
- $navbar-default-bg: $brand-primary !default;
377
- $navbar-default-border: darken($navbar-default-bg, 6.5%) !default;
378
-
379
- // Navbar links
380
- $navbar-default-link-color: #fff !default;
381
- $navbar-default-link-hover-color: $brand-success !default;
382
- $navbar-default-link-hover-bg: transparent !default;
383
- $navbar-default-link-active-color: #fff !default;
384
- $navbar-default-link-active-bg: darken($navbar-default-bg, 10%) !default;
385
- $navbar-default-link-disabled-color: #ccc !default;
386
- $navbar-default-link-disabled-bg: transparent !default;
387
-
388
- // Navbar brand label
389
- $navbar-default-brand-color: $navbar-default-link-color !default;
390
- $navbar-default-brand-hover-color: darken($navbar-default-brand-color, 10%) !default;
391
- $navbar-default-brand-hover-bg: transparent !default;
392
-
393
- // Navbar toggle
394
- $navbar-default-toggle-hover-bg: darken($navbar-default-bg, 10%);
395
- $navbar-default-toggle-icon-bar-bg: #888 !default;
396
- $navbar-default-toggle-border-color: darken($navbar-default-bg, 10%);
397
-
398
-
399
- //=== Inverted navbar
400
- // Reset inverted navbar basics
401
- $navbar-inverse-color: #fff !default;
402
- $navbar-inverse-bg: $brand-success !default;
403
- $navbar-inverse-border: darken($navbar-inverse-bg, 10%) !default;
404
-
405
- // Inverted navbar links
406
- $navbar-inverse-link-color: #fff !default;
407
- $navbar-inverse-link-hover-color: $brand-primary !default;
408
- $navbar-inverse-link-hover-bg: transparent !default;
409
- $navbar-inverse-link-active-color: #fff !default;
410
- $navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 10%) !default;
411
- $navbar-inverse-link-disabled-color: #ccc !default;
412
- $navbar-inverse-link-disabled-bg: transparent !default;
413
-
414
- // Inverted navbar brand label
415
- $navbar-inverse-brand-color: $navbar-inverse-link-color !default;
416
- $navbar-inverse-brand-hover-color: #fff !default;
417
- $navbar-inverse-brand-hover-bg: transparent !default;
418
-
419
- // Inverted navbar toggle
420
- $navbar-inverse-toggle-hover-bg: darken($navbar-inverse-bg, 10%);
421
- $navbar-inverse-toggle-icon-bar-bg: #fff !default;
422
- $navbar-inverse-toggle-border-color: darken($navbar-inverse-bg, 10%);
423
-
424
-
425
- //== Navs
426
- //
427
- //##
449
+ $custom-control-indicator-size: 1rem !default;
450
+ $custom-control-indicator-bg: $gray-300 !default;
451
+ $custom-control-indicator-bg-size: 50% 50% !default;
452
+ $custom-control-indicator-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default;
428
453
 
429
- //=== Shared nav styles
430
- $nav-link-padding: 10px 15px !default;
431
- $nav-link-hover-bg: $gray-lighter !default;
454
+ $custom-control-indicator-disabled-bg: $gray-200 !default;
455
+ $custom-control-label-disabled-color: $gray-600 !default;
432
456
 
433
- $nav-disabled-link-color: $gray-light !default;
434
- $nav-disabled-link-hover-color: $gray-light !default;
457
+ $custom-control-indicator-checked-color: $component-active-color !default;
458
+ $custom-control-indicator-checked-bg: $component-active-bg !default;
459
+ $custom-control-indicator-checked-disabled-bg: rgba(theme-color("primary"), .5) !default;
460
+ $custom-control-indicator-checked-box-shadow: none !default;
435
461
 
436
- //== Tabs
437
- $nav-tabs-border-color: #ddd !default;
462
+ $custom-control-indicator-focus-box-shadow: 0 0 0 1px $body-bg, $input-btn-focus-box-shadow !default;
438
463
 
439
- $nav-tabs-link-hover-border-color: $gray-lighter !default;
464
+ $custom-control-indicator-active-color: $component-active-color !default;
465
+ $custom-control-indicator-active-bg: lighten($component-active-bg, 35%) !default;
466
+ $custom-control-indicator-active-box-shadow: none !default;
440
467
 
441
- $nav-tabs-active-link-hover-bg: $body-bg !default;
442
- $nav-tabs-active-link-hover-color: $gray !default;
443
- $nav-tabs-active-link-hover-border-color: #ddd !default;
468
+ $custom-checkbox-indicator-border-radius: $border-radius !default;
469
+ $custom-checkbox-indicator-icon-checked: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#{$custom-control-indicator-checked-color}' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"), "#", "%23") !default;
444
470
 
445
- $nav-tabs-justified-link-border-color: #ddd !default;
446
- $nav-tabs-justified-active-link-border-color: $body-bg !default;
471
+ $custom-checkbox-indicator-indeterminate-bg: $component-active-bg !default;
472
+ $custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color !default;
473
+ $custom-checkbox-indicator-icon-indeterminate: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='#{$custom-checkbox-indicator-indeterminate-color}' d='M0 2h4'/%3E%3C/svg%3E"), "#", "%23") !default;
474
+ $custom-checkbox-indicator-indeterminate-box-shadow: none !default;
447
475
 
448
- //== Pills
449
- $nav-pills-border-radius: $border-radius-base !default;
450
- $nav-pills-active-link-hover-bg: $component-active-bg !default;
451
- $nav-pills-active-link-hover-color: $component-active-color !default;
476
+ $custom-radio-indicator-border-radius: 50% !default;
477
+ $custom-radio-indicator-icon-checked: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='#{$custom-control-indicator-checked-color}'/%3E%3C/svg%3E"), "#", "%23") !default;
452
478
 
479
+ $custom-select-padding-y: .375rem !default;
480
+ $custom-select-padding-x: .75rem !default;
481
+ $custom-select-height: $input-height !default;
482
+ $custom-select-indicator-padding: 1rem !default; // Extra padding to account for the presence of the background-image based indicator
483
+ $custom-select-line-height: $input-btn-line-height !default;
484
+ $custom-select-color: $input-color !default;
485
+ $custom-select-disabled-color: $gray-600 !default;
486
+ $custom-select-bg: $white !default;
487
+ $custom-select-disabled-bg: $gray-200 !default;
488
+ $custom-select-bg-size: 8px 10px !default; // In pixels because image dimensions
489
+ $custom-select-indicator-color: $gray-800 !default;
490
+ $custom-select-indicator: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E"), "#", "%23") !default;
491
+ $custom-select-border-width: $input-btn-border-width !default;
492
+ $custom-select-border-color: $input-border-color !default;
493
+ $custom-select-border-radius: $border-radius !default;
453
494
 
454
- //== Pagination
455
- //
456
- //##
495
+ $custom-select-focus-border-color: $input-focus-border-color !default;
496
+ $custom-select-focus-box-shadow: inset 0 1px 2px rgba($black, .075), 0 0 5px rgba($custom-select-focus-border-color, .5) !default;
497
+
498
+ $custom-select-font-size-sm: 75% !default;
499
+ $custom-select-height-sm: $input-height-sm !default;
500
+
501
+ $custom-select-font-size-lg: 125% !default;
502
+ $custom-select-height-lg: $input-height-lg !default;
457
503
 
458
- $pagination-color: $link-color !default;
459
- $pagination-bg: #fff !default;
460
- $pagination-border: #ddd !default;
504
+ $custom-file-height: $input-height !default;
505
+ $custom-file-focus-border-color: $input-focus-border-color !default;
506
+ $custom-file-focus-box-shadow: $input-btn-focus-box-shadow !default;
461
507
 
462
- $pagination-hover-color: $link-hover-color !default;
463
- $pagination-hover-bg: $gray-lighter !default;
464
- $pagination-hover-border: #ddd !default;
508
+ $custom-file-padding-y: $input-btn-padding-y !default;
509
+ $custom-file-padding-x: $input-btn-padding-x !default;
510
+ $custom-file-line-height: $input-btn-line-height !default;
511
+ $custom-file-color: $input-color !default;
512
+ $custom-file-bg: $input-bg !default;
513
+ $custom-file-border-width: $input-btn-border-width !default;
514
+ $custom-file-border-color: $input-border-color !default;
515
+ $custom-file-border-radius: $input-border-radius !default;
516
+ $custom-file-box-shadow: $input-box-shadow !default;
517
+ $custom-file-button-color: $custom-file-color !default;
518
+ $custom-file-button-bg: $input-group-addon-bg !default;
519
+ $custom-file-text: (
520
+ en: "Browse"
521
+ ) !default;
465
522
 
466
- $pagination-active-color: #fff !default;
467
- $pagination-active-bg: $brand-primary !default;
468
- $pagination-active-border: $brand-primary !default;
469
523
 
470
- $pagination-disabled-color: $gray-light !default;
471
- $pagination-disabled-bg: #fff !default;
472
- $pagination-disabled-border: #ddd !default;
524
+ // Form validation
525
+ $form-feedback-margin-top: $form-text-margin-top !default;
526
+ $form-feedback-font-size: $small-font-size !default;
527
+ $form-feedback-valid-color: theme-color("success") !default;
528
+ $form-feedback-invalid-color: theme-color("danger") !default;
473
529
 
474
530
 
475
- //== Pager
531
+ // Dropdowns
476
532
  //
477
- //##
533
+ // Dropdown menu container and contents.
478
534
 
479
- $pager-bg: $pagination-bg !default;
480
- $pager-border: $pagination-border !default;
481
- $pager-border-radius: 15px !default;
535
+ $dropdown-min-width: 10rem !default;
536
+ $dropdown-padding-y: .5rem !default;
537
+ $dropdown-spacer: .125rem !default;
538
+ $dropdown-bg: $white !default;
539
+ $dropdown-border-color: rgba($black, .15) !default;
540
+ $dropdown-border-radius: $border-radius !default;
541
+ $dropdown-border-width: $border-width !default;
542
+ $dropdown-divider-bg: $gray-200 !default;
543
+ $dropdown-box-shadow: 0 .5rem 1rem rgba($black, .175) !default;
482
544
 
483
- $pager-hover-bg: $pagination-hover-bg !default;
545
+ $dropdown-link-color: $gray-700 !default;
546
+ $dropdown-link-hover-color: $white !default;
547
+ $dropdown-link-hover-bg: $primary !default;
484
548
 
485
- $pager-active-bg: $pagination-active-bg !default;
486
- $pager-active-color: $pagination-active-color !default;
549
+ $dropdown-link-active-color: $component-active-color !default;
550
+ $dropdown-link-active-bg: $component-active-bg !default;
487
551
 
488
- $pager-disabled-color: $pagination-disabled-color !default;
552
+ $dropdown-link-disabled-color: $gray-600 !default;
489
553
 
554
+ $dropdown-item-padding-y: .25rem !default;
555
+ $dropdown-item-padding-x: 1.5rem !default;
490
556
 
491
- //== Jumbotron
557
+ $dropdown-header-color: $gray-600 !default;
558
+
559
+
560
+ // Z-index master list
492
561
  //
493
- //##
562
+ // Warning: Avoid customizing these values. They're used for a bird's eye view
563
+ // of components dependent on the z-axis and are designed to all work together.
494
564
 
495
- $jumbotron-padding: 30px !default;
496
- $jumbotron-color: inherit !default;
497
- $jumbotron-bg: $gray-lighter !default;
498
- $jumbotron-heading-color: inherit !default;
499
- $jumbotron-font-size: ceil(($font-size-base * 1.5)) !default;
500
- $jumbotron-heading-font-size: ceil(($font-size-base * 4.5)) !default;
565
+ $zindex-dropdown: 1000 !default;
566
+ $zindex-sticky: 1020 !default;
567
+ $zindex-fixed: 1030 !default;
568
+ $zindex-modal-backdrop: 1040 !default;
569
+ $zindex-modal: 1050 !default;
570
+ $zindex-popover: 1060 !default;
571
+ $zindex-tooltip: 1070 !default;
501
572
 
573
+ // Navs
502
574
 
503
- //== Form states and alerts
504
- //
505
- //## Define colors for form feedback states and, by default, alerts.
575
+ $nav-link-padding-y: .5rem !default;
576
+ $nav-link-padding-x: 1rem !default;
577
+ $nav-link-disabled-color: $gray-600 !default;
506
578
 
507
- $state-success-text: darken($brand-success, 10%) !default;
508
- $state-success-bg: lighten($state-success-text, 60%) !default;
509
- $state-success-border: darken(adjust-hue($state-success-bg, -10), 5%) !default;
579
+ $nav-tabs-border-color: $gray-200 !default;
580
+ $nav-tabs-border-width: $border-width !default;
581
+ $nav-tabs-border-radius: $border-radius !default;
582
+ $nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default;
583
+ $nav-tabs-link-active-color: $gray-700 !default;
584
+ $nav-tabs-link-active-bg: $body-bg !default;
585
+ $nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;
510
586
 
511
- $state-info-text: darken($brand-info, 10%) !default;
512
- $state-info-bg: lighten($state-info-text, 50%) !default;
513
- $state-info-border: darken(adjust-hue($state-info-bg, -10), 7%) !default;
587
+ $nav-pills-border-radius: $border-radius !default;
588
+ $nav-pills-link-active-color: $component-active-color !default;
589
+ $nav-pills-link-active-bg: $component-active-bg !default;
514
590
 
515
- $state-warning-text: darken($brand-warning, 10%) !default;
516
- $state-warning-bg: lighten($state-warning-text, 50%) !default;
517
- $state-warning-border: darken(adjust-hue($state-warning-bg, -10), 5%) !default;
591
+ // Navbar
518
592
 
519
- $state-danger-text: darken($brand-danger, 10%) !default;
520
- $state-danger-bg: lighten($state-danger-text, 50%) !default;
521
- $state-danger-border: darken(adjust-hue($state-danger-bg, -10), 5%) !default;
593
+ $navbar-padding-y: ($spacer * 1.2) !default;
594
+ $navbar-padding-x: ($spacer * 1.5) !default;
522
595
 
596
+ $navbar-nav-link-padding-x: .5rem !default;
523
597
 
524
- //== Tooltips
525
- //
526
- //##
598
+ $navbar-brand-font-size: $font-size-lg !default;
599
+ // Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link
600
+ $nav-link-height: ($font-size-base * $line-height-base + $nav-link-padding-y * 2) !default;
601
+ $navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;
602
+ $navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) / 2 !default;
603
+
604
+ $navbar-toggler-padding-y: .25rem !default;
605
+ $navbar-toggler-padding-x: .75rem !default;
606
+ $navbar-toggler-font-size: $font-size-lg !default;
607
+ $navbar-toggler-border-radius: $btn-border-radius !default;
527
608
 
528
- //** Tooltip max width
609
+ $navbar-dark-color: $white !default;
610
+ $navbar-dark-hover-color: $success !default;
611
+ $navbar-dark-active-color: $white !default;
612
+ $navbar-dark-disabled-color: rgba($white, .25) !default;
613
+ $navbar-dark-toggler-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-dark-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"), "#", "%23") !default;
614
+ $navbar-dark-toggler-border-color: rgba($white, .1) !default;
615
+
616
+ $navbar-light-color: rgba($black, .5) !default;
617
+ $navbar-light-hover-color: rgba($black, .7) !default;
618
+ $navbar-light-active-color: rgba($black, .9) !default;
619
+ $navbar-light-disabled-color: rgba($black, .3) !default;
620
+ $navbar-light-toggler-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-light-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"), "#", "%23") !default;
621
+ $navbar-light-toggler-border-color: rgba($black, .1) !default;
622
+
623
+ // Pagination
624
+
625
+ $pagination-padding-y: .5rem !default;
626
+ $pagination-padding-x: .75rem !default;
627
+ $pagination-padding-y-sm: .25rem !default;
628
+ $pagination-padding-x-sm: .5rem !default;
629
+ $pagination-padding-y-lg: .75rem !default;
630
+ $pagination-padding-x-lg: 1.5rem !default;
631
+ $pagination-line-height: 1.25 !default;
632
+
633
+ $pagination-color: $white !default;
634
+ $pagination-bg: $success !default;
635
+ $pagination-border-width: $border-width !default;
636
+ $pagination-border-color: transparent !default;
637
+
638
+ $pagination-focus-box-shadow: $input-btn-focus-box-shadow !default;
639
+
640
+ $pagination-hover-color: $white !default;
641
+ $pagination-hover-bg: darken($success, 15%) !default;
642
+ $pagination-hover-border-color: transparent !default;
643
+
644
+ $pagination-active-color: $component-active-color !default;
645
+ $pagination-active-bg: $pagination-hover-bg !default;
646
+ $pagination-active-border-color: transparent !default;
647
+
648
+ $pagination-disabled-color: $gray-200 !default;
649
+ $pagination-disabled-bg: lighten($success, 15%) !default;
650
+ $pagination-disabled-border-color: transparent !default;
651
+
652
+
653
+ // Jumbotron
654
+
655
+ $jumbotron-padding: 2rem !default;
656
+ $jumbotron-bg: $gray-200 !default;
657
+
658
+
659
+ // Cards
660
+
661
+ $card-spacer-y: .75rem !default;
662
+ $card-spacer-x: 1.25rem !default;
663
+ $card-border-width: $border-width !default;
664
+ $card-border-radius: $border-radius !default;
665
+ $card-border-color: rgba($black, .125) !default;
666
+ $card-inner-border-radius: calc(#{$card-border-radius} - #{$card-border-width}) !default;
667
+ $card-cap-bg: rgba($black, .03) !default;
668
+ $card-bg: $white !default;
669
+
670
+ $card-img-overlay-padding: 1.25rem !default;
671
+
672
+ $card-group-margin: ($grid-gutter-width / 2) !default;
673
+ $card-deck-margin: $card-group-margin !default;
674
+
675
+ $card-columns-count: 3 !default;
676
+ $card-columns-gap: 1.25rem !default;
677
+ $card-columns-margin: $card-spacer-y !default;
678
+
679
+
680
+ // Tooltips
681
+
682
+ $tooltip-font-size: $font-size-sm !default;
529
683
  $tooltip-max-width: 200px !default;
530
- //** Tooltip text color
531
- $tooltip-color: #fff !default;
532
- //** Tooltip background color
533
- $tooltip-bg: #000 !default;
684
+ $tooltip-color: $white !default;
685
+ $tooltip-bg: $black !default;
686
+ $tooltip-border-radius: $border-radius !default;
534
687
  $tooltip-opacity: .9 !default;
688
+ $tooltip-padding-y: .25rem !default;
689
+ $tooltip-padding-x: .5rem !default;
690
+ $tooltip-margin: 0 !default;
535
691
 
536
- //** Tooltip arrow width
537
- $tooltip-arrow-width: 5px !default;
538
- //** Tooltip arrow color
692
+ $tooltip-arrow-width: .8rem !default;
693
+ $tooltip-arrow-height: .4rem !default;
539
694
  $tooltip-arrow-color: $tooltip-bg !default;
540
695
 
541
696
 
542
- //== Popovers
543
- //
544
- //##
545
-
546
- //** Popover body background color
547
- $popover-bg: #fff !default;
548
- //** Popover maximum width
549
- $popover-max-width: 276px !default;
550
- //** Popover border color
551
- $popover-border-color: rgba(0,0,0,.2) !default;
552
- //** Popover fallback border color
553
- $popover-fallback-border-color: #ccc !default;
554
-
555
- //** Popover title background color
556
- $popover-title-bg: darken($popover-bg, 3%) !default;
557
-
558
- //** Popover arrow width
559
- $popover-arrow-width: 10px !default;
560
- //** Popover arrow color
561
- $popover-arrow-color: $popover-bg !default;
562
-
563
- //** Popover outer arrow width
564
- $popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
565
- //** Popover outer arrow color
566
- $popover-arrow-outer-color: fade_in($popover-border-color, 0.05) !default;
567
- //** Popover outer arrow fallback color
568
- $popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%) !default;
569
-
570
-
571
- //== Labels
572
- //
573
- //##
574
-
575
- //** Default label background color
576
- $label-default-bg: $gray-light !default;
577
- //** Primary label background color
578
- $label-primary-bg: $brand-primary !default;
579
- //** Success label background color
580
- $label-success-bg: $brand-success !default;
581
- //** Info label background color
582
- $label-info-bg: $brand-info !default;
583
- //** Warning label background color
584
- $label-warning-bg: $brand-warning !default;
585
- //** Danger label background color
586
- $label-danger-bg: $brand-danger !default;
587
-
588
- //** Default label text color
589
- $label-color: #fff !default;
590
- //** Default text color of a linked label
591
- $label-link-hover-color: #fff !default;
592
-
593
-
594
- //== Modals
595
- //
596
- //##
597
-
598
- //** Padding applied to the modal body
599
- $modal-inner-padding: 15px !default;
600
-
601
- //** Padding applied to the modal title
602
- $modal-title-padding: 15px !default;
603
- //** Modal title line-height
604
- $modal-title-line-height: $line-height-base !default;
605
-
606
- //** Background color of modal content area
607
- $modal-content-bg: #fff !default;
608
- //** Modal content border color
609
- $modal-content-border-color: rgba(0,0,0,.2) !default;
610
- //** Modal content border color **for IE8**
611
- $modal-content-fallback-border-color: #999 !default;
612
-
613
- //** Modal backdrop background color
614
- $modal-backdrop-bg: #000 !default;
615
- //** Modal backdrop opacity
616
- $modal-backdrop-opacity: .5 !default;
617
- //** Modal header border color
618
- $modal-header-border-color: transparent !default;
619
- //** Modal footer border color
620
- $modal-footer-border-color: $modal-header-border-color !default;
697
+ // Popovers
621
698
 
622
- $modal-lg: 900px !default;
623
- $modal-md: 600px !default;
624
- $modal-sm: 300px !default;
699
+ $popover-font-size: $font-size-sm !default;
700
+ $popover-bg: $white !default;
701
+ $popover-max-width: 276px !default;
702
+ $popover-border-width: $border-width !default;
703
+ $popover-border-color: rgba($black, .2) !default;
704
+ $popover-border-radius: $border-radius-lg !default;
705
+ $popover-box-shadow: 0 .25rem .5rem rgba($black, .2) !default;
625
706
 
707
+ $popover-header-bg: darken($popover-bg, 3%) !default;
708
+ $popover-header-color: $headings-color !default;
709
+ $popover-header-padding-y: .5rem !default;
710
+ $popover-header-padding-x: .75rem !default;
626
711
 
627
- //== Alerts
628
- //
629
- //## Define alert colors, border radius, and padding.
712
+ $popover-body-color: $body-color !default;
713
+ $popover-body-padding-y: $popover-header-padding-y !default;
714
+ $popover-body-padding-x: $popover-header-padding-x !default;
630
715
 
631
- $alert-padding: 15px !default;
632
- $alert-border-radius: $border-radius-base !default;
633
- $alert-link-font-weight: bold !default;
716
+ $popover-arrow-width: 1rem !default;
717
+ $popover-arrow-height: .5rem !default;
718
+ $popover-arrow-color: $popover-bg !default;
634
719
 
635
- $alert-success-bg: $state-success-bg !default;
636
- $alert-success-text: $state-success-text !default;
637
- $alert-success-border: $state-success-border !default;
720
+ $popover-arrow-outer-color: fade-in($popover-border-color, .05) !default;
638
721
 
639
- $alert-info-bg: $state-info-bg !default;
640
- $alert-info-text: $state-info-text !default;
641
- $alert-info-border: $state-info-border !default;
642
722
 
643
- $alert-warning-bg: $state-warning-bg !default;
644
- $alert-warning-text: $state-warning-text !default;
645
- $alert-warning-border: $state-warning-border !default;
723
+ // Badges
646
724
 
647
- $alert-danger-bg: $state-danger-bg !default;
648
- $alert-danger-text: $state-danger-text !default;
649
- $alert-danger-border: $state-danger-border !default;
725
+ $badge-font-size: 75% !default;
726
+ $badge-font-weight: $font-weight-bold !default;
727
+ $badge-padding-y: .25em !default;
728
+ $badge-padding-x: .4em !default;
729
+ $badge-border-radius: $border-radius !default;
650
730
 
731
+ $badge-pill-padding-x: .6em !default;
732
+ // Use a higher than normal value to ensure completely rounded edges when
733
+ // customizing padding or font-size on labels.
734
+ $badge-pill-border-radius: 10rem !default;
651
735
 
652
- //== Progress bars
653
- //
654
- //##
655
-
656
- //** Background color of the whole progress component
657
- $progress-bg: #f5f5f5 !default;
658
- //** Progress bar text color
659
- $progress-bar-color: #fff !default;
660
- //** Variable for setting rounded corners on progress bar.
661
- $progress-border-radius: $border-radius-base !default;
662
-
663
- //** Default progress bar color
664
- $progress-bar-bg: $brand-primary !default;
665
- //** Success progress bar color
666
- $progress-bar-success-bg: $brand-success !default;
667
- //** Warning progress bar color
668
- $progress-bar-warning-bg: $brand-warning !default;
669
- //** Danger progress bar color
670
- $progress-bar-danger-bg: $brand-danger !default;
671
- //** Info progress bar color
672
- $progress-bar-info-bg: $brand-info !default;
673
-
674
-
675
- //== List group
676
- //
677
- //##
678
-
679
- //** Background color on `.list-group-item`
680
- $list-group-bg: #fff !default;
681
- //** `.list-group-item` border color
682
- $list-group-border: #ddd !default;
683
- //** List group border radius
684
- $list-group-border-radius: $border-radius-base !default;
685
-
686
- //** Background color of single list items on hover
687
- $list-group-hover-bg: #f5f5f5 !default;
688
- //** Text color of active list items
689
- $list-group-active-color: $component-active-color !default;
690
- //** Background color of active list items
691
- $list-group-active-bg: $component-active-bg !default;
692
- //** Border color of active list elements
693
- $list-group-active-border: $list-group-active-bg !default;
694
- //** Text color for content within active list items
695
- $list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
696
-
697
- //** Text color of disabled list items
698
- $list-group-disabled-color: $gray-light !default;
699
- //** Background color of disabled list items
700
- $list-group-disabled-bg: $gray-lighter !default;
701
- //** Text color for content within disabled list items
702
- $list-group-disabled-text-color: $list-group-disabled-color !default;
703
-
704
- $list-group-link-color: #555 !default;
705
- $list-group-link-hover-color: $list-group-link-color !default;
706
- $list-group-link-heading-color: #333 !default;
707
-
708
-
709
- //== Panels
710
- //
711
- //##
712
736
 
713
- $panel-bg: #fff !default;
714
- $panel-body-padding: 15px !default;
715
- $panel-heading-padding: 10px 15px !default;
716
- $panel-footer-padding: $panel-heading-padding !default;
717
- $panel-border-radius: $border-radius-base !default;
737
+ // Modals
718
738
 
719
- //** Border color for elements within panels
720
- $panel-inner-border: #ddd !default;
721
- $panel-footer-bg: #f5f5f5 !default;
739
+ // Padding applied to the modal body
740
+ $modal-inner-padding: 1rem !default;
722
741
 
723
- $panel-default-text: $gray-dark !default;
724
- $panel-default-border: #ddd !default;
725
- $panel-default-heading-bg: #f5f5f5 !default;
742
+ $modal-dialog-margin: .5rem !default;
743
+ $modal-dialog-margin-y-sm-up: 1.75rem !default;
726
744
 
727
- $panel-primary-text: #fff !default;
728
- $panel-primary-border: $brand-primary !default;
729
- $panel-primary-heading-bg: $brand-primary !default;
745
+ $modal-title-line-height: $line-height-base !default;
730
746
 
731
- $panel-success-text: $state-success-text !default;
732
- $panel-success-border: $state-success-border !default;
733
- $panel-success-heading-bg: $state-success-bg !default;
747
+ $modal-content-bg: $white !default;
748
+ $modal-content-border-color: rgba($black, .2) !default;
749
+ $modal-content-border-width: $border-width !default;
750
+ $modal-content-box-shadow-xs: 0 .25rem .5rem rgba($black, .5) !default;
751
+ $modal-content-box-shadow-sm-up: 0 .5rem 1rem rgba($black, .5) !default;
734
752
 
735
- $panel-info-text: $state-info-text !default;
736
- $panel-info-border: $state-info-border !default;
737
- $panel-info-heading-bg: $state-info-bg !default;
753
+ $modal-backdrop-bg: $black !default;
754
+ $modal-backdrop-opacity: .5 !default;
755
+ $modal-header-border-color: $gray-200 !default;
756
+ $modal-footer-border-color: $modal-header-border-color !default;
757
+ $modal-header-border-width: $modal-content-border-width !default;
758
+ $modal-footer-border-width: $modal-header-border-width !default;
759
+ $modal-header-padding: 1rem !default;
738
760
 
739
- $panel-warning-text: $state-warning-text !default;
740
- $panel-warning-border: $state-warning-border !default;
741
- $panel-warning-heading-bg: $state-warning-bg !default;
761
+ $modal-lg: 800px !default;
762
+ $modal-md: 500px !default;
763
+ $modal-sm: 300px !default;
742
764
 
743
- $panel-danger-text: $state-danger-text !default;
744
- $panel-danger-border: $state-danger-border !default;
745
- $panel-danger-heading-bg: $state-danger-bg !default;
765
+ $modal-transition: transform .3s ease-out !default;
746
766
 
747
767
 
748
- //== Thumbnails
768
+ // Alerts
749
769
  //
750
- //##
770
+ // Define alert colors, border radius, and padding.
751
771
 
752
- //** Padding around the thumbnail image
753
- $thumbnail-padding: 4px !default;
754
- //** Thumbnail background color
755
- $thumbnail-bg: $body-bg !default;
756
- //** Thumbnail border color
757
- $thumbnail-border: #ddd !default;
758
- //** Thumbnail border radius
759
- $thumbnail-border-radius: $border-radius-base !default;
772
+ $alert-padding-y: .75rem !default;
773
+ $alert-padding-x: 1.25rem !default;
774
+ $alert-margin-bottom: 1rem !default;
775
+ $alert-border-radius: $border-radius !default;
776
+ $alert-link-font-weight: $font-weight-bold !default;
777
+ $alert-border-width: $border-width !default;
760
778
 
761
- //** Custom text color for thumbnail captions
762
- $thumbnail-caption-color: $text-color !default;
763
- //** Padding around the thumbnail caption
764
- $thumbnail-caption-padding: 9px !default;
779
+ $alert-bg-level: -10 !default;
780
+ $alert-border-level: -9 !default;
781
+ $alert-color-level: 6 !default;
765
782
 
766
783
 
767
- //== Wells
768
- //
769
- //##
784
+ // Progress bars
770
785
 
771
- $well-bg: #f5f5f5 !default;
772
- $well-border: darken($well-bg, 7%) !default;
786
+ $progress-height: 1rem !default;
787
+ $progress-font-size: ($font-size-base * .75) !default;
788
+ $progress-bg: $gray-200 !default;
789
+ $progress-border-radius: $border-radius !default;
790
+ $progress-box-shadow: inset 0 .1rem .1rem rgba($black, .1) !default;
791
+ $progress-bar-color: $white !default;
792
+ $progress-bar-bg: theme-color("primary") !default;
793
+ $progress-bar-animation-timing: 1s linear infinite !default;
794
+ $progress-bar-transition: width .6s ease !default;
773
795
 
796
+ // List group
774
797
 
775
- //== Badges
776
- //
777
- //##
798
+ $list-group-bg: $gray-200 !default;
799
+ $list-group-border-color: rgba($black, .125) !default;
800
+ $list-group-border-width: $border-width !default;
801
+ $list-group-border-radius: $border-radius !default;
778
802
 
779
- $badge-color: #fff !default;
780
- //** Linked badge text color on hover
781
- $badge-link-hover-color: #fff !default;
782
- $badge-bg: $gray-light !default;
803
+ $list-group-item-padding-y: .75rem !default;
804
+ $list-group-item-padding-x: 1.25rem !default;
783
805
 
784
- //** Badge text color in active nav link
785
- $badge-active-color: $link-color !default;
786
- //** Badge background color in active nav link
787
- $badge-active-bg: #fff !default;
806
+ $list-group-hover-bg: $gray-200 !default;
807
+ $list-group-active-color: $component-active-color !default;
808
+ $list-group-active-bg: $component-active-bg !default;
809
+ $list-group-active-border-color: $list-group-active-bg !default;
788
810
 
789
- $badge-font-weight: bold !default;
790
- $badge-line-height: 1 !default;
791
- $badge-border-radius: 10px !default;
811
+ $list-group-disabled-color: $gray-600 !default;
812
+ $list-group-disabled-bg: $list-group-bg !default;
792
813
 
814
+ $list-group-action-color: $gray-700 !default;
815
+ $list-group-action-hover-color: $list-group-action-color !default;
793
816
 
794
- //== Breadcrumbs
795
- //
796
- //##
817
+ $list-group-action-active-color: $body-color !default;
818
+ $list-group-action-active-bg: $gray-200 !default;
797
819
 
798
- $breadcrumb-padding-vertical: 8px !default;
799
- $breadcrumb-padding-horizontal: 15px !default;
800
- //** Breadcrumb background color
801
- $breadcrumb-bg: #f5f5f5 !default;
802
- //** Breadcrumb text color
803
- $breadcrumb-color: #ccc !default;
804
- //** Text color of current page in the breadcrumb
805
- $breadcrumb-active-color: $gray-light !default;
806
- //** Textual separator for between breadcrumb elements
807
- $breadcrumb-separator: "/" !default;
808
820
 
821
+ // Image thumbnails
809
822
 
810
- //== Carousel
811
- //
812
- //##
823
+ $thumbnail-padding: .25rem !default;
824
+ $thumbnail-bg: $body-bg !default;
825
+ $thumbnail-border-width: $border-width !default;
826
+ $thumbnail-border-color: $gray-300 !default;
827
+ $thumbnail-border-radius: $border-radius !default;
828
+ $thumbnail-box-shadow: 0 1px 2px rgba($black, .075) !default;
813
829
 
814
- $carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6) !default;
815
830
 
816
- $carousel-control-color: #fff !default;
817
- $carousel-control-width: 15% !default;
818
- $carousel-control-opacity: .5 !default;
819
- $carousel-control-font-size: 20px !default;
831
+ // Figures
820
832
 
821
- $carousel-indicator-active-bg: #fff !default;
822
- $carousel-indicator-border-color: #fff !default;
833
+ $figure-caption-font-size: 90% !default;
834
+ $figure-caption-color: $gray-600 !default;
823
835
 
824
- $carousel-caption-color: #fff !default;
825
836
 
837
+ // Breadcrumbs
826
838
 
827
- //== Close
828
- //
829
- //##
839
+ $breadcrumb-padding-y: .75rem !default;
840
+ $breadcrumb-padding-x: 1rem !default;
841
+ $breadcrumb-item-padding: .5rem !default;
830
842
 
831
- $close-font-weight: bold !default;
832
- $close-color: #000 !default;
833
- $close-text-shadow: 0 1px 0 #fff !default;
843
+ $breadcrumb-margin-bottom: 1rem !default;
834
844
 
845
+ $breadcrumb-bg: $gray-200 !default;
846
+ $breadcrumb-divider-color: $gray-600 !default;
847
+ $breadcrumb-active-color: $gray-600 !default;
848
+ $breadcrumb-divider: "/" !default;
835
849
 
836
- //== Code
837
- //
838
- //##
839
850
 
840
- $code-color: #c7254e !default;
841
- $code-bg: #f9f2f4 !default;
851
+ // Carousel
842
852
 
843
- $kbd-color: #fff !default;
844
- $kbd-bg: #333 !default;
853
+ $carousel-control-color: $white !default;
854
+ $carousel-control-width: 15% !default;
855
+ $carousel-control-opacity: .5 !default;
845
856
 
846
- $pre-bg: #f5f5f5 !default;
847
- $pre-color: $gray-dark !default;
848
- $pre-border-color: #ccc !default;
849
- $pre-scrollable-max-height: 340px !default;
857
+ $carousel-indicator-width: 30px !default;
858
+ $carousel-indicator-height: 3px !default;
859
+ $carousel-indicator-spacer: 3px !default;
860
+ $carousel-indicator-active-bg: $white !default;
850
861
 
862
+ $carousel-caption-width: 70% !default;
863
+ $carousel-caption-color: $white !default;
851
864
 
852
- //== Type
853
- //
854
- //##
855
-
856
- //** Horizontal offset for forms and lists.
857
- $component-offset-horizontal: 180px !default;
858
- //** Text muted color
859
- $text-muted: $gray-light !default;
860
- //** Abbreviations and acronyms border color
861
- $abbr-border-color: $gray-light !default;
862
- //** Headings small color
863
- $headings-small-color: $gray-light !default;
864
- //** Blockquote small color
865
- $blockquote-small-color: $gray-light !default;
866
- //** Blockquote font size
867
- $blockquote-font-size: $font-size-base !default;
868
- //** Blockquote border color
869
- $blockquote-border-color: $gray-lighter !default;
870
- //** Page header border color
871
- $page-header-border-color: $gray-lighter !default;
872
- //** Width of horizontal description list titles
873
- $dl-horizontal-offset: $component-offset-horizontal !default;
874
- //** Point at which .dl-horizontal becomes horizontal
875
- $dl-horizontal-breakpoint: $grid-float-breakpoint !default;
876
- //** Horizontal line color.
877
- $hr-border: $gray-lighter !default;
865
+ $carousel-control-icon-width: 20px !default;
866
+
867
+ $carousel-control-prev-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"), "#", "%23") !default;
868
+ $carousel-control-next-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"), "#", "%23") !default;
869
+
870
+ $carousel-transition: transform .6s ease !default;
871
+
872
+
873
+ // Close
874
+
875
+ $close-font-size: $font-size-base * 1.5 !default;
876
+ $close-font-weight: $font-weight-bold !default;
877
+ $close-color: $black !default;
878
+ $close-text-shadow: 0 1px 0 $white !default;
879
+
880
+ // Code
881
+
882
+ $code-font-size: 87.5% !default;
883
+ $code-color: $pink !default;
884
+
885
+ $kbd-padding-y: .2rem !default;
886
+ $kbd-padding-x: .4rem !default;
887
+ $kbd-font-size: $code-font-size !default;
888
+ $kbd-color: $white !default;
889
+ $kbd-bg: $gray-900 !default;
890
+
891
+ $pre-color: $gray-900 !default;
892
+ $pre-scrollable-max-height: 340px !default;
893
+
894
+
895
+ // Printing
896
+ $print-page-size: a3 !default;
897
+ $print-body-min-width: map-get($grid-breakpoints, "lg") !default;