loremGem 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (158) hide show
  1. checksums.yaml +7 -0
  2. data/.gitattributes +14 -0
  3. data/.gitignore +24 -0
  4. data/.travis.yml +17 -0
  5. data/CHANGELOG.md +37 -0
  6. data/CODE_OF_CONDUCT.md +49 -0
  7. data/Gemfile +12 -0
  8. data/LICENSE Bootstrap +21 -0
  9. data/LICENSE Lorem.txt +21 -0
  10. data/README.md +35 -0
  11. data/Rakefile +80 -0
  12. data/assets/javascript/bootstrap/alert.js +177 -0
  13. data/assets/javascript/bootstrap/button.js +166 -0
  14. data/assets/javascript/bootstrap/carousel.js +507 -0
  15. data/assets/javascript/bootstrap/collapse.js +366 -0
  16. data/assets/javascript/bootstrap/dropdown.js +488 -0
  17. data/assets/javascript/bootstrap/modal.js +584 -0
  18. data/assets/javascript/bootstrap/popover.js +205 -0
  19. data/assets/javascript/bootstrap/scrollspy.js +318 -0
  20. data/assets/javascript/bootstrap/tab.js +250 -0
  21. data/assets/javascript/bootstrap/tooltip.js +673 -0
  22. data/assets/javascript/bootstrap/util.js +131 -0
  23. data/assets/javascript/bootstrap-sprockets.js +11 -0
  24. data/assets/javascript/bootstrap.js +3926 -0
  25. data/assets/javascript/bootstrap.min.js +6 -0
  26. data/assets/javascript/lorem.js +24044 -0
  27. data/assets/stylesheets/_bootstrap-grid.scss +32 -0
  28. data/assets/stylesheets/_bootstrap-reboot.scss +12 -0
  29. data/assets/stylesheets/_bootstrap.scss +42 -0
  30. data/assets/stylesheets/bootstrap/_alert.scss +51 -0
  31. data/assets/stylesheets/bootstrap/_badge.scss +47 -0
  32. data/assets/stylesheets/bootstrap/_breadcrumb.scss +41 -0
  33. data/assets/stylesheets/bootstrap/_button-group.scss +172 -0
  34. data/assets/stylesheets/bootstrap/_buttons.scss +144 -0
  35. data/assets/stylesheets/bootstrap/_card.scss +301 -0
  36. data/assets/stylesheets/bootstrap/_carousel.scss +236 -0
  37. data/assets/stylesheets/bootstrap/_close.scss +34 -0
  38. data/assets/stylesheets/bootstrap/_code.scss +48 -0
  39. data/assets/stylesheets/bootstrap/_custom-forms.scss +421 -0
  40. data/assets/stylesheets/bootstrap/_dropdown.scss +166 -0
  41. data/assets/stylesheets/bootstrap/_forms.scss +335 -0
  42. data/assets/stylesheets/bootstrap/_functions.scss +86 -0
  43. data/assets/stylesheets/bootstrap/_grid.scss +52 -0
  44. data/assets/stylesheets/bootstrap/_images.scss +42 -0
  45. data/assets/stylesheets/bootstrap/_input-group.scss +158 -0
  46. data/assets/stylesheets/bootstrap/_jumbotron.scss +16 -0
  47. data/assets/stylesheets/bootstrap/_list-group.scss +115 -0
  48. data/assets/stylesheets/bootstrap/_media.scss +8 -0
  49. data/assets/stylesheets/bootstrap/_mixins.scss +41 -0
  50. data/assets/stylesheets/bootstrap/_modal.scss +168 -0
  51. data/assets/stylesheets/bootstrap/_nav.scss +118 -0
  52. data/assets/stylesheets/bootstrap/_navbar.scss +299 -0
  53. data/assets/stylesheets/bootstrap/_pagination.scss +78 -0
  54. data/assets/stylesheets/bootstrap/_popover.scss +183 -0
  55. data/assets/stylesheets/bootstrap/_print.scss +141 -0
  56. data/assets/stylesheets/bootstrap/_progress.scss +34 -0
  57. data/assets/stylesheets/bootstrap/_reboot.scss +480 -0
  58. data/assets/stylesheets/bootstrap/_root.scss +19 -0
  59. data/assets/stylesheets/bootstrap/_tables.scss +188 -0
  60. data/assets/stylesheets/bootstrap/_tooltip.scss +115 -0
  61. data/assets/stylesheets/bootstrap/_transitions.scss +22 -0
  62. data/assets/stylesheets/bootstrap/_type.scss +125 -0
  63. data/assets/stylesheets/bootstrap/_utilities.scss +15 -0
  64. data/assets/stylesheets/bootstrap/_variables.scss +929 -0
  65. data/assets/stylesheets/bootstrap/mixins/_alert.scss +13 -0
  66. data/assets/stylesheets/bootstrap/mixins/_background-variant.scss +21 -0
  67. data/assets/stylesheets/bootstrap/mixins/_badge.scss +12 -0
  68. data/assets/stylesheets/bootstrap/mixins/_border-radius.scss +35 -0
  69. data/assets/stylesheets/bootstrap/mixins/_box-shadow.scss +5 -0
  70. data/assets/stylesheets/bootstrap/mixins/_breakpoints.scss +123 -0
  71. data/assets/stylesheets/bootstrap/mixins/_buttons.scss +109 -0
  72. data/assets/stylesheets/bootstrap/mixins/_caret.scss +66 -0
  73. data/assets/stylesheets/bootstrap/mixins/_clearfix.scss +7 -0
  74. data/assets/stylesheets/bootstrap/mixins/_float.scss +11 -0
  75. data/assets/stylesheets/bootstrap/mixins/_forms.scss +147 -0
  76. data/assets/stylesheets/bootstrap/mixins/_gradients.scss +45 -0
  77. data/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +67 -0
  78. data/assets/stylesheets/bootstrap/mixins/_grid.scss +52 -0
  79. data/assets/stylesheets/bootstrap/mixins/_hover.scss +37 -0
  80. data/assets/stylesheets/bootstrap/mixins/_image.scss +36 -0
  81. data/assets/stylesheets/bootstrap/mixins/_list-group.scss +21 -0
  82. data/assets/stylesheets/bootstrap/mixins/_lists.scss +7 -0
  83. data/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
  84. data/assets/stylesheets/bootstrap/mixins/_pagination.scss +22 -0
  85. data/assets/stylesheets/bootstrap/mixins/_reset-text.scss +17 -0
  86. data/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
  87. data/assets/stylesheets/bootstrap/mixins/_screen-reader.scss +33 -0
  88. data/assets/stylesheets/bootstrap/mixins/_size.scss +6 -0
  89. data/assets/stylesheets/bootstrap/mixins/_table-row.scss +30 -0
  90. data/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +14 -0
  91. data/assets/stylesheets/bootstrap/mixins/_text-hide.scss +13 -0
  92. data/assets/stylesheets/bootstrap/mixins/_text-truncate.scss +8 -0
  93. data/assets/stylesheets/bootstrap/mixins/_transition.scss +13 -0
  94. data/assets/stylesheets/bootstrap/mixins/_visibility.scss +7 -0
  95. data/assets/stylesheets/bootstrap/utilities/_align.scss +8 -0
  96. data/assets/stylesheets/bootstrap/utilities/_background.scss +19 -0
  97. data/assets/stylesheets/bootstrap/utilities/_borders.scss +59 -0
  98. data/assets/stylesheets/bootstrap/utilities/_clearfix.scss +3 -0
  99. data/assets/stylesheets/bootstrap/utilities/_display.scss +38 -0
  100. data/assets/stylesheets/bootstrap/utilities/_embed.scss +52 -0
  101. data/assets/stylesheets/bootstrap/utilities/_flex.scss +51 -0
  102. data/assets/stylesheets/bootstrap/utilities/_float.scss +9 -0
  103. data/assets/stylesheets/bootstrap/utilities/_position.scss +37 -0
  104. data/assets/stylesheets/bootstrap/utilities/_screenreaders.scss +11 -0
  105. data/assets/stylesheets/bootstrap/utilities/_shadows.scss +6 -0
  106. data/assets/stylesheets/bootstrap/utilities/_sizing.scss +12 -0
  107. data/assets/stylesheets/bootstrap/utilities/_spacing.scss +51 -0
  108. data/assets/stylesheets/bootstrap/utilities/_text.scss +58 -0
  109. data/assets/stylesheets/bootstrap/utilities/_visibility.scss +11 -0
  110. data/assets/stylesheets/lorem.css +23980 -0
  111. data/bin/console +14 -0
  112. data/bin/setup +8 -0
  113. data/lib/loremGem/engine.rb +12 -0
  114. data/lib/loremGem/version.rb +4 -0
  115. data/lib/loremGem.rb +74 -0
  116. data/loremGem.gemspec +50 -0
  117. data/tasks/updater/js.rb +68 -0
  118. data/tasks/updater/logger.rb +57 -0
  119. data/tasks/updater/network.rb +103 -0
  120. data/tasks/updater/scss.rb +26 -0
  121. data/tasks/updater.rb +67 -0
  122. data/test/dummy_rails/README.rdoc +3 -0
  123. data/test/dummy_rails/Rakefile +6 -0
  124. data/test/dummy_rails/app/assets/images/.keep +0 -0
  125. data/test/dummy_rails/app/assets/javascripts/application.js +7 -0
  126. data/test/dummy_rails/app/assets/stylesheets/application.sass +4 -0
  127. data/test/dummy_rails/app/controllers/application_controller.rb +5 -0
  128. data/test/dummy_rails/app/controllers/pages_controller.rb +4 -0
  129. data/test/dummy_rails/app/helpers/application_helper.rb +2 -0
  130. data/test/dummy_rails/app/views/layouts/application.html.erb +14 -0
  131. data/test/dummy_rails/app/views/pages/root.html.slim +58 -0
  132. data/test/dummy_rails/config/application.rb +34 -0
  133. data/test/dummy_rails/config/boot.rb +5 -0
  134. data/test/dummy_rails/config/environment.rb +5 -0
  135. data/test/dummy_rails/config/environments/development.rb +23 -0
  136. data/test/dummy_rails/config/environments/production.rb +82 -0
  137. data/test/dummy_rails/config/environments/test.rb +38 -0
  138. data/test/dummy_rails/config/initializers/backtrace_silencers.rb +7 -0
  139. data/test/dummy_rails/config/initializers/filter_parameter_logging.rb +4 -0
  140. data/test/dummy_rails/config/initializers/inflections.rb +16 -0
  141. data/test/dummy_rails/config/initializers/mime_types.rb +5 -0
  142. data/test/dummy_rails/config/initializers/secret_token.rb +18 -0
  143. data/test/dummy_rails/config/initializers/session_store.rb +3 -0
  144. data/test/dummy_rails/config/initializers/wrap_parameters.rb +14 -0
  145. data/test/dummy_rails/config/locales/en.yml +3 -0
  146. data/test/dummy_rails/config/locales/es.yml +3 -0
  147. data/test/dummy_rails/config/routes.rb +3 -0
  148. data/test/dummy_rails/config.ru +4 -0
  149. data/test/dummy_rails/log/.keep +0 -0
  150. data/test/gemfiles/rails_4_2.gemfile +7 -0
  151. data/test/gemfiles/rails_5_0.gemfile +8 -0
  152. data/test/gemfiles/rails_5_1.gemfile +8 -0
  153. data/test/rails_test.rb +24 -0
  154. data/test/support/dummy_rails_integration.rb +29 -0
  155. data/test/support/reporting.rb +27 -0
  156. data/test/test_helper.rb +35 -0
  157. data/test/test_helper_rails.rb +6 -0
  158. metadata +480 -0
