@burh/nuxt-core 1.0.294 → 1.0.297

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.
@@ -8,200 +8,222 @@
8
8
 
9
9
  // Global settings
10
10
 
11
- $enable-caret: true !default;
12
- $enable-rounded: true !default;
13
- $enable-gradients: false !default;
14
- $enable-transitions: true !default;
15
- $enable-grid-classes: true !default;
16
- $enable-print-styles: true !default;
17
-
11
+ $enable-caret: true !default;
12
+ $enable-rounded: true !default;
13
+ $enable-gradients: false !default;
14
+ $enable-transitions: true !default;
15
+ $enable-grid-classes: true !default;
16
+ $enable-print-styles: true !default;
18
17
 
19
18
  // Shadows
20
19
 
21
- $enable-shadows: true !default;
22
-
23
-
20
+ $enable-shadows: true !default;
24
21
 
25
22
  // Color system
26
23
 
27
- $white: #fff !default;
24
+ $white: #fff !default;
28
25
  $gray-100: #f6f9fc !default;
29
26
  $gray-200: #e9ecef !default;
30
27
  $gray-300: #dee2e6 !default;
31
28
  $gray-400: #ced4da !default;
32
29
  $gray-500: #adb5bd !default;
33
- $gray-600: #8898aa !default; // Line footer color
34
- $gray-700: #525f7f !default; // Line p color
35
- $gray-800: #32325d !default; // Line heading color
30
+ $gray-600: #8898aa !default; // Line footer color
31
+ $gray-700: #525f7f !default; // Line p color
32
+ $gray-800: #32325d !default; // Line heading color
36
33
  $gray-900: #212529 !default;
37
- $black: #000 !default;
34
+ $black: #000 !default;
38
35
 
39
36
  $grays: () !default;
40
- $grays: map-merge((
41
- "100": $gray-100,
42
- "200": $gray-200,
43
- "300": $gray-300,
44
- "400": $gray-400,
45
- "500": $gray-500,
46
- "600": $gray-600,
47
- "700": $gray-700,
48
- "800": $gray-800,
49
- "900": $gray-900
50
- ), $grays);
51
-
52
- $blue: #5e72e4 !default;
53
- $indigo: #5603ad !default;
54
- $purple: #8965e0 !default;
55
- $pink: #f3a4b5 !default;
56
- $red: #f5365c !default;
57
- $orange: #fb6340 !default;
58
- $yellow: #ffd600 !default;
59
- $green: #2dce89 !default;
60
- $teal: #11cdef !default;
61
- $cyan: #2bffc6 !default;
62
- $violet: #7f00bb !default;
37
+ $grays: map-merge(
38
+ (
39
+ "100": $gray-100,
40
+ "200": $gray-200,
41
+ "300": $gray-300,
42
+ "400": $gray-400,
43
+ "500": $gray-500,
44
+ "600": $gray-600,
45
+ "700": $gray-700,
46
+ "800": $gray-800,
47
+ "900": $gray-900,
48
+ ),
49
+ $grays
50
+ );
51
+
52
+ $blue: #5865f2 !default;
53
+ $indigo: #5603ad !default;
54
+ $purple: #8965e0 !default;
55
+ $pink: #f3a4b5 !default;
56
+ $red: #f5365c !default;
57
+ $orange: #fb6340 !default;
58
+ $yellow: #ffd600 !default;
59
+ $green: #2dce89 !default;
60
+ $teal: #11cdef !default;
61
+ $cyan: #2bffc6 !default;
62
+ $violet: #7f00bb !default;
63
63
 
64
64
  $colors: () !default;
65
- $colors: map-merge((
66
- "blue": $blue,
67
- "indigo": $indigo,
68
- "purple": $purple,
69
- "pink": $pink,
70
- "red": $red,
71
- "orange": $orange,
72
- "yellow": $yellow,
73
- "green": $green,
74
- "teal": $teal,
75
- "cyan": $cyan,
76
- "white": $white,
77
- "gray": $gray-600,
78
- "light": $gray-400,
79
- "lighter": $gray-200,
80
- "gray-dark": $gray-800
81
- ), $colors);
82
-
83
- $default: #172b4d !default;
84
- $primary: #5e72e4 !default;
85
- $secondary: #f7fafc !default;
86
- $success: $green !default;
87
- $info: $teal !default;
88
- $warning: $orange !default;
89
- $danger: $red !default;
90
- $light: $gray-500 !default;
91
- $dark: $gray-900 !default;
92
- $darker: darken($gray-900, 15%) !default;
93
-
94
- $facebook: #3b5999 !default;
95
- $twitter: #1da1f2 !default;
96
- $google-plus: #dd4b39 !default;
97
- $instagram: #e4405f !default;
98
- $pinterest: #bd081c !default;
99
- $youtube: #cd201f !default;
100
- $slack: #3aaf85 !default;
101
- $dribbble: #ea4c89 !default;
102
- $github: #222222 !default;
103
- $vimeo: #04A0F0 !default;
65
+ $colors: map-merge(
66
+ (
67
+ "blue": $blue,
68
+ "indigo": $indigo,
69
+ "purple": $purple,
70
+ "pink": $pink,
71
+ "red": $red,
72
+ "orange": $orange,
73
+ "yellow": $yellow,
74
+ "green": $green,
75
+ "teal": $teal,
76
+ "cyan": $cyan,
77
+ "white": $white,
78
+ "gray": $gray-600,
79
+ "light": $gray-400,
80
+ "lighter": $gray-200,
81
+ "gray-dark": $gray-800,
82
+ ),
83
+ $colors
84
+ );
85
+
86
+ $default: #172b4d !default;
87
+ $primary: #5865f2 !default;
88
+ $secondary: #f7fafc !default;
89
+ $success: $green !default;
90
+ $info: $teal !default;
91
+ $warning: $orange !default;
92
+ $danger: $red !default;
93
+ $light: $gray-500 !default;
94
+ $dark: $gray-900 !default;
95
+ $darker: darken($gray-900, 15%) !default;
96
+
97
+ $facebook: #3b5999 !default;
98
+ $twitter: #1da1f2 !default;
99
+ $google-plus: #dd4b39 !default;
100
+ $instagram: #e4405f !default;
101
+ $pinterest: #bd081c !default;
102
+ $youtube: #cd201f !default;
103
+ $slack: #3aaf85 !default;
104
+ $dribbble: #ea4c89 !default;
105
+ $github: #222222 !default;
106
+ $vimeo: #04a0f0 !default;
104
107
 
105
108
  $theme-colors: () !default;
106
- $theme-colors: map-merge((
107
- "default": $default,
108
- "primary": $primary,
109
- "secondary": $secondary,
110
- "success": $success,
111
- "info": $info,
112
- "warning": $warning,
113
- "danger": $danger,
114
- "white": $white,
115
- "neutral": $white,
116
- "dark": $dark,
117
- "darker": $darker
118
- ), $theme-colors);
109
+ $theme-colors: map-merge(
110
+ (
111
+ "default": $default,
112
+ "primary": $primary,
113
+ "secondary": $secondary,
114
+ "success": $success,
115
+ "info": $info,
116
+ "warning": $warning,
117
+ "danger": $danger,
118
+ "white": $white,
119
+ "neutral": $white,
120
+ "dark": $dark,
121
+ "darker": $darker,
122
+ ),
123
+ $theme-colors
124
+ );
119
125
 
120
126
  $brand-colors: () !default;
121
- $brand-colors: map-merge((
122
- "facebook": $facebook,
123
- "twitter": $twitter,
124
- "google-plus": $google-plus,
125
- "instagram": $instagram,
126
- "pinterest": $pinterest,
127
- "youtube": $youtube,
128
- "slack": $slack,
129
- "dribbble": $dribbble,
130
- "github": $github,
131
- "vimeo": $vimeo
132
- ), $brand-colors);
127
+ $brand-colors: map-merge(
128
+ (
129
+ "facebook": $facebook,
130
+ "twitter": $twitter,
131
+ "google-plus": $google-plus,
132
+ "instagram": $instagram,
133
+ "pinterest": $pinterest,
134
+ "youtube": $youtube,
135
+ "slack": $slack,
136
+ "dribbble": $dribbble,
137
+ "github": $github,
138
+ "vimeo": $vimeo,
139
+ ),
140
+ $brand-colors
141
+ );
133
142
 
134
143
  $shape-colors: () !default;
135
- $shape-colors: map-merge((
136
- "default": #32325d,
137
- "primary": #5533ff,
138
- "secondary": #24b47e,
139
- "neutral": #e9ecef,
140
- "blue-gray": #b2cbe1,
141
-
142
- ), $shape-colors);
144
+ $shape-colors: map-merge(
145
+ (
146
+ "default": #32325d,
147
+ "primary": #5533ff,
148
+ "secondary": #24b47e,
149
+ "neutral": #e9ecef,
150
+ "blue-gray": #b2cbe1,
151
+ ),
152
+ $shape-colors
153
+ );
143
154
 
144
155
  $shapes-primary-colors: () !default;
145
- $shapes-primary-colors: map-merge((
146
- "step-1-gradient-bg": #281483,
147
- "step-2-gradient-bg": #8f6ed5,
148
- "step-3-gradient-bg": #d782d9,
149
- "span-1-bg": #53f,
150
- "span-2-bg": #4553ff,
151
- "span-3-bg": #4f40ff,
152
- "span-4-bg": #25ddf5,
153
- "span-5-bg": #1fa2ff
154
- ), $shapes-primary-colors);
156
+ $shapes-primary-colors: map-merge(
157
+ (
158
+ "step-1-gradient-bg": #281483,
159
+ "step-2-gradient-bg": #8f6ed5,
160
+ "step-3-gradient-bg": #d782d9,
161
+ "span-1-bg": #53f,
162
+ "span-2-bg": #4553ff,
163
+ "span-3-bg": #4f40ff,
164
+ "span-4-bg": #25ddf5,
165
+ "span-5-bg": #1fa2ff,
166
+ ),
167
+ $shapes-primary-colors
168
+ );
155
169
 
156
170
  $shapes-default-colors: () !default;
157
- $shapes-default-colors: map-merge((
158
- "step-1-gradient-bg": #7795f8,
159
- "step-2-gradient-bg": #6772e5,
160
- "step-3-gradient-bg": #555abf,
161
- "span-1-bg": #7795f8,
162
- "span-2-bg": #7b9aff,
163
- "span-3-bg": #6f8ff8,
164
- "span-4-bg": #76eea7,
165
- "span-5-bg": #6adaff
166
- ), $shapes-default-colors);
171
+ $shapes-default-colors: map-merge(
172
+ (
173
+ "step-1-gradient-bg": #7795f8,
174
+ "step-2-gradient-bg": #6772e5,
175
+ "step-3-gradient-bg": #555abf,
176
+ "span-1-bg": #7795f8,
177
+ "span-2-bg": #7b9aff,
178
+ "span-3-bg": #6f8ff8,
179
+ "span-4-bg": #76eea7,
180
+ "span-5-bg": #6adaff,
181
+ ),
182
+ $shapes-default-colors
183
+ );
167
184
 
168
185
  $shapes-light-colors: () !default;
169
- $shapes-light-colors: map-merge((
170
- "step-1-gradient-bg": #b2cbe1,
171
- "step-2-gradient-bg": #f6f9fc,
172
- "step-3-gradient-bg": #f6f9fc,
173
- "span-1-bg": #b4cce1,
174
- "span-2-bg": #c5dbef,
175
- "span-3-bg": #b9d5ed,
176
- "span-4-bg": #74e4a2,
177
- "span-5-bg": #008169
178
- ), $shapes-light-colors);
186
+ $shapes-light-colors: map-merge(
187
+ (
188
+ "step-1-gradient-bg": #b2cbe1,
189
+ "step-2-gradient-bg": #f6f9fc,
190
+ "step-3-gradient-bg": #f6f9fc,
191
+ "span-1-bg": #b4cce1,
192
+ "span-2-bg": #c5dbef,
193
+ "span-3-bg": #b9d5ed,
194
+ "span-4-bg": #74e4a2,
195
+ "span-5-bg": #008169,
196
+ ),
197
+ $shapes-light-colors
198
+ );
179
199
 
180
200
  $shapes-dark-colors: () !default;
181
- $shapes-dark-colors: map-merge((
182
- "step-1-gradient-bg": #32325d,
183
- "step-2-gradient-bg": #32325d,
184
- "step-3-gradient-bg": #32325d,
185
- "span-1-bg": #2e2e57,
186
- "span-2-bg": #2b2b58,
187
- "span-3-bg": #25254d,
188
- "span-4-bg": #d782d9,
189
- "span-5-bg": #008169
190
- ), $shapes-dark-colors);
191
-
201
+ $shapes-dark-colors: map-merge(
202
+ (
203
+ "step-1-gradient-bg": #32325d,
204
+ "step-2-gradient-bg": #32325d,
205
+ "step-3-gradient-bg": #32325d,
206
+ "span-1-bg": #2e2e57,
207
+ "span-2-bg": #2b2b58,
208
+ "span-3-bg": #25254d,
209
+ "span-4-bg": #d782d9,
210
+ "span-5-bg": #008169,
211
+ ),
212
+ $shapes-dark-colors
213
+ );
192
214
 
193
215
  // Translucent color variations
194
- $translucent-color-opacity: .6 !default;
216
+ $translucent-color-opacity: 0.6 !default;
195
217
 
196
218
  // Set a specific jump point for requesting color jumps
197
- $theme-color-interval: 8% !default;
219
+ $theme-color-interval: 8% !default;
198
220
 
199
221
  // The yiq lightness value that determines when the lightness of color changes from "dark" to "light". Acceptable values are between 0 and 255.
200
- $yiq-contrasted-threshold: 200 !default;
222
+ $yiq-contrasted-threshold: 200 !default;
201
223
 
202
224
  // Customize the light and dark text colors for use in our YIQ color contrast function.
203
- $yiq-text-dark: $gray-900 !default;
204
- $yiq-text-light: $white !default;
225
+ $yiq-text-dark: $gray-900 !default;
226
+ $yiq-text-light: $white !default;
205
227
 
206
228
  // Action colors
207
229
 
@@ -212,32 +234,31 @@ $favorite-color: $yellow !default;
212
234
  $like-color: $blue !default;
213
235
  $love-color: $red !default;
214
236
 
215
-
216
237
  // Body
217
238
 
218
- $body-bg: #f8f9fe !default;
219
- $body-color: $gray-700 !default;
220
-
239
+ $body-bg: #f8f9fe !default;
240
+ $body-color: $gray-700 !default;
221
241
 
222
242
  // Sections
223
243
 
224
244
  $section-colors: () !default;
225
- $section-colors: map-merge((
226
- "primary": $body-bg,
227
- "secondary": $secondary,
228
- "light": $gray-400,
229
- "dark": $dark,
230
- "darker": $darker
231
- ), $section-colors);
245
+ $section-colors: map-merge(
246
+ (
247
+ "primary": $body-bg,
248
+ "secondary": $secondary,
249
+ "light": $gray-400,
250
+ "dark": $dark,
251
+ "darker": $darker,
252
+ ),
253
+ $section-colors
254
+ );
232
255
 
233
256
  // Links
234
257
 
235
- $link-color: $primary !default;
236
- $link-decoration: none !default;
237
- $link-hover-color: darken($link-color, 15%) !default;
238
- $link-hover-decoration: none !default;
239
-
240
-
258
+ $link-color: $primary !default;
259
+ $link-decoration: none !default;
260
+ $link-hover-color: darken($link-color, 15%) !default;
261
+ $link-hover-decoration: none !default;
241
262
 
242
263
  // Grid breakpoints
243
264
 
@@ -246,201 +267,191 @@ $grid-breakpoints: (
246
267
  sm: 576px,
247
268
  md: 768px,
248
269
  lg: 992px,
249
- xl: 1200px
270
+ xl: 1200px,
250
271
  );
251
272
 
252
273
  @include _assert-ascending($grid-breakpoints, "$grid-breakpoints");
253
274
  @include _assert-starts-at-zero($grid-breakpoints);
254
275
 
255
-
256
-
257
276
  // Spacing
258
277
 
259
278
  $spacer: 1rem !default;
260
279
  $spacers: () !default;
261
- $spacers: map-merge((
262
- -9: -($spacer * 10),
263
- -8: -($spacer * 8),
264
- -7: -($spacer * 6),
265
- -6: -($spacer * 4.5),
266
- -5: -($spacer * 3),
267
- -4: -($spacer * 1.5),
268
- -3: -$spacer,
269
- -2: -($spacer * .5),
270
- -1: -($spacer * .25),
271
- 0: 0,
272
- 1: ($spacer * .25),
273
- 2: ($spacer * .5),
274
- 3: $spacer,
275
- 4: ($spacer * 1.5),
276
- 5: ($spacer * 3),
277
- 6: ($spacer * 4.5),
278
- 7: ($spacer * 6),
279
- 8: ($spacer * 8),
280
- 9: ($spacer * 10)
281
- ), $spacers);
282
-
283
-
280
+ $spacers: map-merge(
281
+ (
282
+ -9: - ($spacer * 10),
283
+ -8: - ($spacer * 8),
284
+ -7: - ($spacer * 6),
285
+ -6: - ($spacer * 4.5),
286
+ -5: - ($spacer * 3),
287
+ -4: - ($spacer * 1.5),
288
+ -3: -$spacer,
289
+ -2: - ($spacer * 0.5),
290
+ -1: - ($spacer * 0.25),
291
+ 0: 0,
292
+ 1: ($spacer * 0.25),
293
+ 2: ($spacer * 0.5),
294
+ 3: $spacer,
295
+ 4: ($spacer * 1.5),
296
+ 5: ($spacer * 3),
297
+ 6: ($spacer * 4.5),
298
+ 7: ($spacer * 6),
299
+ 8: ($spacer * 8),
300
+ 9: ($spacer * 10)
301
+ ),
302
+ $spacers
303
+ );
284
304
 
285
305
  // This variable affects the `.h-*` and `.w-*` classes.
286
306
 
287
307
  $sizes: () !default;
288
- $sizes: map-merge((
289
- 25: 25%,
290
- 50: 50%,
291
- 75: 75%,
292
- 100: 100%
293
- ), $sizes);
294
-
308
+ $sizes: map-merge(
309
+ (
310
+ 25: 25%,
311
+ 50: 50%,
312
+ 75: 75%,
313
+ 100: 100%,
314
+ ),
315
+ $sizes
316
+ );
295
317
 
296
318
  //
297
319
  // Components
298
320
  //
299
321
 
300
- $shape-height-xl: 1.5 !default;
301
- $shape-height-lg: 1.5 !default;
302
- $shape-height-sm: 1.5 !default;
303
-
322
+ $shape-height-xl: 1.5 !default;
323
+ $shape-height-lg: 1.5 !default;
324
+ $shape-height-sm: 1.5 !default;
304
325
 
305
326
  // Border
306
327
 
307
- $border-width: 1px !default;
308
- $border-color: $gray-200 !default;
309
-
310
- $border-radius: .375rem !default;
311
- $border-radius-xl: .5rem !default;
312
- $border-radius-lg: .4375rem !default;
313
- $border-radius-sm: .25rem !default;
314
-
315
- $box-shadow-sm: 0 0 .5rem rgba($gray-600, .075) !default;
316
- $box-shadow: 0 0 2rem 0 rgba($gray-600, .15) !default;
317
- $box-shadow-lg: 0 0 3rem rgba($gray-600, .175) !default;
328
+ $border-width: 1px !default;
329
+ $border-color: $gray-200 !default;
318
330
 
331
+ $border-radius: 0.375rem !default;
332
+ $border-radius-xl: 0.5rem !default;
333
+ $border-radius-lg: 0.4375rem !default;
334
+ $border-radius-sm: 0.25rem !default;
319
335
 
336
+ $box-shadow-sm: 0 0 0.5rem rgba($gray-600, 0.075) !default;
337
+ $box-shadow: 0 0 2rem 0 rgba($gray-600, 0.15) !default;
338
+ $box-shadow-lg: 0 0 3rem rgba($gray-600, 0.175) !default;
320
339
 
321
340
  // Component - main styles for most of the components
322
341
 
323
- $component-active-color: $white !default;
324
- $component-active-bg: theme-color("primary") !default;
342
+ $component-active-color: $white !default;
343
+ $component-active-bg: theme-color("primary") !default;
325
344
  $component-active-border-color: theme-color("primary") !default;
326
345
 
327
- $component-hover-color: $gray-300 !default;
328
- $component-hover-bg: $gray-300 !default;
346
+ $component-hover-color: $gray-300 !default;
347
+ $component-hover-bg: $gray-300 !default;
329
348
  $component-hover-border-color: $gray-300 !default;
330
349
 
331
-
332
-
333
350
  // Caret
334
351
 
335
- $caret-width: .3em !default;
336
-
337
-
352
+ $caret-width: 0.3em !default;
338
353
 