@@ -0,0 +1,929 @@
1
+ // Variables
2
+ //
3
+ // Variables should follow the `$component-state-property-size` formula for
4
+ // consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
5
+
6
+
7
+ //
8
+ // Color system
9
+ //
10
+
11
+ // stylelint-disable
12
+ $white: #fff !default;
13
+ $gray-100: #f8f9fa !default;
14
+ $gray-200: #e9ecef !default;
15
+ $gray-300: #dee2e6 !default;
16
+ $gray-400: #ced4da !default;
17
+ $gray-500: #adb5bd !default;
18
+ $gray-600: #6c757d !default;
19
+ $gray-700: #495057 !default;
20
+ $gray-800: #343a40 !default;
21
+ $gray-900: #212529 !default;
22
+ $black: #000 !default;
23
+
24
+ $grays: () !default;
25
+ $grays: map-merge((
26
+ "100": $gray-100,
27
+ "200": $gray-200,
28
+ "300": $gray-300,
29
+ "400": $gray-400,
30
+ "500": $gray-500,
31
+ "600": $gray-600,
32
+ "700": $gray-700,
33
+ "800": $gray-800,
34
+ "900": $gray-900
35
+ ), $grays);
36
+
37
+ $blue: #007bff !default;
38
+ $indigo: #6610f2 !default;
39
+ $purple: #6f42c1 !default;
40
+ $pink: #e83e8c !default;
41
+ $red: #dc3545 !default;
42
+ $orange: #fd7e14 !default;
43
+ $yellow: #ffc107 !default;
44
+ $green: #28a745 !default;
45
+ $teal: #20c997 !default;
46
+ $cyan: #17a2b8 !default;
47
+
48
+ $colors: () !default;
49
+ $colors: map-merge((
50
+ "blue": $blue,
51
+ "indigo": $indigo,
52
+ "purple": $purple,
53
+ "pink": $pink,
54
+ "red": $red,
55
+ "orange": $orange,
56
+ "yellow": $yellow,
57
+ "green": $green,
58
+ "teal": $teal,
59
+ "cyan": $cyan,
60
+ "white": $white,
61
+ "gray": $gray-600,
62
+ "gray-dark": $gray-800
63
+ ), $colors);
64
+
65
+ $primary: $blue !default;
66
+ $secondary: $gray-600 !default;
67
+ $success: $green !default;
68
+ $info: $cyan !default;
69
+ $warning: $yellow !default;
70
+ $danger: $red !default;
71
+ $light: $gray-100 !default;
72
+ $dark: $gray-800 !default;
73
+
74
+ $theme-colors: () !default;
75
+ $theme-colors: map-merge((
76
+ "primary": $primary,
77
+ "secondary": $secondary,
78
+ "success": $success,
79
+ "info": $info,
80
+ "warning": $warning,
81
+ "danger": $danger,
82
+ "light": $light,
83
+ "dark": $dark
84
+ ), $theme-colors);
85
+ // stylelint-enable
86
+
87
+ // Set a specific jump point for requesting color jumps
88
+ $theme-color-interval: 8% !default;
89
+
90
+ // The yiq lightness value that determines when the lightness of color changes from "dark" to "light". Acceptable values are between 0 and 255.
91
+ $yiq-contrasted-threshold: 150 !default;
92
+
93
+ // Customize the light and dark text colors for use in our YIQ color contrast function.
94
+ $yiq-text-dark: $gray-900 !default;
95
+ $yiq-text-light: $white !default;
96
+
97
+ // Options
98
+ //
99
+ // Quickly modify global styling by enabling or disabling optional features.
100
+
101
+ $enable-caret: true !default;
102
+ $enable-rounded: true !default;
103
+ $enable-shadows: false !default;
104
+ $enable-gradients: false !default;
105
+ $enable-transitions: true !default;
106
+ $enable-hover-media-query: false !default; // Deprecated, no longer affects any compiled CSS
107
+ $enable-grid-classes: true !default;
108
+ $enable-print-styles: true !default;
109
+
110
+
111
+ // Spacing
112
+ //
113
+ // Control the default styling of most Bootstrap elements by modifying these
114
+ // variables. Mostly focused on spacing.
115
+ // You can add more entries to the $spacers map, should you need more variation.
116
+
117
+ // stylelint-disable
118
+ $spacer: 1rem !default;
119
+ $spacers: () !default;
120
+ $spacers: map-merge((
121
+ 0: 0,
122
+ 1: ($spacer * .25),
123
+ 2: ($spacer * .5),
124
+ 3: $spacer,
125
+ 4: ($spacer * 1.5),
126
+ 5: ($spacer * 3)
127
+ ), $spacers);
128
+
129
+ // This variable affects the `.h-*` and `.w-*` classes.
130
+ $sizes: () !default;
131
+ $sizes: map-merge((
132
+ 25: 25%,
133
+ 50: 50%,
134
+ 75: 75%,
135
+ 100: 100%,
136
+ auto: auto
137
+ ), $sizes);
138
+ // stylelint-enable
139
+
140
+ // Body
141
+ //
142
+ // Settings for the `<body>` element.
143
+
144
+ $body-bg: $white !default;
145
+ $body-color: $gray-900 !default;
146
+
147
+ // Links
148
+ //
149
+ // Style anchor elements.
150
+
151
+ $link-color: theme-color("primary") !default;
152
+ $link-decoration: none !default;
153
+ $link-hover-color: darken($link-color, 15%) !default;
154
+ $link-hover-decoration: underline !default;
155
+
156
+ // Paragraphs
157
+ //
158
+ // Style p element.
159
+
160
+ $paragraph-margin-bottom: 1rem !default;
161
+
162
+
163
+ // Grid breakpoints
164
+ //
165
+ // Define the minimum dimensions at which your layout will change,
166
+ // adapting to different screen sizes, for use in media queries.
167
+
168
+ $grid-breakpoints: (
169
+ xs: 0,
170
+ sm: 576px,
171
+ md: 768px,
172
+ lg: 992px,
173
+ xl: 1200px
174
+ ) !default;
175
+
176
+ @include _assert-ascending($grid-breakpoints, "$grid-breakpoints");
177
+ @include _assert-starts-at-zero($grid-breakpoints);
178
+
179
+
180
+ // Grid containers
181
+ //
182
+ // Define the maximum width of `.container` for different screen sizes.
183
+
184
+ $container-max-widths: (
185
+ sm: 540px,
186
+ md: 720px,
187
+ lg: 960px,
188
+ xl: 1140px
189
+ ) !default;
190
+
191
+ @include _assert-ascending($container-max-widths, "$container-max-widths");
192
+
193
+
194
+ // Grid columns
195
+ //
196
+ // Set the number of columns and specify the width of the gutters.
197
+
198
+ $grid-columns: 12 !default;
199
+ $grid-gutter-width: 30px !default;
200
+
201
+ // Components
202
+ //
203
+ // Define common padding and border radius sizes and more.
204
+
205
+ $line-height-lg: 1.5 !default;
206
+ $line-height-sm: 1.5 !default;
207
+
208
+ $border-width: 1px !default;
209
+ $border-color: $gray-300 !default;
210
+
211
+ $border-radius: .25rem !default;
212
+ $border-radius-lg: .3rem !default;
213
+ $border-radius-sm: .2rem !default;
214
+
215
+ $box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;
216
+ $box-shadow: 0 .5rem 1rem rgba($black, .15) !default;
217
+ $box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;
218
+
219
+ $component-active-color: $white !default;
220
+ $component-active-bg: theme-color("primary") !default;
221
+
222
+ $caret-width: .3em !default;
223
+
224
+ $transition-base: all .2s ease-in-out !default;
225
+ $transition-fade: opacity .15s linear !default;
226
+ $transition-collapse: height .35s ease !default;
227
+
228
+
229
+ // Fonts
230
+ //
231
+ // Font, line-height, and color for body text, headings, and more.
232
+
233
+ // stylelint-disable value-keyword-case
234
+ $font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
235
+ $font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
236
+ $font-family-base: $font-family-sans-serif !default;
237
+ // stylelint-enable value-keyword-case
238
+
239
+ $font-size-base: 1rem !default; // Assumes the browser default, typically `16px`
240
+ $font-size-lg: ($font-size-base * 1.25) !default;
241
+ $font-size-sm: ($font-size-base * .875) !default;
242
+
243
+ $font-weight-light: 300 !default;
244
+ $font-weight-normal: 400 !default;
245
+ $font-weight-bold: 700 !default;
246
+
247
+ $font-weight-base: $font-weight-normal !default;
248
+ $line-height-base: 1.5 !default;
249
+
250
+ $h1-font-size: $font-size-base * 2.5 !default;
251
+ $h2-font-size: $font-size-base * 2 !default;
252
+ $h3-font-size: $font-size-base * 1.75 !default;
253
+ $h4-font-size: $font-size-base * 1.5 !default;
254
+ $h5-font-size: $font-size-base * 1.25 !default;
255
+ $h6-font-size: $font-size-base !default;
256
+
257
+ $headings-margin-bottom: ($spacer / 2) !default;
258
+ $headings-font-family: inherit !default;
259
+ $headings-font-weight: 500 !default;
260
+ $headings-line-height: 1.2 !default;
261
+ $headings-color: inherit !default;
262
+
263
+ $display1-size: 6rem !default;
264
+ $display2-size: 5.5rem !default;
265
+ $display3-size: 4.5rem !default;
266
+ $display4-size: 3.5rem !default;
267
+
268
+ $display1-weight: 300 !default;
269
+ $display2-weight: 300 !default;
270
+ $display3-weight: 300 !default;
271
+ $display4-weight: 300 !default;
272
+ $display-line-height: $headings-line-height !default;
273
+
274
+ $lead-font-size: ($font-size-base * 1.25) !default;
275
+ $lead-font-weight: 300 !default;
276
+
277
+ $small-font-size: 80% !default;
278
+
279
+ $text-muted: $gray-600 !default;
280
+
281
+ $blockquote-small-color: $gray-600 !default;
282
+ $blockquote-font-size: ($font-size-base * 1.25) !default;
283
+
284
+ $hr-border-color: rgba($black, .1) !default;
285
+ $hr-border-width: $border-width !default;
286
+
287
+ $mark-padding: .2em !default;
288
+
289
+ $dt-font-weight: $font-weight-bold !default;
290
+
291
+ $kbd-box-shadow: inset 0 -.1rem 0 rgba($black, .25) !default;
292
+ $nested-kbd-font-weight: $font-weight-bold !default;
293
+
294
+ $list-inline-padding: .5rem !default;
295
+
296
+ $mark-bg: #fcf8e3 !default;
297
+
298
+ $hr-margin-y: $spacer !default;
299
+
300
+
301
+ // Tables
302
+ //
303
+ // Customizes the `.table` component with basic values, each used across all table variations.
304
+
305
+ $table-cell-padding: .75rem !default;
306
+ $table-cell-padding-sm: .3rem !default;
307
+
308
+ $table-bg: transparent !default;
309
+ $table-accent-bg: rgba($black, .05) !default;
310
+ $table-hover-bg: rgba($black, .075) !default;
311
+ $table-active-bg: $table-hover-bg !default;
312
+
313
+ $table-border-width: $border-width !default;
314
+ $table-border-color: $gray-300 !default;
315
+
316
+ $table-head-bg: $gray-200 !default;
317
+ $table-head-color: $gray-700 !default;
318
+
319
+ $table-dark-bg: $gray-900 !default;
320
+ $table-dark-accent-bg: rgba($white, .05) !default;
321
+ $table-dark-hover-bg: rgba($white, .075) !default;
322
+ $table-dark-border-color: lighten($gray-900, 7.5%) !default;
323
+ $table-dark-color: $body-bg !default;
324
+
325
+ $table-striped-order: odd !default;
326
+
327
+ $table-caption-color: $text-muted !default;
328
+
329
+ // Buttons + Forms
330
+ //
331
+ // Shared variables that are reassigned to `$input-` and `$btn-` specific variables.
332
+
333
+ $input-btn-padding-y: .375rem !default;
334
+ $input-btn-padding-x: .75rem !default;
335
+ $input-btn-line-height: $line-height-base !default;
336
+
337
+ $input-btn-focus-width: .2rem !default;
338
+ $input-btn-focus-color: rgba($component-active-bg, .25) !default;
339
+ $input-btn-focus-box-shadow: 0 0 0 $input-btn-focus-width $input-btn-focus-color !default;
340
+
341
+ $input-btn-padding-y-sm: .25rem !default;
342
+ $input-btn-padding-x-sm: .5rem !default;
343
+ $input-btn-line-height-sm: $line-height-sm !default;
344
+
345
+ $input-btn-padding-y-lg: .5rem !default;
346
+ $input-btn-padding-x-lg: 1rem !default;
347
+ $input-btn-line-height-lg: $line-height-lg !default;
348
+
349
+ $input-btn-border-width: $border-width !default;
350
+
351
+
352
+ // Buttons
353
+ //
354
+ // For each of Bootstrap's buttons, define text, background, and border color.
355
+
356
+ $btn-padding-y: $input-btn-padding-y !default;
357
+ $btn-padding-x: $input-btn-padding-x !default;
358
+ $btn-line-height: $input-btn-line-height !default;
359
+
360
+ $btn-padding-y-sm: $input-btn-padding-y-sm !default;
361
+ $btn-padding-x-sm: $input-btn-padding-x-sm !default;
362
+ $btn-line-height-sm: $input-btn-line-height-sm !default;
363
+
364
+ $btn-padding-y-lg: $input-btn-padding-y-lg !default;
365
+ $btn-padding-x-lg: $input-btn-padding-x-lg !default;
366
+ $btn-line-height-lg: $input-btn-line-height-lg !default;
367
+
368
+ $btn-border-width: $input-btn-border-width !default;
369
+
370
+ $btn-font-weight: $font-weight-normal !default;
371
+ $btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;
372
+ $btn-focus-width: $input-btn-focus-width !default;
373
+ $btn-focus-box-shadow: $input-btn-focus-box-shadow !default;
374
+ $btn-disabled-opacity: .65 !default;
375
+ $btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;
376
+
377
+ $btn-link-disabled-color: $gray-600 !default;
378
+
379
+ $btn-block-spacing-y: .5rem !default;
380
+
381
+ // Allows for customizing button radius independently from global border radius
382
+ $btn-border-radius: $border-radius !default;
383
+ $btn-border-radius-lg: $border-radius-lg !default;
384
+ $btn-border-radius-sm: $border-radius-sm !default;
385
+
386
+ $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;
387
+
388
+
389
+ // Forms
390
+
391
+ $label-margin-bottom: .5rem !default;
392
+
393
+ $input-padding-y: $input-btn-padding-y !default;
394
+ $input-padding-x: $input-btn-padding-x !default;
395
+ $input-line-height: $input-btn-line-height !default;
396
+
397
+ $input-padding-y-sm: $input-btn-padding-y-sm !default;
398
+ $input-padding-x-sm: $input-btn-padding-x-sm !default;
399
+ $input-line-height-sm: $input-btn-line-height-sm !default;
400
+
401
+ $input-padding-y-lg: $input-btn-padding-y-lg !default;
402
+ $input-padding-x-lg: $input-btn-padding-x-lg !default;
403
+ $input-line-height-lg: $input-btn-line-height-lg !default;
404
+
405
+ $input-bg: $white !default;
406
+ $input-disabled-bg: $gray-200 !default;
407
+
408
+ $input-color: $gray-700 !default;
409
+ $input-border-color: $gray-400 !default;
410
+ $input-border-width: $input-btn-border-width !default;
411
+ $input-box-shadow: inset 0 1px 1px rgba($black, .075) !default;
412
+
413
+ $input-border-radius: $border-radius !default;
414
+ $input-border-radius-lg: $border-radius-lg !default;
415
+ $input-border-radius-sm: $border-radius-sm !default;
416
+
417
+ $input-focus-bg: $input-bg !default;
418
+ $input-focus-border-color: lighten($component-active-bg, 25%) !default;
419
+ $input-focus-color: $input-color !default;
420
+ $input-focus-width: $input-btn-focus-width !default;
421
+ $input-focus-box-shadow: $input-btn-focus-box-shadow !default;
422
+
423
+ $input-placeholder-color: $gray-600 !default;
424
+ $input-plaintext-color: $body-color !default;
425
+
426
+ $input-height-border: $input-border-width * 2 !default;
427
+
428
+ $input-height-inner: ($font-size-base * $input-btn-line-height) + ($input-btn-padding-y * 2) !default;
429
+ $input-height: calc(#{$input-height-inner} + #{$input-height-border}) !default;
430
+
431
+ $input-height-inner-sm: ($font-size-sm * $input-btn-line-height-sm) + ($input-btn-padding-y-sm * 2) !default;
432
+ $input-height-sm: calc(#{$input-height-inner-sm} + #{$input-height-border}) !default;
433
+
434
+ $input-height-inner-lg: ($font-size-lg * $input-btn-line-height-lg) + ($input-btn-padding-y-lg * 2) !default;
435
+ $input-height-lg: calc(#{$input-height-inner-lg} + #{$input-height-border}) !default;
436
+
437
+ $input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
438
+
439
+ $form-text-margin-top: .25rem !default;
440
+
441
+ $form-check-input-gutter: 1.25rem !default;
442
+ $form-check-input-margin-y: .3rem !default;
443
+ $form-check-input-margin-x: .25rem !default;
444
+
445
+ $form-check-inline-margin-x: .75rem !default;
446
+ $form-check-inline-input-margin-x: .3125rem !default;
447
+
448
+ $form-group-margin-bottom: 1rem !default;
449
+
450
+ $input-group-addon-color: $input-color !default;
451
+ $input-group-addon-bg: $gray-200 !default;
452
+ $input-group-addon-border-color: $input-border-color !default;
453
+
454
+ $custom-control-gutter: 1.5rem !default;
455
+ $custom-control-spacer-x: 1rem !default;
456
+
457
+ $custom-control-indicator-size: 1rem !default;
458
+ $custom-control-indicator-bg: $gray-300 !default;
459
+ $custom-control-indicator-bg-size: 50% 50% !default;
460
+ $custom-control-indicator-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default;
461
+
462
+ $custom-control-indicator-disabled-bg: $gray-200 !default;
463
+ $custom-control-label-disabled-color: $gray-600 !default;
464
+
465
+ $custom-control-indicator-checked-color: $component-active-color !default;
466
+ $custom-control-indicator-checked-bg: $component-active-bg !default;
467
+ $custom-control-indicator-checked-disabled-bg: rgba(theme-color("primary"), .5) !default;
468
+ $custom-control-indicator-checked-box-shadow: none !default;
469
+
470
+ $custom-control-indicator-focus-box-shadow: 0 0 0 1px $body-bg, $input-btn-focus-box-shadow !default;
471
+
472
+ $custom-control-indicator-active-color: $component-active-color !default;
473
+ $custom-control-indicator-active-bg: lighten($component-active-bg, 35%) !default;
474
+ $custom-control-indicator-active-box-shadow: none !default;
475
+
476
+ $custom-checkbox-indicator-border-radius: $border-radius !default;
477
+ $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;
478
+
479
+ $custom-checkbox-indicator-indeterminate-bg: $component-active-bg !default;
480
+ $custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color !default;
481
+ $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;
482
+ $custom-checkbox-indicator-indeterminate-box-shadow: none !default;
483
+
484
+ $custom-radio-indicator-border-radius: 50% !default;
485
+ $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;
486
+
487
+ $custom-select-padding-y: .375rem !default;
488
+ $custom-select-padding-x: .75rem !default;
489
+ $custom-select-height: $input-height !default;
490
+ $custom-select-indicator-padding: 1rem !default; // Extra padding to account for the presence of the background-image based indicator
491
+ $custom-select-line-height: $input-btn-line-height !default;
492
+ $custom-select-color: $input-color !default;
493
+ $custom-select-disabled-color: $gray-600 !default;
494
+ $custom-select-bg: $input-bg !default;
495
+ $custom-select-disabled-bg: $gray-200 !default;
496
+ $custom-select-bg-size: 8px 10px !default; // In pixels because image dimensions
497
+ $custom-select-indicator-color: $gray-800 !default;
498
+ $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;
499
+ $custom-select-border-width: $input-btn-border-width !default;
500
+ $custom-select-border-color: $input-border-color !default;
501
+ $custom-select-border-radius: $border-radius !default;
502
+
503
+ $custom-select-focus-border-color: $input-focus-border-color !default;
504
+ $custom-select-focus-box-shadow: inset 0 1px 2px rgba($black, .075), 0 0 5px rgba($custom-select-focus-border-color, .5) !default;
505
+
506
+ $custom-select-font-size-sm: 75% !default;
507
+ $custom-select-height-sm: $input-height-sm !default;
508
+
509
+ $custom-select-font-size-lg: 125% !default;
510
+ $custom-select-height-lg: $input-height-lg !default;
511
+
512
+ $custom-range-track-width: 100% !default;
513
+ $custom-range-track-height: .5rem !default;
514
+ $custom-range-track-cursor: pointer !default;
515
+ $custom-range-track-bg: $gray-300 !default;
516
+ $custom-range-track-border-radius: 1rem !default;
517
+ $custom-range-track-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default;
518
+
519
+ $custom-range-thumb-width: 1rem !default;
520
+ $custom-range-thumb-height: $custom-range-thumb-width !default;
521
+ $custom-range-thumb-bg: $component-active-bg !default;
522
+ $custom-range-thumb-border: 0 !default;
523
+ $custom-range-thumb-border-radius: 1rem !default;
524
+ $custom-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default;
525
+ $custom-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-btn-focus-box-shadow !default;
526
+ $custom-range-thumb-active-bg: lighten($component-active-bg, 35%) !default;
527
+
528
+ $custom-file-height: $input-height !default;
529
+ $custom-file-height-inner: $input-height-inner !default;
530
+ $custom-file-focus-border-color: $input-focus-border-color !default;
531
+ $custom-file-focus-box-shadow: $input-btn-focus-box-shadow !default;
532
+
533
+ $custom-file-padding-y: $input-btn-padding-y !default;
534
+ $custom-file-padding-x: $input-btn-padding-x !default;
535
+ $custom-file-line-height: $input-btn-line-height !default;
536
+ $custom-file-color: $input-color !default;
537
+ $custom-file-bg: $input-bg !default;
538
+ $custom-file-border-width: $input-btn-border-width !default;
539
+ $custom-file-border-color: $input-border-color !default;
540
+ $custom-file-border-radius: $input-border-radius !default;
541
+ $custom-file-box-shadow: $input-box-shadow !default;
542
+ $custom-file-button-color: $custom-file-color !default;
543
+ $custom-file-button-bg: $input-group-addon-bg !default;
544
+ $custom-file-text: (
545
+ en: "Browse"
546
+ ) !default;
547
+
548
+
549
+ // Form validation
550
+ $form-feedback-margin-top: $form-text-margin-top !default;
551
+ $form-feedback-font-size: $small-font-size !default;
552
+ $form-feedback-valid-color: theme-color("success") !default;
553
+ $form-feedback-invalid-color: theme-color("danger") !default;
554
+
555
+
556
+ // Dropdowns
557
+ //
558
+ // Dropdown menu container and contents.
559
+
560
+ $dropdown-min-width: 10rem !default;
561
+ $dropdown-padding-y: .5rem !default;
562
+ $dropdown-spacer: .125rem !default;
563
+ $dropdown-bg: $white !default;
564
+ $dropdown-border-color: rgba($black, .15) !default;
565
+ $dropdown-border-radius: $border-radius !default;
566
+ $dropdown-border-width: $border-width !default;
567
+ $dropdown-divider-bg: $gray-200 !default;
568
+ $dropdown-box-shadow: 0 .5rem 1rem rgba($black, .175) !default;
569
+
570
+ $dropdown-link-color: $gray-900 !default;
571
+ $dropdown-link-hover-color: darken($gray-900, 5%) !default;
572
+ $dropdown-link-hover-bg: $gray-100 !default;
573
+
574
+ $dropdown-link-active-color: $component-active-color !default;
575
+ $dropdown-link-active-bg: $component-active-bg !default;
576
+
577
+ $dropdown-link-disabled-color: $gray-600 !default;
578
+
579
+ $dropdown-item-padding-y: .25rem !default;
580
+ $dropdown-item-padding-x: 1.5rem !default;
581
+
582
+ $dropdown-header-color: $gray-600 !default;
583
+
584
+
585
+ // Z-index master list
586
+ //
587
+ // Warning: Avoid customizing these values. They're used for a bird's eye view
588
+ // of components dependent on the z-axis and are designed to all work together.
589
+
590
+ $zindex-dropdown: 1000 !default;
591
+ $zindex-sticky: 1020 !default;
592
+ $zindex-fixed: 1030 !default;
593
+ $zindex-modal-backdrop: 1040 !default;
594
+ $zindex-modal: 1050 !default;
595
+ $zindex-popover: 1060 !default;
596
+ $zindex-tooltip: 1070 !default;
597
+
598
+ // Navs
599
+
600
+ $nav-link-padding-y: .5rem !default;
601
+ $nav-link-padding-x: 1rem !default;
602
+ $nav-link-disabled-color: $gray-600 !default;
603
+
604
+ $nav-tabs-border-color: $gray-300 !default;
605
+ $nav-tabs-border-width: $border-width !default;
606
+ $nav-tabs-border-radius: $border-radius !default;
607
+ $nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default;
608
+ $nav-tabs-link-active-color: $gray-700 !default;
609
+ $nav-tabs-link-active-bg: $body-bg !default;
610
+ $nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;
611
+
612
+ $nav-pills-border-radius: $border-radius !default;
613
+ $nav-pills-link-active-color: $component-active-color !default;
614
+ $nav-pills-link-active-bg: $component-active-bg !default;
615
+
616
+ $nav-divider-color: $gray-200 !default;
617
+ $nav-divider-margin-y: ($spacer / 2) !default;
618
+
619
+ // Navbar
620
+
621
+ $navbar-padding-y: ($spacer / 2) !default;
622
+ $navbar-padding-x: $spacer !default;
623
+
624
+ $navbar-nav-link-padding-x: .5rem !default;
625
+
626
+ $navbar-brand-font-size: $font-size-lg !default;
627
+ // Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link
628
+ $nav-link-height: ($font-size-base * $line-height-base + $nav-link-padding-y * 2) !default;
629
+ $navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;
630
+ $navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) / 2 !default;
631
+
632
+ $navbar-toggler-padding-y: .25rem !default;
633
+ $navbar-toggler-padding-x: .75rem !default;
634
+ $navbar-toggler-font-size: $font-size-lg !default;
635
+ $navbar-toggler-border-radius: $btn-border-radius !default;
636
+
637
+ $navbar-dark-color: rgba($white, .5) !default;
638
+ $navbar-dark-hover-color: rgba($white, .75) !default;
639
+ $navbar-dark-active-color: $white !default;
640
+ $navbar-dark-disabled-color: rgba($white, .25) !default;
641
+ $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;
642
+ $navbar-dark-toggler-border-color: rgba($white, .1) !default;
643
+
644
+ $navbar-light-color: rgba($black, .5) !default;
645
+ $navbar-light-hover-color: rgba($black, .7) !default;
646
+ $navbar-light-active-color: rgba($black, .9) !default;
647
+ $navbar-light-disabled-color: rgba($black, .3) !default;
648
+ $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;
649
+ $navbar-light-toggler-border-color: rgba($black, .1) !default;
650
+
651
+ // Pagination
652
+
653
+ $pagination-padding-y: .5rem !default;
654
+ $pagination-padding-x: .75rem !default;
655
+ $pagination-padding-y-sm: .25rem !default;
656
+ $pagination-padding-x-sm: .5rem !default;
657
+ $pagination-padding-y-lg: .75rem !default;
658
+ $pagination-padding-x-lg: 1.5rem !default;
659
+ $pagination-line-height: 1.25 !default;
660
+
661
+ $pagination-color: $link-color !default;
662
+ $pagination-bg: $white !default;
663
+ $pagination-border-width: $border-width !default;
664
+ $pagination-border-color: $gray-300 !default;
665
+
666
+ $pagination-focus-box-shadow: $input-btn-focus-box-shadow !default;
667
+ $pagination-focus-outline: 0 !default;
668
+
669
+ $pagination-hover-color: $link-hover-color !default;
670
+ $pagination-hover-bg: $gray-200 !default;
671
+ $pagination-hover-border-color: $gray-300 !default;
672
+
673
+ $pagination-active-color: $component-active-color !default;
674
+ $pagination-active-bg: $component-active-bg !default;
675
+ $pagination-active-border-color: $pagination-active-bg !default;
676
+
677
+ $pagination-disabled-color: $gray-600 !default;
678
+ $pagination-disabled-bg: $white !default;
679
+ $pagination-disabled-border-color: $gray-300 !default;
680
+
681
+
682
+ // Jumbotron
683
+
684
+ $jumbotron-padding: 2rem !default;
685
+ $jumbotron-bg: $gray-200 !default;
686
+
687
+
688
+ // Cards
689
+
690
+ $card-spacer-y: .75rem !default;
691
+ $card-spacer-x: 1.25rem !default;
692
+ $card-border-width: $border-width !default;
693
+ $card-border-radius: $border-radius !default;
694
+ $card-border-color: rgba($black, .125) !default;
695
+ $card-inner-border-radius: calc(#{$card-border-radius} - #{$card-border-width}) !default;
696
+ $card-cap-bg: rgba($black, .03) !default;
697
+ $card-bg: $white !default;
698
+
699
+ $card-img-overlay-padding: 1.25rem !default;
700
+
701
+ $card-group-margin: ($grid-gutter-width / 2) !default;
702
+ $card-deck-margin: $card-group-margin !default;
703
+
704
+ $card-columns-count: 3 !default;
705
+ $card-columns-gap: 1.25rem !default;
706
+ $card-columns-margin: $card-spacer-y !default;
707
+
708
+
709
+ // Tooltips
710
+
711
+ $tooltip-font-size: $font-size-sm !default;
712
+ $tooltip-max-width: 200px !default;
713
+ $tooltip-color: $white !default;
714
+ $tooltip-bg: $black !default;
715
+ $tooltip-border-radius: $border-radius !default;
716
+ $tooltip-opacity: .9 !default;
717
+ $tooltip-padding-y: .25rem !default;
718
+ $tooltip-padding-x: .5rem !default;
719
+ $tooltip-margin: 0 !default;
720
+
721
+ $tooltip-arrow-width: .8rem !default;
722
+ $tooltip-arrow-height: .4rem !default;
723
+ $tooltip-arrow-color: $tooltip-bg !default;
724
+
725
+
726
+ // Popovers
727
+
728
+ $popover-font-size: $font-size-sm !default;
729
+ $popover-bg: $white !default;
730
+ $popover-max-width: 276px !default;
731
+ $popover-border-width: $border-width !default;
732
+ $popover-border-color: rgba($black, .2) !default;
733
+ $popover-border-radius: $border-radius-lg !default;
734
+ $popover-box-shadow: 0 .25rem .5rem rgba($black, .2) !default;
735
+
736
+ $popover-header-bg: darken($popover-bg, 3%) !default;
737
+ $popover-header-color: $headings-color !default;
738
+ $popover-header-padding-y: .5rem !default;
739
+ $popover-header-padding-x: .75rem !default;
740
+
741
+ $popover-body-color: $body-color !default;
742
+ $popover-body-padding-y: $popover-header-padding-y !default;
743
+ $popover-body-padding-x: $popover-header-padding-x !default;
744
+
745
+ $popover-arrow-width: 1rem !default;
746
+ $popover-arrow-height: .5rem !default;
747
+ $popover-arrow-color: $popover-bg !default;
748
+
749
+ $popover-arrow-outer-color: fade-in($popover-border-color, .05) !default;
750
+
751
+
752
+ // Badges
753
+
754
+ $badge-font-size: 75% !default;
755
+ $badge-font-weight: $font-weight-bold !default;
756
+ $badge-padding-y: .25em !default;
757
+ $badge-padding-x: .4em !default;
758
+ $badge-border-radius: $border-radius !default;
759
+
760
+ $badge-pill-padding-x: .6em !default;
761
+ // Use a higher than normal value to ensure completely rounded edges when
762
+ // customizing padding or font-size on labels.
763
+ $badge-pill-border-radius: 10rem !default;
764
+
765
+
766
+ // Modals
767
+
768
+ // Padding applied to the modal body
769
+ $modal-inner-padding: 1rem !default;
770
+
771
+ $modal-dialog-margin: .5rem !default;
772
+ $modal-dialog-margin-y-sm-up: 1.75rem !default;
773
+
774
+ $modal-title-line-height: $line-height-base !default;
775
+
776
+ $modal-content-bg: $white !default;
777
+ $modal-content-border-color: rgba($black, .2) !default;
778
+ $modal-content-border-width: $border-width !default;
779
+ $modal-content-border-radius: $border-radius-lg !default;
780
+ $modal-content-box-shadow-xs: 0 .25rem .5rem rgba($black, .5) !default;
781
+ $modal-content-box-shadow-sm-up: 0 .5rem 1rem rgba($black, .5) !default;
782
+
783
+ $modal-backdrop-bg: $black !default;
784
+ $modal-backdrop-opacity: .5 !default;
785
+ $modal-header-border-color: $gray-200 !default;
786
+ $modal-footer-border-color: $modal-header-border-color !default;
787
+ $modal-header-border-width: $modal-content-border-width !default;
788
+ $modal-footer-border-width: $modal-header-border-width !default;
789
+ $modal-header-padding: 1rem !default;
790
+
791
+ $modal-lg: 800px !default;
792
+ $modal-md: 500px !default;
793
+ $modal-sm: 300px !default;
794
+
795
+ $modal-transition: transform .3s ease-out !default;
796
+
797
+
798
+ // Alerts
799
+ //
800
+ // Define alert colors, border radius, and padding.
801
+
802
+ $alert-padding-y: .75rem !default;
803
+ $alert-padding-x: 1.25rem !default;
804
+ $alert-margin-bottom: 1rem !default;
805
+ $alert-border-radius: $border-radius !default;
806
+ $alert-link-font-weight: $font-weight-bold !default;
807
+ $alert-border-width: $border-width !default;
808
+
809
+ $alert-bg-level: -10 !default;
810
+ $alert-border-level: -9 !default;
811
+ $alert-color-level: 6 !default;
812
+
813
+
814
+ // Progress bars
815
+
816
+ $progress-height: 1rem !default;
817
+ $progress-font-size: ($font-size-base * .75) !default;
818
+ $progress-bg: $gray-200 !default;
819
+ $progress-border-radius: $border-radius !default;
820
+ $progress-box-shadow: inset 0 .1rem .1rem rgba($black, .1) !default;
821
+ $progress-bar-color: $white !default;
822
+ $progress-bar-bg: theme-color("primary") !default;
823
+ $progress-bar-animation-timing: 1s linear infinite !default;
824
+ $progress-bar-transition: width .6s ease !default;
825
+
826
+ // List group
827
+
828
+ $list-group-bg: $white !default;
829
+ $list-group-border-color: rgba($black, .125) !default;
830
+ $list-group-border-width: $border-width !default;
831
+ $list-group-border-radius: $border-radius !default;
832
+
833
+ $list-group-item-padding-y: .75rem !default;
834
+ $list-group-item-padding-x: 1.25rem !default;
835
+
836
+ $list-group-hover-bg: $gray-100 !default;
837
+ $list-group-active-color: $component-active-color !default;
838
+ $list-group-active-bg: $component-active-bg !default;
839
+ $list-group-active-border-color: $list-group-active-bg !default;
840
+
841
+ $list-group-disabled-color: $gray-600 !default;
842
+ $list-group-disabled-bg: $list-group-bg !default;
843
+
844
+ $list-group-action-color: $gray-700 !default;
845
+ $list-group-action-hover-color: $list-group-action-color !default;
846
+
847
+ $list-group-action-active-color: $body-color !default;
848
+ $list-group-action-active-bg: $gray-200 !default;
849
+
850
+
851
+ // Image thumbnails
852
+
853
+ $thumbnail-padding: .25rem !default;
854
+ $thumbnail-bg: $body-bg !default;
855
+ $thumbnail-border-width: $border-width !default;
856
+ $thumbnail-border-color: $gray-300 !default;
857
+ $thumbnail-border-radius: $border-radius !default;
858
+ $thumbnail-box-shadow: 0 1px 2px rgba($black, .075) !default;
859
+
860
+
861
+ // Figures
862
+
863
+ $figure-caption-font-size: 90% !default;
864
+ $figure-caption-color: $gray-600 !default;
865
+
866
+
867
+ // Breadcrumbs
868
+
869
+ $breadcrumb-padding-y: .75rem !default;
870
+ $breadcrumb-padding-x: 1rem !default;
871
+ $breadcrumb-item-padding: .5rem !default;
872
+
873
+ $breadcrumb-margin-bottom: 1rem !default;
874
+
875
+ $breadcrumb-bg: $gray-200 !default;
876
+ $breadcrumb-divider-color: $gray-600 !default;
877
+ $breadcrumb-active-color: $gray-600 !default;
878
+ $breadcrumb-divider: quote("/") !default;
879
+
880
+ $breadcrumb-border-radius: $border-radius !default;
881
+
882
+
883
+ // Carousel
884
+
885
+ $carousel-control-color: $white !default;
886
+ $carousel-control-width: 15% !default;
887
+ $carousel-control-opacity: .5 !default;
888
+
889
+ $carousel-indicator-width: 30px !default;
890
+ $carousel-indicator-height: 3px !default;
891
+ $carousel-indicator-spacer: 3px !default;
892
+ $carousel-indicator-active-bg: $white !default;
893
+
894
+ $carousel-caption-width: 70% !default;
895
+ $carousel-caption-color: $white !default;
896
+
897
+ $carousel-control-icon-width: 20px !default;
898
+
899
+ $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;
900
+ $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;
901
+
902
+ $carousel-transition: transform .6s ease !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)
903
+
904
+
905
+ // Close
906
+
907
+ $close-font-size: $font-size-base * 1.5 !default;
908
+ $close-font-weight: $font-weight-bold !default;
909
+ $close-color: $black !default;
910
+ $close-text-shadow: 0 1px 0 $white !default;
911
+
912
+ // Code
913
+
914
+ $code-font-size: 87.5% !default;
915
+ $code-color: $pink !default;
916
+
917
+ $kbd-padding-y: .2rem !default;
918
+ $kbd-padding-x: .4rem !default;
919
+ $kbd-font-size: $code-font-size !default;
920
+ $kbd-color: $white !default;
921
+ $kbd-bg: $gray-900 !default;
922
+
923
+ $pre-color: $gray-900 !default;
924
+ $pre-scrollable-max-height: 340px !default;
925
+
926
+
927
+ // Printing
928
+ $print-page-size: a3 !default;
929
+ $print-body-min-width: map-get($grid-breakpoints, "lg") !default;