339
354
  // Transitions
340
355
 
341
- $transition-base-time: .15s;
342
- $transition-base: all $transition-base-time ease !default;
343
- $transition-fade: opacity $transition-base-time linear !default;
344
- $transition-collapse: height $transition-base-time * 2 ease !default;
345
- $transition-cubic-bezier: all $transition-base-time cubic-bezier(.68, -0.55, .265, 1.55) !default;
346
- $transition-bg: background-color $transition-base-time * 2 linear !default;
347
- $transition-ease-in-out: all $transition-base-time ease-in-out !default;
348
-
349
-
356
+ $transition-base-time: 0.15s;
357
+ $transition-base: all $transition-base-time ease !default;
358
+ $transition-fade: opacity $transition-base-time linear !default;
359
+ $transition-collapse: height $transition-base-time * 2 ease !default;
360
+ $transition-cubic-bezier: all $transition-base-time cubic-bezier(0.68, -0.55, 0.265, 1.55) !default;
361
+ $transition-bg: background-color $transition-base-time * 2 linear !default;
362
+ $transition-ease-in-out: all $transition-base-time ease-in-out !default;
350
363
 
351
364
  // Fonts
352
365
 
353
366
  // Font icons
354
367
 
355
- $icon-font-family: NucleoIcons, sans-serif !default;
368
+ $icon-font-family: NucleoIcons, sans-serif !default;
356
369
 
357
370
  // Fonts
358
371
 
359
372
  $font-family-sans-serif: Open Sans, sans-serif !default;
360
373
  $font-family-base: $font-family-sans-serif !default;
361
374
 
362
- $font-size-base: 1rem !default; // Assumes the browser default, typically `16px`
363
- $font-size-xl: ($font-size-base * 1.5);
364
- $font-size-lg: ($font-size-base * 1.25);
365
- $font-size-sm: ($font-size-base * .875);
366
- $font-size-xs: ($font-size-base * .75);
367
-
368
- $font-weight-light: 300 !default;
369
- $font-weight-normal: 400 !default;
370
- $font-weight-bold: 600 !default;
371
- $font-weight-extra-bold: 700 !default;
372
-
373
- $font-weight-base: $font-weight-normal !default;
374
- $line-height-base: 1.5 !default;
375
- $shape-height-base: 1.5 !default;
375
+ $font-size-base: 1rem !default; // Assumes the browser default, typically `16px`
376
+ $font-size-xl: ($font-size-base * 1.5);
377
+ $font-size-lg: ($font-size-base * 1.25);
378
+ $font-size-sm: ($font-size-base * 0.875);
379
+ $font-size-xs: ($font-size-base * 0.75);
376
380
 
377
- $h1-font-size: $font-size-base * 1.625 !default;
378
- $h2-font-size: $font-size-base * 1.25 !default;
379
- $h3-font-size: $font-size-base * 1.0625 !default;
380
- $h4-font-size: $font-size-base * .9375 !default;
381
- $h5-font-size: $font-size-base * .8125 !default;
382
- $h6-font-size: $font-size-base * .625 !default;
381
+ $font-weight-light: 300 !default;
382
+ $font-weight-normal: 400 !default;
383
+ $font-weight-bold: 600 !default;
384
+ $font-weight-extra-bold: 700 !default;
383
385
 
384
- $headings-margin-bottom: ($spacer / 2);
385
- $headings-font-family: inherit !default;
386
- $headings-font-weight: $font-weight-bold !default;
387
- $headings-line-height: 1.5 !default;
388
- $headings-color: $gray-800 !default;
386
+ $font-weight-base: $font-weight-normal !default;
387
+ $line-height-base: 1.5 !default;
388
+ $shape-height-base: 1.5 !default;
389
389
 
390
- $heading-letter-spacing: .025em !default;
391
- $heading-font-size: .95rem !default;
392
- $heading-text-transform: uppercase !default;
393
- $heading-font-weight: $headings-font-weight !default;
390
+ $h1-font-size: $font-size-base * 1.625 !default;
391
+ $h2-font-size: $font-size-base * 1.25 !default;
392
+ $h3-font-size: $font-size-base * 1.0625 !default;
393
+ $h4-font-size: $font-size-base * 0.9375 !default;
394
+ $h5-font-size: $font-size-base * 0.8125 !default;
395
+ $h6-font-size: $font-size-base * 0.625 !default;
394
396
 
395
- $heading-title-letter-spacing: .025em !default;
396
- $heading-title-font-size: 1.375rem !default;
397
- $heading-title-font-weight: $font-weight-bold !default;
398
- $heading-title-text-transform: uppercase !default;
397
+ $headings-margin-bottom: ($spacer / 2);
398
+ $headings-font-family: inherit !default;
399
+ $headings-font-weight: $font-weight-bold !default;
400
+ $headings-line-height: 1.5 !default;
401
+ $headings-color: $gray-800 !default;
399
402
 
400
- $heading-section-letter-spacing: .025em !default;
401
- $heading-section-font-size: 1.375rem !default;
402
- $heading-section-font-weight: $font-weight-bold !default;
403
- $heading-section-text-transform: uppercase !default;
403
+ $heading-letter-spacing: 0.025em !default;
404
+ $heading-font-size: 0.95rem !default;
405
+ $heading-text-transform: uppercase !default;
406
+ $heading-font-weight: $headings-font-weight !default;
404
407
 
405
- $display1-size: 3.3rem !default;
406
- $display2-size: 2.75rem !default;
407
- $display3-size: 2.1875rem !default;
408
- $display4-size: 1.6275rem !default;
408
+ $heading-title-letter-spacing: 0.025em !default;
409
+ $heading-title-font-size: 1.375rem !default;
410
+ $heading-title-font-weight: $font-weight-bold !default;
411
+ $heading-title-text-transform: uppercase !default;
409
412
 
410
- $display1-weight: $font-weight-bold !default;
411
- $display2-weight: $font-weight-bold !default;
412
- $display3-weight: $font-weight-bold !default;
413
- $display4-weight: $font-weight-bold !default;
414
- $display-line-height: $headings-line-height !default;
413
+ $heading-section-letter-spacing: 0.025em !default;
414
+ $heading-section-font-size: 1.375rem !default;
415
+ $heading-section-font-weight: $font-weight-bold !default;
416
+ $heading-section-text-transform: uppercase !default;
415
417
 
416
- $paragraph-font-size: 1rem !default;
417
- $paragraph-font-weight: 300 !default;
418
- $paragraph-line-height: 1.7 !default;
418
+ $display1-size: 3.3rem !default;
419
+ $display2-size: 2.75rem !default;
420
+ $display3-size: 2.1875rem !default;
421
+ $display4-size: 1.6275rem !default;
419
422
 
420
- $lead-font-size: ($paragraph-font-size * 1.25) !default;
421
- $lead-font-weight: 300 !default;
423
+ $display1-weight: $font-weight-bold !default;
424
+ $display2-weight: $font-weight-bold !default;
425
+ $display3-weight: $font-weight-bold !default;
426
+ $display4-weight: $font-weight-bold !default;
427
+ $display-line-height: $headings-line-height !default;
422
428
 
423
- $small-font-size: 80% !default;
429
+ $paragraph-font-size: 1rem !default;
430
+ $paragraph-font-weight: 300 !default;
431
+ $paragraph-line-height: 1.7 !default;
424
432
 
425
- $text-muted: $gray-600 !default;
433
+ $lead-font-size: ($paragraph-font-size * 1.25) !default;
434
+ $lead-font-weight: 300 !default;
426
435
 
427
- $blockquote-small-color: $gray-600 !default;
428
- $blockquote-font-size: ($font-size-base * 1.25) !default;
436
+ $small-font-size: 80% !default;
429
437
 
430
- $hr-border-color: rgba($black, .1);
431
- $hr-border-width: $border-width !default;
438
+ $text-muted: $gray-600 !default;
432
439
 
433
- $mark-padding: .2em !default;
440
+ $blockquote-small-color: $gray-600 !default;
441
+ $blockquote-font-size: ($font-size-base * 1.25) !default;
434
442
 
435
- $dt-font-weight: $font-weight-bold !default;
443
+ $hr-border-color: rgba($black, 0.1);
444
+ $hr-border-width: $border-width !default;
436
445
 
437
- $list-inline-padding: .5rem !default;
446
+ $mark-padding: 0.2em !default;
438
447
 
439
- $mark-bg: #fcf8e3 !default;
448
+ $dt-font-weight: $font-weight-bold !default;
440
449
 
441
- $hr-margin-y: $spacer * 2 !default;
450
+ $list-inline-padding: 0.5rem !default;
442
451
 
452
+ $mark-bg: #fcf8e3 !default;
443
453
 
454
+ $hr-margin-y: $spacer * 2 !default;
444
455
 
445
456
  // Icons
446
457
 
@@ -450,363 +461,336 @@ $icon-size-lg: 4rem !default;
450
461
  $icon-size-sm: 2rem !default;
451
462
  $icon-size-xs: 1.25rem !default;
452
463
 
453
-
454
-
455
464
  // Tables
456
465
 
457
- $table-cell-padding: 1rem !default;
458
- $table-cell-padding-sm: .5rem !default;
459
-
460
- $table-bg: transparent !default;
461
- $table-accent-bg: rgba($gray-100, .3) !default;
462
- $table-hover-bg: $gray-100 !default;
463
- $table-active-bg: $table-hover-bg !default;
466
+ $table-cell-padding: 1rem !default;
467
+ $table-cell-padding-sm: 0.5rem !default;
464
468
 
465
- $table-border-width: $border-width !default;
466
- $table-border-color: $gray-200 !default;
469
+ $table-bg: transparent !default;
470
+ $table-accent-bg: rgba($gray-100, 0.3) !default;
471
+ $table-hover-bg: $gray-100 !default;
472
+ $table-active-bg: $table-hover-bg !default;
467
473
 
468
- $table-head-spacer-y: .75rem !default;
469
- $table-head-spacer-x: 1rem !default;
470
- $table-head-font-size: .65rem !default;
471
- $table-head-font-weight: $font-weight-bold !default;
472
- $table-head-text-transform: uppercase !default;
473
- $table-head-letter-spacing: 1px !default;
474
- $table-head-bg: $gray-100 !default;
475
- $table-head-color: $gray-600 !default;
476
- $table-action-color: $gray-500 !default;
474
+ $table-border-width: $border-width !default;
475
+ $table-border-color: $gray-200 !default;
477
476
 
478
- $table-body-font-size: .8125rem !default;
477
+ $table-head-spacer-y: 0.75rem !default;
478
+ $table-head-spacer-x: 1rem !default;
479
+ $table-head-font-size: 0.65rem !default;
480
+ $table-head-font-weight: $font-weight-bold !default;
481
+ $table-head-text-transform: uppercase !default;
482
+ $table-head-letter-spacing: 1px !default;
483
+ $table-head-bg: $gray-100 !default;
484
+ $table-head-color: $gray-600 !default;
485
+ $table-action-color: $gray-500 !default;
479
486
 
480
- $table-dark-bg: theme-color("default") !default;
481
- $table-dark-accent-bg: rgba($white, .05) !default;
482
- $table-dark-hover-bg: rgba($white, .075) !default;
483
- $table-dark-border-color: lighten(theme-color("default"), 7%) !default;
484
- $table-dark-color: $body-bg !default;
485
-
486
- $table-dark-head-bg: lighten(theme-color("default"), 4%) !default;
487
- $table-dark-head-color: lighten(theme-color("default"), 35%) !default;
488
- $table-dark-action-color: lighten(theme-color("default"), 35%) !default;
487
+ $table-body-font-size: 0.8125rem !default;
489
488
 
489
+ $table-dark-bg: theme-color("default") !default;
490
+ $table-dark-accent-bg: rgba($white, 0.05) !default;
491
+ $table-dark-hover-bg: rgba($white, 0.075) !default;
492
+ $table-dark-border-color: lighten(theme-color("default"), 7%) !default;
493
+ $table-dark-color: $body-bg !default;
490
494
 
495
+ $table-dark-head-bg: lighten(theme-color("default"), 4%) !default;
496
+ $table-dark-head-color: lighten(theme-color("default"), 35%) !default;
497
+ $table-dark-action-color: lighten(theme-color("default"), 35%) !default;
491
498
 
492
499
  // Buttons + Forms
493
500
 
494
- $input-btn-padding-y: .625rem !default;
495
- $input-btn-padding-x: .75rem !default;
496
- $input-btn-line-height: $shape-height-base !default;
497
-
498
- $input-btn-focus-width: 0 !default;
499
- $input-btn-focus-color: rgba($component-active-bg, 1) !default;
500
- $input-btn-focus-box-shadow: none !default;
501
+ $input-btn-padding-y: 0.625rem !default;
502
+ $input-btn-padding-x: 0.75rem !default;
503
+ $input-btn-line-height: $shape-height-base !default;
501
504
 
502
- $input-btn-padding-y-sm: .25rem !default;
503
- $input-btn-padding-x-sm: .5rem !default;
504
- $input-btn-line-height-sm: $shape-height-sm !default;
505
+ $input-btn-focus-width: 0 !default;
506
+ $input-btn-focus-color: rgba($component-active-bg, 1) !default;
507
+ $input-btn-focus-box-shadow: none !default;
505
508
 
506
- $input-btn-padding-y-lg: .875rem !default;
507
- $input-btn-padding-x-lg: 1rem !default;
508
- $input-btn-line-height-lg: $shape-height-lg !default;
509
+ $input-btn-padding-y-sm: 0.25rem !default;
510
+ $input-btn-padding-x-sm: 0.5rem !default;
511
+ $input-btn-line-height-sm: $shape-height-sm !default;
509
512
 
510
- $input-btn-border-width: 1px !default;
511
-
512
- $input-btn-font-size-sm: .75rem !default;
513
- $input-btn-font-size: .875rem !default;
514
- $input-btn-font-size-lg: .875rem !default;
513
+ $input-btn-padding-y-lg: 0.875rem !default;
514
+ $input-btn-padding-x-lg: 1rem !default;
515
+ $input-btn-line-height-lg: $shape-height-lg !default;
515
516
 
517
+ $input-btn-border-width: 1px !default;
516
518
 
519
+ $input-btn-font-size-sm: 0.75rem !default;
520
+ $input-btn-font-size: 0.875rem !default;
521
+ $input-btn-font-size-lg: 0.875rem !default;
517
522
 
518
523
  // Forms
519
524
 
520
- $input-padding-y: $input-btn-padding-y !default;
521
- $input-padding-x: $input-btn-padding-x !default;
522
- $input-line-height: $input-btn-line-height !default;
525
+ $input-padding-y: $input-btn-padding-y !default;
526
+ $input-padding-x: $input-btn-padding-x !default;
527
+ $input-line-height: $input-btn-line-height !default;
523
528
 
524
- $input-padding-y-sm: $input-btn-padding-y-sm !default;
525
- $input-padding-x-sm: $input-btn-padding-x-sm !default;
526
- $input-line-height-sm: $input-btn-line-height-sm !default;
529
+ $input-padding-y-sm: $input-btn-padding-y-sm !default;
530
+ $input-padding-x-sm: $input-btn-padding-x-sm !default;
531
+ $input-line-height-sm: $input-btn-line-height-sm !default;
527
532
 
528
- $input-padding-y-lg: $input-btn-padding-y-lg !default;
529
- $input-padding-x-lg: $input-btn-padding-x-lg !default;
530
- $input-line-height-lg: $input-btn-line-height-lg !default;
533
+ $input-padding-y-lg: $input-btn-padding-y-lg !default;
534
+ $input-padding-x-lg: $input-btn-padding-x-lg !default;
535
+ $input-line-height-lg: $input-btn-line-height-lg !default;
531
536
 
532
- $input-border-radius: $border-radius-sm !default;
533
- $input-border-radius-xl: $border-radius-xl !default;
534
- $input-border-radius-lg: $border-radius-lg !default;
535
- $input-border-radius-sm: $border-radius-sm !default;
537
+ $input-border-radius: $border-radius-sm !default;
538
+ $input-border-radius-xl: $border-radius-xl !default;
539
+ $input-border-radius-lg: $border-radius-lg !default;
540
+ $input-border-radius-sm: $border-radius-sm !default;
536
541
 
537
- $input-bg: $white !default;
538
- $input-disabled-bg: $gray-200 !default;
542
+ $input-bg: $white !default;
543
+ $input-disabled-bg: $gray-200 !default;
539
544
 
540
- $input-muted-bg: #F7FAFE !default;
541
- $input-focus-muted-bg: lighten($input-muted-bg, 1%) !default;
545
+ $input-muted-bg: #f7fafe !default;
546
+ $input-focus-muted-bg: lighten($input-muted-bg, 1%) !default;
542
547
 
543
- $input-color: $gray-600 !default;
544
- $input-border-color: $gray-300 !default;
545
- $input-border-width: $input-btn-border-width !default;
546
- $input-box-shadow: 0 3px 2px rgba($gray-200, .05) !default;
548
+ $input-color: $gray-600 !default;
549
+ $input-border-color: $gray-300 !default;
550
+ $input-border-width: $input-btn-border-width !default;
551
+ $input-box-shadow: 0 3px 2px rgba($gray-200, 0.05) !default;
547
552
 
548
- $input-focus-bg: $white !default;
549
- $input-focus-border-color: $primary !default;
550
- $input-focus-color: $input-color !default;
551
- $input-focus-width: 0 !default;
552
- $input-focus-box-shadow: 0 3px 9px rgba(50, 50, 9, 0), 3px 4px 8px rgba($primary, .1) !default;
553
+ $input-focus-bg: $white !default;
554
+ $input-focus-border-color: $primary !default;
555
+ $input-focus-color: $input-color !default;
556
+ $input-focus-width: 0 !default;
557
+ $input-focus-box-shadow: 0 3px 9px rgba(50, 50, 9, 0), 3px 4px 8px rgba($primary, 0.1) !default;
553
558
 
554
- $input-placeholder-color: $gray-500 !default;
555
- $input-focus-placeholder-color: $gray-500 !default;
559
+ $input-placeholder-color: $gray-500 !default;
560
+ $input-focus-placeholder-color: $gray-500 !default;
556
561
 
557
- $input-height-border: $input-border-width * 2 !default;
562
+ $input-height-border: $input-border-width * 2 !default;
558
563
 
559
- $input-transition: $transition-cubic-bezier !default;
564
+ $input-transition: $transition-cubic-bezier !default;
560
565
 
561
- $input-alternative-box-shadow: 0 1px 3px rgba(50,50,93,.15), 0 1px 0 rgba(0,0,0,.02) !default;
562
- $input-focus-alternative-box-shadow: 0 4px 6px rgba(50,50,93,.11),0 1px 3px rgba(0,0,0,.08) !default;
566
+ $input-alternative-box-shadow: 0 1px 3px rgba(50, 50, 93, 0.15), 0 1px 0 rgba(0, 0, 0, 0.02) !default;
567
+ $input-focus-alternative-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08) !default;
563
568
 
564
569
  // Form group
565
570
 
566
- $form-group-margin-bottom: 1.5rem !default;
567
-
571
+ $form-group-margin-bottom: 1.5rem !default;
568
572
 
569
573
  // Form validation
570
574
 
571
- $form-feedback-valid-bg: lighten($success, 15%) !default;
572
- $form-feedback-valid-color: theme-color("success") !default;
573
- $form-feedback-invalid-bg: lighten($warning, 15%) !default;
574
- $form-feedback-invalid-color: theme-color("warning") !default;
575
-
576
-
575
+ $form-feedback-valid-bg: lighten($success, 15%) !default;
576
+ $form-feedback-valid-color: theme-color("success") !default;
577
+ $form-feedback-invalid-bg: lighten($warning, 15%) !default;
578
+ $form-feedback-invalid-color: theme-color("warning") !default;
577
579
 
578
580
  // Input groups
579
581
 
580
- $input-group-addon-color: $input-placeholder-color !default;
581
- $input-group-addon-bg: $input-bg !default;
582
- $input-group-addon-border-color: $input-border-color !default;
583
-
584
- $input-group-addon-focus-color: $input-focus-color !default;
585
- $input-group-addon-focus-bg: $input-focus-bg !default;
586
- $input-group-addon-focus-border-color: $input-focus-border-color !default;
587
-
582
+ $input-group-addon-color: $input-placeholder-color !default;
583
+ $input-group-addon-bg: $input-bg !default;
584
+ $input-group-addon-border-color: $input-border-color !default;
588
585
 
586
+ $input-group-addon-focus-color: $input-focus-color !default;
587
+ $input-group-addon-focus-bg: $input-focus-bg !default;
588
+ $input-group-addon-focus-border-color: $input-focus-border-color !default;
589
589
 
590
590
  // Custom forms
591
591
 
592
- $custom-control-gutter: 1.75rem !default;
593
- $custom-control-spacer-x: 1rem !default;
594
- $custom-control-indicator-size: 1rem !default;
592
+ $custom-control-gutter: 1.75rem !default;
593
+ $custom-control-spacer-x: 1rem !default;
594
+ $custom-control-indicator-size: 1rem !default;
595
595
 
596
- $custom-control-indicator-bg: $input-bg !default;
597
- $custom-control-indicator-border-width: 1px !default;
598
- $custom-control-indicator-border-color: $input-border-color !default;
599
- $custom-control-indicator-box-shadow: $input-box-shadow !default;
596
+ $custom-control-indicator-bg: $input-bg !default;
597
+ $custom-control-indicator-border-width: 1px !default;
598
+ $custom-control-indicator-border-color: $input-border-color !default;
599
+ $custom-control-indicator-box-shadow: $input-box-shadow !default;
600
600
 
601
- $custom-control-indicator-focus-box-shadow: $custom-control-indicator-box-shadow !default;
601
+ $custom-control-indicator-focus-box-shadow: $custom-control-indicator-box-shadow !default;
602
602
 
603
- $custom-control-indicator-hover-color: $component-hover-color !default;
604
- $custom-control-indicator-hover-bg: $component-hover-bg !default;
605
- $custom-control-indicator-hover-border-color: $component-hover-border-color !default;
603
+ $custom-control-indicator-hover-color: $component-hover-color !default;
604
+ $custom-control-indicator-hover-bg: $component-hover-bg !default;
605
+ $custom-control-indicator-hover-border-color: $component-hover-border-color !default;
606
606
 
607
- $custom-control-indicator-active-color: $component-active-color !default;
608
- $custom-control-indicator-active-bg: $component-active-bg !default;
609
- $custom-control-indicator-active-border-color: $component-active-border-color !default;
610
- $custom-control-indicator-active-box-shadow: $custom-control-indicator-box-shadow !default;
607
+ $custom-control-indicator-active-color: $component-active-color !default;
608
+ $custom-control-indicator-active-bg: $component-active-bg !default;
609
+ $custom-control-indicator-active-border-color: $component-active-border-color !default;
610
+ $custom-control-indicator-active-box-shadow: $custom-control-indicator-box-shadow !default;
611
611
 
612
- $custom-control-indicator-checked-color: $component-active-color !default;
613
- $custom-control-indicator-checked-bg: $component-active-bg !default;
612
+ $custom-control-indicator-checked-color: $component-active-color !default;
613
+ $custom-control-indicator-checked-bg: $component-active-bg !default;
614
614
  $custom-control-indicator-checked-border-color: $component-active-border-color !default;
615
- $custom-control-indicator-checked-box-shadow: $custom-control-indicator-box-shadow !default;
616
- $custom-control-indicator-checked-disabled-bg: rgba(theme-color("primary"), .5) !default;
615
+ $custom-control-indicator-checked-box-shadow: $custom-control-indicator-box-shadow !default;
616
+ $custom-control-indicator-checked-disabled-bg: rgba(theme-color("primary"), 0.5) !default;
617
617
 
618
- $custom-control-indicator-disabled-bg: $gray-200 !default;
619
- $custom-control-label-disabled-color: $gray-600 !default;
618
+ $custom-control-indicator-disabled-bg: $gray-200 !default;
619
+ $custom-control-label-disabled-color: $gray-600 !default;
620
620
 
621
- $custom-checkbox-indicator-border-radius: $border-radius-sm !default;
621
+ $custom-checkbox-indicator-border-radius: $border-radius-sm !default;
622
622
  //$custom-checkbox-indicator-icon-checked: str-replace(url("data:image/svg+xml !default;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' 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;
623
623
 
624
624
  // Custom toggle
625
625
 
626
- $custom-toggle-width: 52px !default;
627
- $custom-toggle-slider-bg: $gray-200 !default;
628
- $custom-toggle-checked-bg: theme-color("primary") !default;
629
- $custom-toggle-border-color: $gray-400;
630
-
631
-
626
+ $custom-toggle-width: 52px !default;
627
+ $custom-toggle-slider-bg: $gray-200 !default;
628
+ $custom-toggle-checked-bg: theme-color("primary") !default;
629
+ $custom-toggle-border-color: $gray-400;
632
630
 
633
631
  // Buttons
634
632
 
635
- $btn-padding-y: $input-btn-padding-y !default;
636
- $btn-padding-x: $input-btn-padding-x + 0.5 !default;
637
- $btn-line-height: $input-btn-line-height !default;
633
+ $btn-padding-y: $input-btn-padding-y !default;
634
+ $btn-padding-x: $input-btn-padding-x + 0.5 !default;
635
+ $btn-line-height: $input-btn-line-height !default;
638
636
 
639
- $btn-padding-y-sm: $input-btn-padding-y-sm !default;
640
- $btn-padding-x-sm: $input-btn-padding-x-sm !default;
641
- $btn-line-height-sm: $input-btn-line-height-sm !default;
637
+ $btn-padding-y-sm: $input-btn-padding-y-sm !default;
638
+ $btn-padding-x-sm: $input-btn-padding-x-sm !default;
639
+ $btn-line-height-sm: $input-btn-line-height-sm !default;
642
640
 
643
- $btn-padding-y-lg: $input-btn-padding-y-lg !default;
644
- $btn-padding-x-lg: $input-btn-padding-x-lg !default;
645
- $btn-line-height-lg: $input-btn-line-height-lg !default;
641
+ $btn-padding-y-lg: $input-btn-padding-y-lg !default;
642
+ $btn-padding-x-lg: $input-btn-padding-x-lg !default;
643
+ $btn-line-height-lg: $input-btn-line-height-lg !default;
646
644
 
647
- $btn-border-width: $input-btn-border-width !default;
648
-
649
- $btn-font-weight: 600 !default;
650
- $btn-letter-spacing: .025em !default;
651
- $btn-text-transform: none !default;
652
- $btn-box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08) !default;
653
- $btn-hover-box-shadow: 0 7px 14px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08) !default;
654
- $btn-focus-box-shadow: $btn-hover-box-shadow !default;
655
- $btn-focus-width: $input-btn-focus-width !default;
656
- $btn-active-box-shadow: none !default;
657
- $btn-hover-translate-y: -1px !default;
645
+ $btn-border-width: $input-btn-border-width !default;
658
646
 
647
+ $btn-font-weight: 600 !default;
648
+ $btn-letter-spacing: 0.025em !default;
649
+ $btn-text-transform: none !default;
650
+ $btn-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08) !default;
651
+ $btn-hover-box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08) !default;
652
+ $btn-focus-box-shadow: $btn-hover-box-shadow !default;
653
+ $btn-focus-width: $input-btn-focus-width !default;
654
+ $btn-active-box-shadow: none !default;
655
+ $btn-hover-translate-y: -1px !default;
659
656
 
660
657
  // Allows for customizing button radius independently from global border radius
661
658
 
662
- $btn-border-radius: $input-border-radius !default;
663
- $btn-border-radius-xl: $input-border-radius-xl !default;
664
- $btn-border-radius-lg: $input-border-radius-lg !default;
665
- $btn-border-radius-sm: $input-border-radius !default;
666
-
667
-
659
+ $btn-border-radius: $input-border-radius !default;
660
+ $btn-border-radius-xl: $input-border-radius-xl !default;
661
+ $btn-border-radius-lg: $input-border-radius-lg !default;
662
+ $btn-border-radius-sm: $input-border-radius !default;
668
663
 
669
664
  // Dropdown
670
665
 
671
- $dropdown-bg: $white !default;
672
- $dropdown-border-width: 0 !default;
673
- $dropdown-border-color: rgba($black, .15) !default;
674
- $dropdown-border-radius: $border-radius-lg !default;
675
- $dropdown-box-shadow: 0 50px 100px rgba(50, 50, 93, .1), 0 15px 35px rgba(50, 50, 93, .15), 0 5px 15px rgba(0, 0, 0, .1) !default;
666
+ $dropdown-bg: $white !default;
667
+ $dropdown-border-width: 0 !default;
668
+ $dropdown-border-color: rgba($black, 0.15) !default;
669
+ $dropdown-border-radius: $border-radius-lg !default;
670
+ $dropdown-box-shadow: 0 50px 100px rgba(50, 50, 93, 0.1), 0 15px 35px rgba(50, 50, 93, 0.15),
671
+ 0 5px 15px rgba(0, 0, 0, 0.1) !default;
676
672
 
677
- $dropdown-link-color: $gray-900 !default;
678
- $dropdown-link-bg: $white !default;
673
+ $dropdown-link-color: $gray-900 !default;
674
+ $dropdown-link-bg: $white !default;
679
675
 
680
- $dropdown-link-hover-color: darken($gray-900, 5%) !default;
681
- $dropdown-link-hover-bg: $gray-100 !default;
682
-
683
- $dropdown-link-active-color: $dropdown-link-hover-color !default;
684
- $dropdown-link-active-bg: transparent !default;
685
-
686
- $dropdown-item-padding-y: .5rem !default;
687
- $dropdown-item-padding-x: 1rem !default;
676
+ $dropdown-link-hover-color: darken($gray-900, 5%) !default;
677
+ $dropdown-link-hover-bg: $gray-100 !default;
688
678
 
679
+ $dropdown-link-active-color: $dropdown-link-hover-color !default;
680
+ $dropdown-link-active-bg: transparent !default;
689
681
 
682
+ $dropdown-item-padding-y: 0.5rem !default;
683
+ $dropdown-item-padding-x: 1rem !default;
690
684
 
691
685
  // Map
692
686
 
693
687
  $map-height: 500px !default;
694
688
 
695
-
696
-
697
689
  // Navs
698
690
 
699
- $nav-link-padding-y: .25rem !default;
700
- $nav-link-padding-x: .75rem !default;
701
- $nav-link-color: $gray-700 !default;
702
- $nav-link-hover-color: theme-color("primary") !default;
703
- $nav-link-disabled-color: $gray-600 !default;
691
+ $nav-link-padding-y: 0.25rem !default;
692
+ $nav-link-padding-x: 0.75rem !default;
693
+ $nav-link-color: $gray-700 !default;
694
+ $nav-link-hover-color: theme-color("primary") !default;
695
+ $nav-link-disabled-color: $gray-600 !default;
704
696
 
705
- $nav-pills-padding-y: .75rem !default;
706
- $nav-pills-padding-x: 1rem !default;
697
+ $nav-pills-padding-y: 0.75rem !default;
698
+ $nav-pills-padding-x: 1rem !default;
707
699
 
708
- $nav-pills-space-x: 1rem !default;
709
-
710
- $nav-pills-bg: $white !default;
711
- $nav-pills-border-width: 1px !default;
712
- $nav-pills-border-color: theme-color("primary") !default;
713
- $nav-pills-border-radius: $border-radius !default;
714
-
715
- $nav-pills-link-color: theme-color("primary") !default;
716
- $nav-pills-link-hover-color: darken(theme-color("primary"), 5%) !default;
717
- $nav-pills-link-active-color: color-yiq(theme-color("primary")) !default;
718
- $nav-pills-link-active-bg: theme-color("primary") !default;
719
- $nav-pills-box-shadow: $btn-box-shadow !default;
700
+ $nav-pills-space-x: 1rem !default;
720
701
 
702
+ $nav-pills-bg: $white !default;
703
+ $nav-pills-border-width: 1px !default;
704
+ $nav-pills-border-color: theme-color("primary") !default;
705
+ $nav-pills-border-radius: $border-radius !default;
721
706
 
707
+ $nav-pills-link-color: theme-color("primary") !default;
708
+ $nav-pills-link-hover-color: darken(theme-color("primary"), 5%) !default;
709
+ $nav-pills-link-active-color: color-yiq(theme-color("primary")) !default;
710
+ $nav-pills-link-active-bg: theme-color("primary") !default;
711
+ $nav-pills-box-shadow: $btn-box-shadow !default;
722
712
 
723
713
  // Navbar
724
714
 
725
- $navbar-padding-y: 1rem !default;
726
- $navbar-padding-x: 1rem !default;
727
-
728
- $navbar-nav-link-padding-x: 1rem !default;
729
- $navbar-nav-link-padding-y: 1rem !default;
730
-
731
- $navbar-nav-link-font-size: .875rem !default;
732
- $navbar-nav-link-font-weight: 500 !default;
733
- $navbar-nav-link-text-transform: normal !default;
734
- $navbar-nav-link-letter-spacing: 0 !default;
735
- $navbar-nav-link-border-radius: $border-radius !default;
736
-
737
- $navbar-dark-bg: transparent !default;
738
- $navbar-dark-hover-bg: rgba(255, 255, 255, .1) !default;
739
- $navbar-dark-active-bg: rgba(255, 255, 255, .1) !default;
740
- $navbar-dark-border-color: rgba(255, 255, 255, .1) !default;
741
- $navbar-dark-color: rgba($white, .95) !default;
742
- $navbar-dark-hover-color: rgba($white, .65) !default;
743
- $navbar-dark-active-color: rgba($white, .65) !default;
744
- $navbar-dark-disabled-color: rgba($white, .25) !default;
745
- $navbar-dark-toggler-border-color: transparent !default;
746
-
747
- $navbar-light-bg: $gray-100 !default;
748
- $navbar-light-hover-bg: darken($gray-100, 5%) !default;
749
- $navbar-light-active-bg: darken($gray-100, 5%) !default;
750
- $navbar-light-border-color: rgba($black, .05) !default;
751
- $navbar-light-color: rgba($black, .6) !default;
752
- $navbar-light-hover-color: rgba($black, .7) !default;
753
- $navbar-light-active-color: rgba($black, .9) !default;
754
- $navbar-light-disabled-color: rgba($black, .3) !default;
755
- $navbar-light-toggler-border-color: transparent !default;
756
-
715
+ $navbar-padding-y: 1rem !default;
716
+ $navbar-padding-x: 1rem !default;
717
+
718
+ $navbar-nav-link-padding-x: 1rem !default;
719
+ $navbar-nav-link-padding-y: 1rem !default;
720
+
721
+ $navbar-nav-link-font-size: 0.875rem !default;
722
+ $navbar-nav-link-font-weight: 500 !default;
723
+ $navbar-nav-link-text-transform: normal !default;
724
+ $navbar-nav-link-letter-spacing: 0 !default;
725
+ $navbar-nav-link-border-radius: $border-radius !default;
726
+
727
+ $navbar-dark-bg: transparent !default;
728
+ $navbar-dark-hover-bg: rgba(255, 255, 255, 0.1) !default;
729
+ $navbar-dark-active-bg: rgba(255, 255, 255, 0.1) !default;
730
+ $navbar-dark-border-color: rgba(255, 255, 255, 0.1) !default;
731
+ $navbar-dark-color: rgba($white, 0.95) !default;
732
+ $navbar-dark-hover-color: rgba($white, 0.65) !default;
733
+ $navbar-dark-active-color: rgba($white, 0.65) !default;
734
+ $navbar-dark-disabled-color: rgba($white, 0.25) !default;
735
+ $navbar-dark-toggler-border-color: transparent !default;
736
+
737
+ $navbar-light-bg: $gray-100 !default;
738
+ $navbar-light-hover-bg: darken($gray-100, 5%) !default;
739
+ $navbar-light-active-bg: darken($gray-100, 5%) !default;
740
+ $navbar-light-border-color: rgba($black, 0.05) !default;
741
+ $navbar-light-color: rgba($black, 0.6) !default;
742
+ $navbar-light-hover-color: rgba($black, 0.7) !default;
743
+ $navbar-light-active-color: rgba($black, 0.9) !default;
744
+ $navbar-light-disabled-color: rgba($black, 0.3) !default;
745
+ $navbar-light-toggler-border-color: transparent !default;
757
746
 
758
747
  // Vertical navbar
759
748
 
760
- $navbar-vertical-box-shadow: 0 0 2rem 0 rgba(136, 152, 170, .15) !default;
761
- $navbar-vertical-border-color: rgba($black, .05) !default;
762
- $navbar-vertical-width: 62px !default;
763
- $navbar-vertical-open-width: 250px !default;
764
- $navbar-vertical-padding-x: 1.5rem !default;
765
- $navbar-vertical-nav-link-padding-x: 1.5rem !default;
766
- $navbar-vertical-nav-link-padding-y: .675rem !default;
749
+ $navbar-vertical-box-shadow: 0 0 2rem 0 rgba(136, 152, 170, 0.15) !default;
750
+ $navbar-vertical-border-color: rgba($black, 0.05) !default;
751
+ $navbar-vertical-width: 62px !default;
752
+ $navbar-vertical-open-width: 250px !default;
753
+ $navbar-vertical-padding-x: 1.5rem !default;
754
+ $navbar-vertical-nav-link-padding-x: 1.5rem !default;
755
+ $navbar-vertical-nav-link-padding-y: 0.675rem !default;
767
756
 
768
- $navbar-icon-min-width: 2rem !default;
757
+ $navbar-icon-min-width: 2rem !default;
769
758
 
770
- $navbar-breadcrumb-padding-y: $nav-link-padding-y !default;
771
- $navbar-breadcrumb-padding-x: 0 !default;
772
-
773
- $navbar-light-bg: $white !default;
774
- $navbar-light-border-color: $border-color !default;
759
+ $navbar-breadcrumb-padding-y: $nav-link-padding-y !default;
760
+ $navbar-breadcrumb-padding-x: 0 !default;
775
761
 
762
+ $navbar-light-bg: $white !default;
763
+ $navbar-light-border-color: $border-color !default;
776
764
 
777
765
  // Navbar search
778
766
 
779
- $navbar-search-width: 250px !default;
780
- $navbar-search-focus-width: 380px !default;
781
- $navbar-search-bg: transparent !default;
782
- $navbar-search-transition: $transition-cubic-bezier;
783
-
784
- $navbar-search-border-radius: 2rem !default;
785
- $navbar-search-border-width: 0 !default;
767
+ $navbar-search-width: 250px !default;
768
+ $navbar-search-focus-width: 380px !default;
769
+ $navbar-search-bg: transparent !default;
770
+ $navbar-search-transition: $transition-cubic-bezier;
786
771
 
787
- $navbar-search-dark-bg: rgba($default, .8) !default;
788
- $navbar-search-dark-focus-bg: rgba($default, .9) !default;
789
- $navbar-search-dark-border-color: rgba(255, 255, 255, .6) !default;
790
- $navbar-search-dark-color: rgba(255, 255, 255, .6) !default;
791
- $navbar-search-dark-focus-border-color: rgba(255, 255, 255, .9) !default;
792
- $navbar-search-dark-focus-color: rgba(255, 255, 255, .9) !default;
793
-
794
- $navbar-search-light-bg: rgba(255, 255, 255, .9) !default;
795
- $navbar-search-light-focus-bg: rgba(255, 255, 255, 1) !default;
796
- $navbar-search-light-border-color: rgba(0, 0, 0, .6) !default;
797
- $navbar-search-light-color: rgba(0, 0, 0, .6) !default;
798
- $navbar-search-light-focus-border-color: rgba(0, 0, 0, .9) !default;
799
- $navbar-search-light-focus-color: rgba(0, 0, 0, .9) !default;
772
+ $navbar-search-border-radius: 2rem !default;
773
+ $navbar-search-border-width: 0 !default;
800
774
 
775
+ $navbar-search-dark-bg: rgba($default, 0.8) !default;
776
+ $navbar-search-dark-focus-bg: rgba($default, 0.9) !default;
777
+ $navbar-search-dark-border-color: rgba(255, 255, 255, 0.6) !default;
778
+ $navbar-search-dark-color: rgba(255, 255, 255, 0.6) !default;
779
+ $navbar-search-dark-focus-border-color: rgba(255, 255, 255, 0.9) !default;
780
+ $navbar-search-dark-focus-color: rgba(255, 255, 255, 0.9) !default;
801
781
 
782
+ $navbar-search-light-bg: rgba(255, 255, 255, 0.9) !default;
783
+ $navbar-search-light-focus-bg: rgba(255, 255, 255, 1) !default;
784
+ $navbar-search-light-border-color: rgba(0, 0, 0, 0.6) !default;
785
+ $navbar-search-light-color: rgba(0, 0, 0, 0.6) !default;
786
+ $navbar-search-light-focus-border-color: rgba(0, 0, 0, 0.9) !default;
787
+ $navbar-search-light-focus-color: rgba(0, 0, 0, 0.9) !default;
802
788
 
803
789
  // Content
804
790
 
805
791
  $main-content-padding-y: 40px !default;
806
792
  $main-content-padding-x: 15px !default;
807
793
 
808
-
809
-
810
794
  // Alerts
811
795
 
812
796
  $alert-padding-y: 1rem !default;
@@ -817,186 +801,165 @@ $alert-bg-level: -2 !default;
817
801
  $alert-border-level: -2 !default;
818
802
  $alert-color-level: 0 !default;
819
803
 
820
-
821
-
822
804
  // List group
823
805
 
824
- $list-group-bg: $white !default;
825
- $list-group-border-color: $border-color !default; //rgba($black, .125);
826
- $list-group-border-width: $border-width !default;
827
- $list-group-border-radius: $border-radius !default;
806
+ $list-group-bg: $white !default;
807
+ $list-group-border-color: $border-color !default; //rgba($black, .125);
808
+ $list-group-border-width: $border-width !default;
809
+ $list-group-border-radius: $border-radius !default;
828
810
 
829
- $list-group-item-padding-y: 1rem !default;
830
- $list-group-item-padding-x: 1rem !default;
811
+ $list-group-item-padding-y: 1rem !default;
812
+ $list-group-item-padding-x: 1rem !default;
831
813
 
832
- $list-group-hover-bg: $gray-100 !default;
833
- $list-group-active-color: $component-active-color !default;
834
- $list-group-active-bg: $component-active-bg !default;
835
- $list-group-active-border-color: $list-group-active-bg !default;
814
+ $list-group-hover-bg: $gray-100 !default;
815
+ $list-group-active-color: $component-active-color !default;
816
+ $list-group-active-bg: $component-active-bg !default;
817
+ $list-group-active-border-color: $list-group-active-bg !default;
836
818
 
837
- $list-group-disabled-color: $gray-600 !default;
838
- $list-group-disabled-bg: $list-group-bg !default;
839
-
840
- $list-group-action-color: $gray-700 !default;
841
- $list-group-action-hover-color: $list-group-action-color !default;
842
-
843
- $list-group-action-active-color: $list-group-action-color !default;
844
- $list-group-action-active-bg: $gray-200 !default;
819
+ $list-group-disabled-color: $gray-600 !default;
820
+ $list-group-disabled-bg: $list-group-bg !default;
845
821
 
822
+ $list-group-action-color: $gray-700 !default;
823
+ $list-group-action-hover-color: $list-group-action-color !default;
846
824
 
825
+ $list-group-action-active-color: $list-group-action-color !default;
826
+ $list-group-action-active-bg: $gray-200 !default;
847
827
 
848
828
  // Close
849
829
 
850
- $close-font-size: $font-size-base * 1.5 !default;
851
- $close-font-weight: $font-weight-bold !default;
852
- $close-bg: transparent !default;
853
- $close-hover-bg: transparent !default;
854
- $close-color: rgba(0, 0, 0, .6) !default !default;
855
- $close-hover-color: rgba(0, 0, 0, .9) !default;
856
- $close-text-shadow: none !default;
857
-
858
-
830
+ $close-font-size: $font-size-base * 1.5 !default;
831
+ $close-font-weight: $font-weight-bold !default;
832
+ $close-bg: transparent !default;
833
+ $close-hover-bg: transparent !default;
834
+ $close-color: rgba(0, 0, 0, 0.6) !default !default;
835
+ $close-hover-color: rgba(0, 0, 0, 0.9) !default;
836
+ $close-text-shadow: none !default;
859
837
 
860
838
  // Popovers
861
839
 
862
- $popover-font-size: $font-size-sm !default;
863
- $popover-bg: $white !default;
864
- $popover-max-width: 276px !default;
865
- $popover-border-width: 1px !default;
866
- $popover-border-color: rgba($black, .05) !default;
867
- $popover-border-radius: $border-radius-lg !default;
868
- $popover-box-shadow: 0px .5rem 2rem 0px rgba($black, .2) !default;
840
+ $popover-font-size: $font-size-sm !default;
841
+ $popover-bg: $white !default;
842
+ $popover-max-width: 276px !default;
843
+ $popover-border-width: 1px !default;
844
+ $popover-border-color: rgba($black, 0.05) !default;
845
+ $popover-border-radius: $border-radius-lg !default;
846
+ $popover-box-shadow: 0px 0.5rem 2rem 0px rgba($black, 0.2) !default;
869
847
 
870
- $popover-header-bg: $popover-bg !default;
871
- $popover-header-color: $headings-color !default;
872
- $popover-header-padding-y: .5rem !default;
873
- $popover-header-padding-x: .95rem !default;
848
+ $popover-header-bg: $popover-bg !default;
849
+ $popover-header-color: $headings-color !default;
850
+ $popover-header-padding-y: 0.5rem !default;
851
+ $popover-header-padding-x: 0.95rem !default;
874
852
 
875
- $popover-body-color: $body-color !default;
876
- $popover-body-padding-y: $popover-header-padding-y !default;
877
- $popover-body-padding-x: $popover-header-padding-x !default;
878
-
879
- $popover-arrow-width: 1rem !default;
880
- $popover-arrow-height: .5rem !default;
881
- $popover-arrow-color: $popover-bg !default;
882
-
883
- $popover-arrow-outer-color: transparent !default;
853
+ $popover-body-color: $body-color !default;
854
+ $popover-body-padding-y: $popover-header-padding-y !default;
855
+ $popover-body-padding-x: $popover-header-padding-x !default;
884
856
 
857
+ $popover-arrow-width: 1rem !default;
858
+ $popover-arrow-height: 0.5rem !default;
859
+ $popover-arrow-color: $popover-bg !default;
885
860
 
861
+ $popover-arrow-outer-color: transparent !default;
886
862
 
887
863
  // Badges
888
864
 
889
- $badge-font-size: 66% !default;
890
- $badge-font-weight: $font-weight-bold !default;
891
- $badge-padding-y: .35rem !default;
892
- $badge-padding-x: .375rem !default;
893
- $badge-border-radius: $border-radius !default;
894
- $badge-text-transfom: uppercase;
895
-
896
- $badge-pill-padding-x: .875em !default;
897
- $badge-pill-border-radius: 10rem !default;
898
-
899
- $badge-circle-size: 2rem !default;
865
+ $badge-font-size: 66% !default;
866
+ $badge-font-weight: $font-weight-bold !default;
867
+ $badge-padding-y: 0.35rem !default;
868
+ $badge-padding-x: 0.375rem !default;
869
+ $badge-border-radius: $border-radius !default;
870
+ $badge-text-transfom: uppercase;
900
871
 
872
+ $badge-pill-padding-x: 0.875em !default;
873
+ $badge-pill-border-radius: 10rem !default;
901
874
 
875
+ $badge-circle-size: 2rem !default;
902
876
 
903
877
  // Pagination
904
878
 
905
- $pagination-color: $gray-600 !default;
906
- $pagination-bg: $white !default;
907
- $pagination-border-width: $border-width !default;
908
- $pagination-border-color: $gray-300 !default;
909
-
910
- $pagination-hover-color: $gray-600 !default;
911
- $pagination-hover-bg: $gray-300 !default;
912
- $pagination-hover-border-color: $gray-300 !default;
879
+ $pagination-color: $gray-600 !default;
880
+ $pagination-bg: $white !default;
881
+ $pagination-border-width: $border-width !default;
882
+ $pagination-border-color: $gray-300 !default;
913
883
 
914
- $pagination-active-color: $component-active-color !default;
915
- $pagination-active-bg: $component-active-bg !default;
916
- $pagination-active-border-color: $pagination-active-bg !default;
917
- $pagination-active-box-shadow: $btn-hover-box-shadow !default;
918
-
919
- $pagination-disabled-color: $gray-600 !default;
920
- $pagination-disabled-bg: $white !default;
921
- $pagination-disabled-border-color: $gray-300 !default;
884
+ $pagination-hover-color: $gray-600 !default;
885
+ $pagination-hover-bg: $gray-300 !default;
886
+ $pagination-hover-border-color: $gray-300 !default;
922
887
 
888
+ $pagination-active-color: $component-active-color !default;
889
+ $pagination-active-bg: $component-active-bg !default;
890
+ $pagination-active-border-color: $pagination-active-bg !default;
891
+ $pagination-active-box-shadow: $btn-hover-box-shadow !default;
923
892
 
893
+ $pagination-disabled-color: $gray-600 !default;
894
+ $pagination-disabled-bg: $white !default;
895
+ $pagination-disabled-border-color: $gray-300 !default;
924
896
 
925
897
  // Cards
926
898
 
927
- $card-spacer-y: 1.25rem !default;
928
- $card-spacer-x: 1.5rem !default;
929
- $card-border-width: $border-width !default;
930
- $card-border-radius: $border-radius !default;
931
- $card-border-color: rgba($black, .05) !default;
932
- $card-inner-border-radius: calc(#{$card-border-radius} - #{$card-border-width}) !default;
933
- $card-cap-bg: $white !default;
934
- $card-bg: $white !default;
935
- $card-box-shadow: $box-shadow !default;
936
-
937
- $card-img-overlay-padding: 1.25rem !default;
938
-
939
- $card-columns-count: 3 !default;
940
- $card-columns-gap: 1.25rem !default;
941
- $card-columns-margin: $card-spacer-y !default;
899
+ $card-spacer-y: 1.25rem !default;
900
+ $card-spacer-x: 1.5rem !default;
901
+ $card-border-width: $border-width !default;
902
+ $card-border-radius: $border-radius !default;
903
+ $card-border-color: rgba($black, 0.05) !default;
904
+ $card-inner-border-radius: calc(#{$card-border-radius} - #{$card-border-width}) !default;
905
+ $card-cap-bg: $white !default;
906
+ $card-bg: $white !default;
907
+ $card-box-shadow: $box-shadow !default;
942
908
 
909
+ $card-img-overlay-padding: 1.25rem !default;
943
910
 
911
+ $card-columns-count: 3 !default;
912
+ $card-columns-gap: 1.25rem !default;
913
+ $card-columns-margin: $card-spacer-y !default;
944
914
 
945
915
  // Tooltips
946
916
 
947
- $tooltip-font-size: $font-size-sm !default;
948
-
949
-
917
+ $tooltip-font-size: $font-size-sm !default;
950
918
 
951
919
  // Modals
952
920
 
953
- $modal-inner-padding: 1.5rem !default;
921
+ $modal-inner-padding: 1.5rem !default;
954
922
 
955
- $modal-xl: 1100px !default;
956
- $modal-lg: 800px !default;
957
- $modal-md: 500px !default;
958
- $modal-sm: 380px !default;
923
+ $modal-xl: 1100px !default;
924
+ $modal-lg: 800px !default;
925
+ $modal-md: 500px !default;
926
+ $modal-sm: 380px !default;
959
927
 
960
- $modal-title-font-size: $h3-font-size !default;
961
- $modal-title-line-height: 1.1 !default;
962
-
963
- $modal-content-bg: $white !default;
964
- $modal-content-border-color: rgba($black, .2) !default;
965
- $modal-content-border-width: 0 !default;
966
- $modal-content-border-radius: $border-radius-lg !default;
967
- $modal-content-box-shadow-xs: 0 15px 35px rgba(50,50,93,.2), 0 5px 15px rgba(0,0,0,.17) !default;
968
- $modal-content-box-shadow-sm-up: 0 15px 35px rgba(50,50,93,.2), 0 5px 15px rgba(0,0,0,.17) !default;
969
-
970
- $modal-backdrop-bg: $black !default;
971
- $modal-backdrop-opacity: .16 !default;
972
- $modal-header-border-color: $gray-200 !default;
973
- $modal-footer-border-color: $modal-header-border-color !default;
974
- $modal-header-border-width: $modal-content-border-width !default;
975
- $modal-footer-border-width: $modal-header-border-width !default;
976
- $modal-header-padding: 1.25rem !default;
928
+ $modal-title-font-size: $h3-font-size !default;
929
+ $modal-title-line-height: 1.1 !default;
977
930
 
931
+ $modal-content-bg: $white !default;
932
+ $modal-content-border-color: rgba($black, 0.2) !default;
933
+ $modal-content-border-width: 0 !default;
934
+ $modal-content-border-radius: $border-radius-lg !default;
935
+ $modal-content-box-shadow-xs: 0 15px 35px rgba(50, 50, 93, 0.2), 0 5px 15px rgba(0, 0, 0, 0.17) !default;
936
+ $modal-content-box-shadow-sm-up: 0 15px 35px rgba(50, 50, 93, 0.2), 0 5px 15px rgba(0, 0, 0, 0.17) !default;
978
937
 
938
+ $modal-backdrop-bg: $black !default;
939
+ $modal-backdrop-opacity: 0.16 !default;
940
+ $modal-header-border-color: $gray-200 !default;
941
+ $modal-footer-border-color: $modal-header-border-color !default;
942
+ $modal-header-border-width: $modal-content-border-width !default;
943
+ $modal-footer-border-width: $modal-header-border-width !default;
944
+ $modal-header-padding: 1.25rem !default;
979
945
 
980
946
  // Footer
981
947
 
982
- $footer-padding-y: 30px;
983
- $footer-padding-x: 0;
984
-
985
- $footer-link-font-size: .85rem !default;
986
- $footer-bg: $body-bg !default;
987
- $footer-color: $gray-600 !default;
988
- $footer-link-color: $gray-600 !default;
989
- $footer-link-hover-color: $gray-700 !default;
990
- $footer-heading-color: $gray-600 !default;
991
- $footer-heading-font-size: $font-size-sm !default;
992
-
948
+ $footer-padding-y: 30px;
949
+ $footer-padding-x: 0;
993
950
 
951
+ $footer-link-font-size: 0.85rem !default;
952
+ $footer-bg: $body-bg !default;
953
+ $footer-color: $gray-600 !default;
954
+ $footer-link-color: $gray-600 !default;
955
+ $footer-link-hover-color: $gray-700 !default;
956
+ $footer-heading-color: $gray-600 !default;
957
+ $footer-heading-font-size: $font-size-sm !default;
994
958
 
995
959
  //
996
960
  // Plugins
997
961
  //
998
962
 
999
-
1000
963
  // Datepicker
1001
964
 
1002
965
  $datepicker-border-radius: $card-border-radius !default;
@@ -1015,7 +978,7 @@ $datepicker-header-cell-border-radius: $border-radius !default;
1015
978
 
1016
979
  $datepicker-active-color: $white !default;
1017
980
  $datepicker-active-background: theme-color("primary") !default;
1018
- $datepicker-active-box-shadow: none !default;
981
+ $datepicker-active-box-shadow: none !default;
1019
982
 
1020
983
  $datepicker-range-background: theme-color("primary") !default;
1021
984
  $datepicker-range-cell-focused-background: darken($datepicker-range-background, 5%);
@@ -1026,28 +989,23 @@ $datepicker-dropdown-border: lighten($gray-400, 40%);
1026
989
  $datepicker-dropdown-bg: $white !default;
1027
990
  $datepicker-highlighted-bg: $datepicker-active-background !default;
1028
991
 
1029
-
1030
-
1031
992
  // NoUISlider
1032
993
 
1033
- $noui-target-bg: #eceeef !default;
1034
- $noui-target-thickness: 5px !default;
1035
- $noui-target-border-radius: 5px !default;
1036
- $noui-target-border-color: 0 !default;
1037
- $noui-target-box-shadow: inset 0 1px 2px rgba(90,97,105,.1) !default;
994
+ $noui-target-bg: #eceeef !default;
995
+ $noui-target-thickness: 5px !default;
996
+ $noui-target-border-radius: 5px !default;
997
+ $noui-target-border-color: 0 !default;
998
+ $noui-target-box-shadow: inset 0 1px 2px rgba(90, 97, 105, 0.1) !default;
1038
999
 
1039
- $noui-slider-connect-bg: $primary !default;
1000
+ $noui-slider-connect-bg: $primary !default;
1040
1001
  $noui-slider-connect-disabled-bg: #b2b2b2 !default;
1041
1002
 
1042
- $noui-handle-width: 15px !default;
1043
- $noui-handle-bg: theme-color("primary") !default;
1044
- $noui-handle-border: 0 !default;
1045
- $noui-handle-border-radius: 100% !default;
1046
-
1047
- $noui-origin-border-radius: 2px !default;
1048
-
1049
-
1003
+ $noui-handle-width: 15px !default;
1004
+ $noui-handle-bg: theme-color("primary") !default;
1005
+ $noui-handle-border: 0 !default;
1006
+ $noui-handle-border-radius: 100% !default;
1050
1007
 
1008
+ $noui-origin-border-radius: 2px !default;
1051
1009
 
1052
1010
  //
1053
1011
  // PRO components and plugins
@@ -1055,28 +1013,23 @@ $noui-origin-border-radius: 2px !default;
1055
1013
  // URL:
1056
1014
  //
1057
1015
 
1058
-
1059
-
1060
-
1061
1016
  // Breadcrumb
1062
1017
 
1063
- $breadcrumb-padding-y: .5rem !default;
1064
- $breadcrumb-padding-x: 1rem !default;
1065
- $breadcrumb-item-padding: .5rem !default;
1066
- $breadcrumb-margin-bottom: 1rem !default;
1067
- $breadcrumb-bg: $gray-100 !default;
1068
- $breadcrumb-divider-color: $gray-600 !default;
1069
- $breadcrumb-active-color: $gray-600 !default;
1070
- $breadcrumb-divider: quote("-") !default;
1071
- $breadcrumb-border-radius: $border-radius !default;
1072
-
1073
- $breadcrumb-dark-bg: $default !default;
1074
- $breadcrumb-dark-color: $gray-100 !default;
1075
- $breadcrumb-dark-hover-color: $white !default;
1076
- $breadcrumb-dark-active-color: $gray-300 !default;
1077
- $breadcrumb-dark-divider-color: $gray-500 !default;
1078
-
1079
-
1018
+ $breadcrumb-padding-y: 0.5rem !default;
1019
+ $breadcrumb-padding-x: 1rem !default;
1020
+ $breadcrumb-item-padding: 0.5rem !default;
1021
+ $breadcrumb-margin-bottom: 1rem !default;
1022
+ $breadcrumb-bg: $gray-100 !default;
1023
+ $breadcrumb-divider-color: $gray-600 !default;
1024
+ $breadcrumb-active-color: $gray-600 !default;
1025
+ $breadcrumb-divider: quote("-") !default;
1026
+ $breadcrumb-border-radius: $border-radius !default;
1027
+
1028
+ $breadcrumb-dark-bg: $default !default;
1029
+ $breadcrumb-dark-color: $gray-100 !default;
1030
+ $breadcrumb-dark-hover-color: $white !default;
1031
+ $breadcrumb-dark-active-color: $gray-300 !default;
1032
+ $breadcrumb-dark-divider-color: $gray-500 !default;
1080
1033
 
1081
1034
  // Timeline
1082
1035
 
@@ -1087,13 +1040,10 @@ $timeline-step-bg: $white !default;
1087
1040
  $timeline-step-border-width: 2px !default;
1088
1041
  $timeline-step-border-color: $timeline-axis-color !default;
1089
1042
 
1090
-
1091
-
1092
1043
  //
1093
1044
  // Plugins
1094
1045
  //
1095
1046
 
1096
-
1097
1047
  // Chart
1098
1048
 
1099
1049
  $chart-height: 350px !default;
@@ -1104,32 +1054,24 @@ $chart-legend-font-size: $font-size-sm !default;
1104
1054
  $chart-legend-color: $text-muted !default;
1105
1055
  $chart-legend-height: $chart-legend-margin-top + $chart-legend-font-size * $line-height-base !default;
1106
1056
 
1107
-
1108
-
1109
1057
  // Sweet alert
1110
1058
 
1111
- $swal2-width: 30em;
1112
- $swal2-padding: 1.5rem;
1113
- $swal2-title-font-size: 1.5rem;
1114
- $swal2-content-font-size: .875rem;
1115
-
1116
-
1059
+ $swal2-width: 30em;
1060
+ $swal2-padding: 1.5rem;
1061
+ $swal2-title-font-size: 1.5rem;
1062
+ $swal2-content-font-size: 0.875rem;
1117
1063
 
1118
1064
  // Tags
1119
1065
 
1120
- $tags-input-border-width: 0;
1121
- $tags-input-border-color: transparent;
1122
- $tags-input-color: $gray-600;
1123
-
1124
- $tag-bg: theme-color("default");
1125
- $tag-color: color-yiq(theme-color("default"));
1126
- $tag-close-color: color-yiq(theme-color("default"));
1127
- $tag-box-shadow: 0 1px 2px rgba(68,68,68,0.25);
1128
-
1129
-
1066
+ $tags-input-border-width: 0;
1067
+ $tags-input-border-color: transparent;
1068
+ $tags-input-color: $gray-600;
1130
1069
 
1070
+ $tag-bg: theme-color("default");
1071
+ $tag-color: color-yiq(theme-color("default"));
1072
+ $tag-close-color: color-yiq(theme-color("default"));
1073
+ $tag-box-shadow: 0 1px 2px rgba(68, 68, 68, 0.25);
1131
1074
 
1132
1075
  // Import Bootstrap variable defaults
1133
1076
 
1134
1077
  @import "~bootstrap/scss/variables";
1135
-