@finqu/cool 1.3.0 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. package/README.md +23 -9
  2. package/dist/css/cool.css +13391 -7742
  3. package/dist/css/cool.css.map +1 -1
  4. package/dist/css/cool.min.css +2 -93
  5. package/dist/css/cool.min.css.map +1 -1
  6. package/dist/js/cool.bundle.js +16051 -17050
  7. package/dist/js/cool.bundle.js.map +1 -1
  8. package/dist/js/cool.bundle.min.js +11 -18
  9. package/dist/js/cool.bundle.min.js.map +1 -1
  10. package/dist/js/cool.esm.js +3469 -4468
  11. package/dist/js/cool.esm.js.map +1 -1
  12. package/dist/js/cool.esm.min.js +2 -8
  13. package/dist/js/cool.esm.min.js.map +1 -1
  14. package/dist/js/cool.js +5083 -6089
  15. package/dist/js/cool.js.map +1 -1
  16. package/dist/js/cool.min.js +2 -8
  17. package/dist/js/cool.min.js.map +1 -1
  18. package/package.json +48 -16
  19. package/scss/LISENCE +15 -0
  20. package/scss/_badge.scss +134 -0
  21. package/scss/_button-group.scss +80 -0
  22. package/scss/_buttons.scss +304 -0
  23. package/scss/_dark.scss +637 -0
  24. package/scss/_dialog.scss +351 -0
  25. package/scss/_dropdown.scss +165 -0
  26. package/scss/_forms.scss +613 -0
  27. package/scss/_frame.scss +948 -0
  28. package/scss/_grid.scss +215 -0
  29. package/scss/_input-group.scss +326 -0
  30. package/scss/_list-group.scss +127 -0
  31. package/scss/_media.scss +439 -0
  32. package/scss/_navbar.scss +122 -0
  33. package/scss/_notification.scss +115 -0
  34. package/scss/_pagination.scss +82 -0
  35. package/scss/_popover.scss +61 -0
  36. package/scss/_reboot.scss +306 -0
  37. package/scss/_root.scss +848 -0
  38. package/scss/_section.scss +735 -0
  39. package/scss/_select.scss +559 -0
  40. package/scss/_tables.scss +611 -0
  41. package/scss/_tabs.scss +50 -0
  42. package/scss/_toast.scss +277 -0
  43. package/scss/_tooltip.scss +130 -0
  44. package/scss/_typography.scss +166 -0
  45. package/scss/_variables.scss +1229 -0
  46. package/scss/cool.scss +69 -0
  47. package/scss/utilities/_align.scss +51 -0
  48. package/scss/utilities/_animation.scss +165 -0
  49. package/scss/utilities/_background.scss +72 -0
  50. package/scss/utilities/_borders.scss +205 -0
  51. package/scss/utilities/_collapse.scss +28 -0
  52. package/scss/utilities/_cursor.scss +160 -0
  53. package/scss/utilities/_display.scss +116 -0
  54. package/scss/utilities/_embed.scss +89 -0
  55. package/scss/utilities/_fill.scss +79 -0
  56. package/scss/utilities/_filters.scss +233 -0
  57. package/scss/utilities/_flex.scss +216 -0
  58. package/scss/utilities/_grid.scss +136 -0
  59. package/scss/utilities/_opacity.scss +131 -0
  60. package/scss/utilities/_overflow.scss +242 -0
  61. package/scss/utilities/_perfect-scrollbar.scss +147 -0
  62. package/scss/utilities/_pointer-events.scss +125 -0
  63. package/scss/utilities/_position.scss +130 -0
  64. package/scss/utilities/_screen-readers.scss +95 -0
  65. package/scss/utilities/_shadows.scss +195 -0
  66. package/scss/utilities/_sizing.scss +288 -0
  67. package/scss/utilities/_spacing.scss +168 -0
  68. package/scss/utilities/_stroke.scss +124 -0
  69. package/scss/utilities/_text.scss +420 -0
  70. package/scss/utilities/_transform.scss +232 -0
  71. package/scss/utilities/_transitions.scss +147 -0
  72. package/scss/utilities/_user-select.scss +93 -0
  73. package/scss/utilities/_visibility.scss +66 -0
  74. package/scss/utilities/_z-index.scss +169 -0
@@ -0,0 +1,1229 @@
1
+ /* Variables ========================================================================== */
2
+ @use "sass:math";
3
+ @use "sass:map";
4
+ @use "sass:list";
5
+ @use "sass:string";
6
+ @use "sass:color";
7
+ @use "sass:meta";
8
+
9
+ $cool-use-layers: true !default;
10
+ $cool-use-component-layer: $cool-use-layers !default;
11
+ $cool-use-utilities-layer: $cool-use-layers !default;
12
+ $cool-use-base-layer: $cool-use-layers !default;
13
+
14
+ $cool-enable-dark-mode: true !default;
15
+
16
+ @function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map.keys($breakpoints)) {
17
+ $n: list.index($breakpoint-names, $name);
18
+
19
+ @if $n != null and $n < list.length($breakpoint-names) {
20
+ @return list.nth($breakpoint-names, $n + 1);
21
+ } @else {
22
+ @return null;
23
+ }
24
+ }
25
+
26
+ @function breakpoint-min($name, $breakpoints: $grid-breakpoints) {
27
+ $min: map.get($breakpoints, $name);
28
+
29
+ @if $min != 0 {
30
+ @return $min;
31
+ } @else {
32
+ @return null;
33
+ }
34
+ }
35
+
36
+ @function breakpoint-max($name, $breakpoints: $grid-breakpoints) {
37
+ $next: breakpoint-next($name, $breakpoints);
38
+
39
+ @if $next {
40
+ @return breakpoint-min($next, $breakpoints) - 0.02;
41
+ } @else {
42
+ @return null;
43
+ }
44
+ }
45
+
46
+ @function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {
47
+ @if breakpoint-min($name, $breakpoints) == null {
48
+ @return "";
49
+ } @else {
50
+ @return "-#{$name}";
51
+ }
52
+ }
53
+
54
+ @function color($key) {
55
+ @if map.has-key($colors, $key) {
56
+ @return map.get($colors, $key);
57
+ }
58
+
59
+ @warn "Unknown `#{$key}` in $colors.";
60
+ @return null;
61
+ }
62
+
63
+ @function theme-color($key) {
64
+ @if map.has-key($theme-colors, $key) {
65
+ @return map.get($theme-colors, $key);
66
+ }
67
+
68
+ @warn "Unknown `#{$key}` in $theme-colors.";
69
+ @return null;
70
+ }
71
+
72
+ @function theme-foreground-color($key) {
73
+ @if map.has-key($theme-foreground-colors, $key) {
74
+ @return map.get($theme-foreground-colors, $key);
75
+ }
76
+
77
+ @warn "Unknown `#{$key}` in $theme-foreground-colors.";
78
+ @return null;
79
+ }
80
+
81
+ @function theme-bg-color($key) {
82
+ @if map.has-key($theme-bg-colors, $key) {
83
+ @return map.get($theme-bg-colors, $key);
84
+ }
85
+
86
+ @warn "Unknown `#{$key}` in $theme-bg-colors.";
87
+ @return null;
88
+ }
89
+
90
+ @function theme-text-color($key) {
91
+ @if map.has-key($theme-text-colors, $key) {
92
+ @return map.get($theme-text-colors, $key);
93
+ }
94
+
95
+ @warn "Unknown `#{$key}` in $theme-text-colors.";
96
+ @return null;
97
+ }
98
+
99
+ @mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {
100
+ $min: breakpoint-min($name, $breakpoints);
101
+
102
+ @if $min {
103
+ @media (min-width: $min) {
104
+ @content;
105
+ }
106
+ } @else {
107
+ @content;
108
+ }
109
+ }
110
+
111
+ @mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {
112
+ $max: breakpoint-max($name, $breakpoints);
113
+
114
+ @if $max {
115
+ @media (max-width: $max) {
116
+ @content;
117
+ }
118
+ } @else {
119
+ @content;
120
+ }
121
+ }
122
+
123
+ // Sidebar right custom media queries
124
+ @mixin media-breakpoint-sidebar-right-up() {
125
+ @media (min-width: $frame-sidebar-right-breakpoint) {
126
+ @content;
127
+ }
128
+ }
129
+
130
+ @mixin media-breakpoint-sidebar-right-down() {
131
+ @media (max-width: calc($frame-sidebar-right-breakpoint - 0.02px)) {
132
+ @content;
133
+ }
134
+ }
135
+
136
+ // Container query mixins
137
+ @mixin container-query-up($name, $breakpoints: $grid-breakpoints) {
138
+ $min: breakpoint-min($name, $breakpoints);
139
+
140
+ @if $min {
141
+ @container (width >=#{$min}) {
142
+ @content;
143
+ }
144
+ } @else {
145
+ @content;
146
+ }
147
+ }
148
+
149
+ @mixin container-query-down($name, $breakpoints: $grid-breakpoints) {
150
+ $max: breakpoint-max($name, $breakpoints);
151
+
152
+ @if $max {
153
+ @container (width <=#{$max}) {
154
+ @content;
155
+ }
156
+ } @else {
157
+ @content;
158
+ }
159
+ }
160
+
161
+ @mixin text-truncate-adjust(
162
+ $lines: 1,
163
+ $font-size: var(--cool-font-size-base),
164
+ $line-height: var(--cool-line-height-base),
165
+ $fixed-height: false
166
+ ) {
167
+ -webkit-box-orient: vertical;
168
+ -webkit-line-clamp: $lines;
169
+
170
+ @if $fixed-height {
171
+ height: calc($font-size * $line-height * $lines);
172
+ }
173
+
174
+ &.text-truncate-fixed {
175
+ height: calc($font-size * $line-height * $lines);
176
+ }
177
+
178
+ &:after {
179
+ width: calc($font-size * $line-height * 4);
180
+ height: calc($font-size * $line-height);
181
+ }
182
+
183
+ & small,
184
+ &.small {
185
+ @if $fixed-height {
186
+ height: calc($font-size * var(--cool-small-font-size) * 0.01 * $line-height * $lines);
187
+ }
188
+
189
+ &.text-truncate-fixed {
190
+ height: calc($font-size * var(--cool-small-font-size) * 0.01 * $line-height * $lines);
191
+ }
192
+
193
+ &:after {
194
+ width: calc($font-size * var(--cool-small-font-size) * 0.01 * $line-height * 4);
195
+ height: calc($font-size * var(--cool-small-font-size) * 0.01 * $line-height);
196
+ }
197
+ }
198
+ }
199
+
200
+ @mixin text-truncate-generate(
201
+ $font-size: var(--cool-font-size-base),
202
+ $line-height: var(--cool-line-height-base),
203
+ $fixed-height: false
204
+ ) {
205
+ & {
206
+ @include text-truncate-adjust(1, $font-size, $line-height, $fixed-height);
207
+
208
+ &.text-truncate-lines-2 {
209
+ @include text-truncate-adjust(2, $font-size, $line-height, $fixed-height);
210
+ }
211
+
212
+ &.text-truncate-lines-3 {
213
+ @include text-truncate-adjust(3, $font-size, $line-height, $fixed-height);
214
+ }
215
+
216
+ &.text-truncate-lines-4 {
217
+ @include text-truncate-adjust(4, $font-size, $line-height, $fixed-height);
218
+ }
219
+
220
+ &.text-truncate-lines-5 {
221
+ @include text-truncate-adjust(5, $font-size, $line-height, $fixed-height);
222
+ }
223
+ }
224
+ }
225
+
226
+ @mixin text-truncate(
227
+ $font-size: var(--cool-font-size-base),
228
+ $line-height: var(--cool-line-height-base),
229
+ $fixed-height: false,
230
+ $background: white
231
+ ) {
232
+ display: -webkit-box !important;
233
+ overflow: hidden !important;
234
+ text-overflow: ellipsis !important;
235
+ position: relative !important;
236
+
237
+ &:after {
238
+ position: absolute;
239
+ right: 0;
240
+ bottom: 0;
241
+ content: "";
242
+ max-height: 100%;
243
+ background: linear-gradient(to right, rgb(from #{$background} r g b / 0), #{$background});
244
+ pointer-events: none;
245
+ }
246
+
247
+ @include text-truncate-generate($font-size, $line-height, $fixed-height);
248
+ }
249
+
250
+ // grey-lightest
251
+ $grey-50: #f5f9ff !default;
252
+ $grey-100: #eff3fa !default;
253
+ $grey-150: #dfe4eb !default;
254
+
255
+ // grey-lighter
256
+ $grey-200: #cfd5df !default;
257
+
258
+ $grey-250: #cfd5df !default;
259
+ $grey-300: #cfd5df !default;
260
+ // grey-light
261
+ $grey-350: #cfd5df !default;
262
+ $grey-400: #abb5c4 !default;
263
+ $grey-450: #8694a9 !default;
264
+
265
+ // grey
266
+ $grey-500: #62748e !default;
267
+ $grey-550: #5b697e !default;
268
+ $grey-600: #545e6d !default;
269
+
270
+ // grey-dark
271
+ $grey-650: #4d535d !default;
272
+
273
+ $grey-700: #404451 !default;
274
+ $grey-750: #323545 !default;
275
+
276
+ // grey-darker
277
+ $grey-800: #363a4e !default;
278
+ $grey-850: #25293c !default;
279
+ $grey-900: #13172a !default;
280
+
281
+ // grey-darkest
282
+ $grey-950: #020618 !default;
283
+
284
+ // Legacy support
285
+ $colors: () !default;
286
+ $colors: map.merge(
287
+ (
288
+ "grey-lightest": $grey-50,
289
+ "grey-lighter": $grey-200,
290
+ "grey-light": $grey-350,
291
+ "grey": $grey-500,
292
+ "grey-dark": $grey-650,
293
+ "grey-darker": $grey-800,
294
+ "grey-darkest": $grey-950,
295
+ ),
296
+ $colors
297
+ );
298
+
299
+ $theme-colors: () !default;
300
+ $theme-colors: map.merge(
301
+ (
302
+ "primary": #0c0e1d,
303
+ "secondary": #d0d9e4,
304
+ "success": #62b47f,
305
+ "info": #448bbf,
306
+ "warning": #f0a030,
307
+ "danger": #d86783,
308
+ "light": #eff3fa,
309
+ "medium": #62748e,
310
+ "dark": #020618,
311
+ "brand": #e70d68,
312
+ ),
313
+ $theme-colors
314
+ );
315
+
316
+ $theme-foreground-colors: () !default;
317
+ $theme-foreground-colors: map.merge(
318
+ (
319
+ "primary": #f8fafc,
320
+ "secondary": #020618,
321
+ "success": #333333,
322
+ "info": #333333,
323
+ "warning": #333333,
324
+ "danger": #333333,
325
+ "light": #333333,
326
+ "medium": #ffffff,
327
+ "dark": #ffffff,
328
+ "brand": #ffffff,
329
+ "grey-lightest": #020618,
330
+ "grey-lighter": #020618,
331
+ "grey-light": #020618,
332
+ "grey": #020618,
333
+ "grey-dark": #ffffff,
334
+ "grey-darker": #ffffff,
335
+ "grey-darkest": #ffffff,
336
+ ),
337
+ $theme-foreground-colors
338
+ );
339
+
340
+ $theme-text-colors: () !default;
341
+ $theme-text-colors: map.merge(
342
+ (
343
+ "primary": #0c0e1d,
344
+ "secondary": #2d4460,
345
+ "success": #1a7a4a,
346
+ "info": #2568a0,
347
+ "warning": #8a6d00,
348
+ "danger": #b5384f,
349
+ "light": #eff3fa,
350
+ "medium": #62748e,
351
+ "dark": #020618,
352
+ "brand": #e70d68,
353
+ ),
354
+ $theme-text-colors
355
+ );
356
+
357
+ $theme-bg-colors: () !default;
358
+ $theme-bg-colors: map.merge(
359
+ (
360
+ "primary": #0c0e1d,
361
+ "secondary": #e4e4e4,
362
+ "success": #d1f4e3,
363
+ "info": rgb(241 246 254),
364
+ "warning": rgb(255 251 237),
365
+ "danger": rgb(252 243 242),
366
+ "light": $grey-150,
367
+ "medium": $grey-450,
368
+ "dark": $grey-700,
369
+ "brand": #f5cbde,
370
+ ),
371
+ $theme-bg-colors
372
+ );
373
+
374
+ // Grid
375
+ $grid-columns: 12 !default;
376
+ $grid-gutter-x: 15px !default;
377
+ $grid-gutter-y: 15px !default;
378
+ $grid-row-gap: $grid-gutter-y !default;
379
+ $grid-column-gap: $grid-gutter-x !default;
380
+
381
+ $grid-breakpoints: (
382
+ xs: 0,
383
+ xs-lg: 400px,
384
+ sm: 568px,
385
+ md: 768px,
386
+ lg: 1047px,
387
+ xl: 1280px,
388
+ ) !default;
389
+
390
+ $container-content-max-width: 1200px;
391
+ $container-max-widths: (
392
+ sm: 540px,
393
+ md: 720px,
394
+ lg: 960px,
395
+ xl: 1140px,
396
+ ) !default;
397
+
398
+ // Spacing
399
+ $spacer: 5px !default;
400
+ $spacers: () !default;
401
+ $spacers: map.merge(
402
+ (
403
+ 0: $spacer * 0,
404
+ 1: $spacer * 1,
405
+ 2: $spacer * 2,
406
+ 3: $spacer * 3,
407
+ 4: $spacer * 4,
408
+ 5: $spacer * 5,
409
+ 6: $spacer * 6,
410
+ ),
411
+ $spacers
412
+ );
413
+
414
+ @function spacer($key) {
415
+ @if map.has-key($spacers, $key) {
416
+ @return map.get($spacers, $key);
417
+ }
418
+
419
+ @warn "Unknown `#{$key}` in $spacers.";
420
+ @return null;
421
+ }
422
+
423
+ // Sizing
424
+ $sizes: () !default;
425
+ $sizes: map.merge(
426
+ (
427
+ 25: 25%,
428
+ 50: 50%,
429
+ 75: 75%,
430
+ 100: 100%,
431
+ auto: auto,
432
+ ),
433
+ $sizes
434
+ );
435
+
436
+ // Body
437
+ $body-bg: #e7e9ee !default;
438
+ $body-color: #020618 !default;
439
+ $body-hover-bg: #fafafa !default;
440
+ $body-emphasize-bg: #fafafa !default;
441
+ $body-surface-bg: #ffffff !default;
442
+
443
+ // Borders
444
+ $border-width: 1px !default;
445
+ $border-color: #cfd5df !default;
446
+
447
+ $border-radius: 8px !default;
448
+ $border-radius-xs: 3px !default;
449
+ $border-radius-sm: 5px !default;
450
+ $border-radius-lg: 14px !default;
451
+
452
+ // Navbar
453
+ $navbar-bg: #0c0e1d !default;
454
+ $navbar-color: #ffffff !default;
455
+ $navbar-hover-color: #ffffff !default;
456
+ $navbar-height: 60px !default;
457
+ $navbar-height-sm: 48px !default;
458
+ $navbar-border-width: 12px !default;
459
+ $navbar-border-color: $navbar-bg !default;
460
+ $navbar-border-radius: 14px !default;
461
+ $navbar-padding-x: 11px !default;
462
+
463
+ $navbar-item-bg: #252734 !default;
464
+ $navbar-item-hover-bg: #343649 !default;
465
+ $navbar-item-color: #ffffff !default;
466
+ $navbar-item-hover-color: #ffffff !default;
467
+ $navbar-item-min-width: initial !default;
468
+ $navbar-item-padding-x: 8px !default;
469
+ $navbar-item-font-size: 13px !default;
470
+ $navbar-item-icon-size: 20px !default;
471
+ $navbar-item-spacer-width: 8px !default;
472
+ $navbar-pulse-shadow-color: $navbar-color !default;
473
+
474
+ $navbar-toggler-icon-width: 22px !default;
475
+ $navbar-toggler-icon-height: 15px !default;
476
+ $navbar-toggler-bar-height: 2px !default;
477
+ $navbar-toggler-bar-spacing: 6px !default;
478
+ $navbar-toggler-bar-radius: 1px !default;
479
+
480
+ $navbar-avatar-spacing: spacer(2) !default;
481
+ $navbar-notification-counter-color: #ffffff !default;
482
+ $navbar-notification-counter-bg: theme-color("brand") !default;
483
+ $navbar-notification-counter-font-size: 10px !default;
484
+ $navbar-notification-counter-height: 18px !default;
485
+ $navbar-notification-counter-padding: 2px 4px !default;
486
+ $navbar-notification-counter-radius: 10px !default;
487
+ $navbar-nav-gap: $navbar-item-padding-x !default;
488
+ $navbar-nav-padding: 12px 0 !default;
489
+ $navbar-item-height: 36px !default;
490
+ $navbar-item-height-sm: 32px !default;
491
+ $navbar-brand-svg-margin-top: 5px !default;
492
+
493
+ // Fonts
494
+ $font-family-sans-serif: "Inter", Helvetica, Arial, sans-serif !default;
495
+ $font-family-serif: Georgia, "Times New Roman", Times, serif !default;
496
+ $font-family-title: "Inter", Helvetica, Arial, sans-serif !default;
497
+ $font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
498
+ $font-family-base: $font-family-sans-serif !default;
499
+
500
+ $font-size-base: 13px !default;
501
+ $font-size-lg: 15px !default;
502
+ $font-size-sm: 12px !default;
503
+ $font-size-xs: 10px !default;
504
+
505
+ $font-weight-lighter: lighter !default;
506
+ $font-weight-light: 300 !default;
507
+ $font-weight-normal: 400 !default;
508
+ $font-weight-bold: 500 !default;
509
+ $font-weight-bolder: 600 !default;
510
+ $font-weight-base: $font-weight-normal !default;
511
+
512
+ $line-height-lg: 1.6 !default;
513
+ $line-height-base: 1.5 !default;
514
+ $line-height-sm: 1.3 !default;
515
+ $line-height-xs: 1.2 !default;
516
+ $line-height-computed: math.floor(($font-size-base * $line-height-base)) !default; // 21px
517
+
518
+ // Minor third scale (1.2)
519
+ $h1-font-size: math.floor(($font-size-base * 2.986)) !default;
520
+ $h2-font-size: math.floor(($font-size-base * 2.488)) !default;
521
+ $h3-font-size: math.ceil(($font-size-base * 2.074)) !default;
522
+ $h4-font-size: math.ceil(($font-size-base * 1.728)) !default;
523
+ $h5-font-size: math.ceil(($font-size-base * 1.5)) !default;
524
+ $h6-font-size: math.ceil(($font-size-base * 1.2)) !default;
525
+
526
+ $headings-margin-bottom: calc(math.div($line-height-computed, 2)) !default;
527
+ $headings-font-family: $font-family-title !default;
528
+ $headings-font-weight: 600 !default;
529
+ $headings-line-height: 1.2 !default;
530
+ $headings-color: inherit !default;
531
+
532
+ $display1-size: 104px !default;
533
+ $display2-size: 86px !default;
534
+ $display3-size: 72px !default;
535
+ $display4-size: 60px !default;
536
+
537
+ $display1-weight: 600 !default;
538
+ $display2-weight: 600 !default;
539
+ $display3-weight: 600 !default;
540
+ $display4-weight: 600 !default;
541
+ $display-line-height: $headings-line-height !default;
542
+
543
+ $lead-font-size: $font-size-base * 1.25 !default;
544
+ $lead-font-weight: 300 !default;
545
+
546
+ $small-font-size: 80% !default;
547
+
548
+ $hr-border-color: $border-color !default;
549
+ $hr-border-width: $border-width !default;
550
+ $hr-margin-y: $spacer * 3 !default;
551
+
552
+ // Frame
553
+ $frame-sidebar-floating-bg: #ffffff !default;
554
+ $frame-sidebar-floating-border-radius: 14px !default;
555
+ $frame-sidebar-floating-border-width: $border-width !default;
556
+ $frame-sidebar-floating-border-color: $border-color !default;
557
+ $frame-sidebar-floating-padding-y: 10px !default;
558
+ $frame-sidebar-floating-padding-x: 8px !default;
559
+ $frame-sidebar-floating-box-shadow:
560
+ rgb(98 116 142 / 6%) 0 8px 10px -2px,
561
+ rgba(0, 0, 0, 0.04) 0 2px 10px -3px !default;
562
+
563
+ $frame-sidebar-width: 256px !default;
564
+ $frame-sidebar-left-width: $frame-sidebar-width !default;
565
+ $frame-sidebar-right-width: 480px !default;
566
+ $frame-sidebar-right-breakpoint: 1600px !default;
567
+ $frame-sidebar-bg: #e7e9ee !default;
568
+ $frame-sidebar-bg-mobile: #ffffff !default;
569
+ $frame-sidebar-border-width: 0px !default;
570
+ $frame-sidebar-border-color: transparent !default;
571
+ $frame-sidebar-padding-y: 0px !default;
572
+ $frame-sidebar-padding-x: 0px !default;
573
+
574
+ $frame-sidebar-header-padding-y: 10px !default;
575
+ $frame-sidebar-header-padding-x: 10px !default;
576
+
577
+ $frame-sidebar-content-padding-y: 10px !default;
578
+ $frame-sidebar-content-padding-x: 10px !default;
579
+
580
+ $frame-sidebar-footer-padding-y: 10px !default;
581
+ $frame-sidebar-footer-padding-x: 10px !default;
582
+
583
+ $frame-sidebar-nav-style: "simple" !default;
584
+ $frame-sidebar-nav-bg: transparent !default;
585
+ $frame-sidebar-nav-padding-y: 0px !default;
586
+ $frame-sidebar-nav-padding-x: 10px !default;
587
+ $frame-sidebar-sub-nav-padding-y: 0px !default;
588
+ $frame-sidebar-sub-nav-padding-x: 0px !default;
589
+ $frame-sidebar-nav-font-family: $font-family-base !default;
590
+ $frame-sidebar-nav-a-icon-size: 11px;
591
+ $frame-sidebar-nav-a-icon-color: #62748e !default;
592
+ $frame-sidebar-nav-a-icon-hover-color: #020618 !default;
593
+ $frame-sidebar-nav-icon-size: 16px !default;
594
+ $frame-sidebar-nav-icon-color: #020618 !default;
595
+ $frame-sidebar-nav-icon-hover-color: theme-color("brand") !default;
596
+ $frame-sidebar-nav-icon-active-color: theme-color("brand") !default;
597
+
598
+ $frame-sidebar-nav-item-padding-x: 10px !default;
599
+ $frame-sidebar-nav-item-padding-y: 7px !default;
600
+ $frame-sidebar-nav-item-child-padding-x: 10px !default;
601
+ $frame-sidebar-nav-item-child-padding-y: 7px !default;
602
+ $frame-sidebar-nav-item-border-color: $border-color !default;
603
+
604
+ $frame-sidebar-nav-item-parent-font-size: 13px !default;
605
+ $frame-sidebar-nav-item-parent-font-weight: 400 !default;
606
+ $frame-sidebar-nav-item-parent-color: #333333 !default;
607
+ $frame-sidebar-nav-item-parent-hover-color: #020618 !default;
608
+ $frame-sidebar-nav-item-parent-hover-bg: #edf1f5;
609
+ $frame-sidebar-nav-item-parent-active-color: #020618 !default;
610
+ $frame-sidebar-nav-item-parent-active-bg: #edf1f5 !default;
611
+
612
+ $frame-sidebar-nav-item-child-font-size: 13px !default;
613
+ $frame-sidebar-nav-item-child-font-weight: 400 !default;
614
+ $frame-sidebar-nav-item-child-color: #333333 !default;
615
+ $frame-sidebar-nav-item-child-hover-color: #020618 !default;
616
+ $frame-sidebar-nav-item-child-hover-bg: #edf1f5;
617
+ $frame-sidebar-nav-item-child-active-color: #020618 !default;
618
+ $frame-sidebar-nav-item-child-active-bg: #edf1f5 !default;
619
+
620
+ $frame-sidebar-tabs-color: theme-color("medium") !default;
621
+ $frame-sidebar-tabs-bg: transparent !default;
622
+ $frame-sidebar-tabs-border-color: $border-color !default;
623
+
624
+ $frame-sidebar-tabs-hover-color: theme-color("medium") !default;
625
+ $frame-sidebar-tabs-hover-bg: transparent !default;
626
+ $frame-sidebar-tabs-hover-border-color: $border-color !default;
627
+
628
+ $frame-sidebar-tabs-active-color: color.adjust($grey-450, $lightness: -10%) !default;
629
+ $frame-sidebar-tabs-active-bg: theme-color("light") !default;
630
+ $frame-sidebar-tabs-active-border-color: theme-color("info") !default;
631
+
632
+ // Icon
633
+ $icon-color: #333333 !default;
634
+ $icon-spacer: 5px;
635
+
636
+ // Box shadow
637
+ $box-shadow-sm: rgba(0, 0, 0, 0.05) 0 1px 2px 0 !default;
638
+ $box-shadow:
639
+ rgba(0, 0, 0, 0.08) 0 4px 8px -2px,
640
+ rgba(0, 0, 0, 0.06) 0 2px 4px -2px !default;
641
+ $box-shadow-lg:
642
+ rgba(0, 0, 0, 0.08) 0 10px 15px -3px,
643
+ rgba(0, 0, 0, 0.06) 0 4px 6px -4px !default;
644
+
645
+ // Buttons + Forms
646
+ $input-btn-padding-y: 7px !default;
647
+ $input-btn-padding-x: 13px !default;
648
+ $input-btn-font-family: $font-family-sans-serif !default;
649
+ $input-btn-font-size: 12px !default;
650
+ $input-btn-line-height: $line-height-base !default;
651
+
652
+ $input-btn-padding-y-xs: 5px !default;
653
+ $input-btn-padding-x-xs: 6px !default;
654
+ $input-btn-font-size-xs: $font-size-xs !default;
655
+ $input-btn-line-height-xs: $line-height-xs !default;
656
+
657
+ $input-btn-padding-y-sm: 7px !default;
658
+ $input-btn-padding-x-sm: 8px !default;
659
+ $input-btn-font-size-sm: $font-size-sm !default;
660
+ $input-btn-line-height-sm: $line-height-sm !default;
661
+
662
+ $input-btn-padding-y-lg: 14px !default;
663
+ $input-btn-padding-x-lg: 20px !default;
664
+ $input-btn-font-size-lg: $font-size-base !default;
665
+ $input-btn-line-height-lg: $line-height-lg !default;
666
+
667
+ $input-btn-border-width: $border-width !default;
668
+
669
+ // Buttons
670
+ $btn-padding-y: $input-btn-padding-y !default;
671
+ $btn-padding-x: $input-btn-padding-x !default;
672
+ $btn-font-family: $input-btn-font-family !default;
673
+ $btn-font-size: $input-btn-font-size !default;
674
+ $btn-line-height: $input-btn-line-height !default;
675
+
676
+ $btn-padding-y-xs: $input-btn-padding-y-xs !default;
677
+ $btn-padding-x-xs: $input-btn-padding-x-xs !default;
678
+ $btn-font-size-xs: $input-btn-font-size-xs !default;
679
+ $btn-line-height-xs: $input-btn-line-height-xs !default;
680
+
681
+ $btn-padding-y-sm: $input-btn-padding-y-sm !default;
682
+ $btn-padding-x-sm: $input-btn-padding-x-sm !default;
683
+ $btn-font-size-sm: $input-btn-font-size-sm !default;
684
+ $btn-line-height-sm: $input-btn-line-height-sm !default;
685
+
686
+ $btn-padding-y-lg: $input-btn-padding-y-lg !default;
687
+ $btn-padding-x-lg: $input-btn-padding-x-lg !default;
688
+ $btn-font-size-lg: $input-btn-font-size-lg !default;
689
+ $btn-line-height-lg: $input-btn-line-height-lg !default;
690
+
691
+ $btn-border-width: $input-btn-border-width !default;
692
+
693
+ $btn-font-weight: 500 !default;
694
+
695
+ $btn-border-radius: $border-radius !default;
696
+ $btn-border-radius-lg: $border-radius-lg !default;
697
+ $btn-border-radius-sm: $border-radius-sm !default;
698
+ $btn-border-radius-xs: $border-radius-xs !default;
699
+
700
+ $btn-icon-height: calc(($btn-line-height * $btn-font-size) + ($btn-padding-y * 2)) !default;
701
+ $btn-icon-height-sm: calc(($btn-line-height-sm * $btn-font-size-sm) + ($btn-padding-y-sm * 2)) !default;
702
+ $btn-icon-height-lg: calc(($btn-line-height-lg * $btn-font-size-lg) + ($btn-padding-y-lg * 2)) !default;
703
+ $btn-transition:
704
+ color 0.15s ease-in-out,
705
+ background-color 0.15s ease-in-out,
706
+ border-color 0.15s ease-in-out,
707
+ box-shadow 0.15s ease-in-out !default;
708
+ $btn-cursor: pointer !default;
709
+
710
+ // Forms
711
+ $label-font-size: 13px !default;
712
+ $label-margin-bottom: 6px !default;
713
+
714
+ $input-padding-y: $input-btn-padding-y !default;
715
+ $input-padding-x: $input-btn-padding-x !default;
716
+ $input-font-family: $font-family-sans-serif !default;
717
+ $input-font-size: $input-btn-font-size !default;
718
+ $input-font-weight: $font-weight-normal !default;
719
+ $input-line-height: $input-btn-line-height !default;
720
+
721
+ $input-padding-y-sm: $input-btn-padding-y-sm !default;
722
+ $input-padding-x-sm: $input-btn-padding-x-sm !default;
723
+ $input-font-size-sm: $input-btn-font-size-sm !default;
724
+ $input-line-height-sm: $input-btn-line-height-sm !default;
725
+
726
+ $input-padding-y-lg: $input-btn-padding-y-lg !default;
727
+ $input-padding-x-lg: $input-btn-padding-x-lg !default;
728
+ $input-font-size-lg: $input-btn-font-size-lg !default;
729
+ $input-line-height-lg: $input-btn-line-height-lg !default;
730
+
731
+ $input-bg: white !default;
732
+ $input-disabled-bg: #f3f3f3 !default;
733
+ $input-disabled-color: theme-color("medium") !default;
734
+
735
+ $input-color: $body-color !default;
736
+ $input-border-color: $border-color !default;
737
+ $input-border-width: $input-btn-border-width !default;
738
+
739
+ $input-border-radius: $border-radius !default;
740
+ $input-border-radius-lg: $border-radius-lg !default;
741
+ $input-border-radius-sm: $border-radius-sm !default;
742
+
743
+ $input-focus-border-color: theme-color("info") !default;
744
+ $input-placeholder-color: theme-color("medium") !default;
745
+ $input-plaintext-color: $body-color !default;
746
+
747
+ $input-height: $input-line-height * $input-font-size + $input-padding-y * 2 + $input-border-width * 2 !default;
748
+ $input-height-sm: $input-line-height-sm * $input-font-size-sm + $input-btn-padding-y-sm * 2 + $input-border-width * 2 !default;
749
+ $input-height-lg: $input-line-height-lg * $input-font-size-lg + $input-btn-padding-y-lg * 2 + $input-border-width * 2 !default;
750
+
751
+ $input-group-addon-color: $grey-700 !default;
752
+ $input-group-addon-bg: $input-bg !default;
753
+ $input-group-addon-border-color: $input-border-color !default;
754
+ $input-group-gap: 0 !default;
755
+ $input-group-border-color: $input-group-addon-border-color !default;
756
+ $input-group-border-width: $input-border-width !default;
757
+ $input-group-border-radius: $input-border-radius !default;
758
+ $input-group-bg: $input-group-addon-bg !default;
759
+ $input-group-color: $input-group-addon-color !default;
760
+
761
+ $form-check-inline-margin-x: 10px !default;
762
+ $form-check-inline-input-margin-x: 5px !default;
763
+
764
+ $form-check-input-color: theme-color("info") !default;
765
+ $form-check-input-border-color: $border-color !default;
766
+ $form-check-input-border-width: 1px !default;
767
+ $form-check-input-radius: 5px !default;
768
+ $form-check-input-size: 18px !default;
769
+
770
+ $form-group-margin-bottom: $spacer * 3 !default;
771
+
772
+ $form-feedback-margin-top: $spacer !default;
773
+ $form-feedback-font-size: $small-font-size !default;
774
+ $form-feedback-valid-color: theme-color("success") !default;
775
+ $form-feedback-invalid-color: theme-color("danger") !default;
776
+
777
+ $form-switch-width: 40px !default;
778
+
779
+ // Badge
780
+ $badge-font-family: $font-family-base !default;
781
+ $badge-font-size-xs: $font-size-xs !default;
782
+ $badge-font-size-sm: $font-size-xs !default;
783
+ $badge-font-size: $font-size-sm !default;
784
+
785
+ $badge-font-weight-xs: 500 !default;
786
+ $badge-font-weight-sm: 500 !default;
787
+ $badge-font-weight: 500 !default;
788
+
789
+ $badge-padding-y-xs: 3px !default;
790
+ $badge-padding-x-xs: 4px !default;
791
+ $badge-padding-y-sm: 4px !default;
792
+ $badge-padding-x-sm: 6px !default;
793
+ $badge-padding-y: 6px !default;
794
+ $badge-padding-x: 8px !default;
795
+
796
+ $badge-line-height-xs: 1 !default;
797
+ $badge-line-height-sm: $line-height-sm !default;
798
+ $badge-line-height: $line-height-base !default;
799
+
800
+ $badge-border-radius-xs: $border-radius-xs !default;
801
+ $badge-border-radius-sm: $border-radius-sm !default;
802
+ $badge-border-radius: $border-radius !default;
803
+
804
+ $badge-border-width: 2px !default;
805
+ $badge-box-shadow-blur: 0.2em !default;
806
+ $badge-box-shadow-opacity: 30% !default;
807
+
808
+ // Pagination
809
+ $pagination-padding-y: 8px !default;
810
+ $pagination-padding-x: 12px !default;
811
+ $pagination-color: theme-color("primary") !default;
812
+ $pagination-hover-color: theme-color("primary") !default;
813
+ $pagination-active-color: theme-color("primary") !default;
814
+ $pagination-disabled-color: theme-color("medium") !default;
815
+
816
+ // Z-index
817
+ $zindex-fixed: 1005 !default;
818
+ $zindex-sticky: 1005 !default;
819
+ $zindex-popover: 1005 !default;
820
+ $zindex-tooltip: 1011 !default;
821
+ $zindex-dropdown: 1005 !default;
822
+ $zindex-select: 1005 !default;
823
+ $zindex-toast: 1010 !default;
824
+ $zindex-dialog: 1010 !default;
825
+
826
+ // Links colors
827
+ $link-color: #2c86c8 !default;
828
+ $link-hover-color: #1a3973 !default;
829
+ $link-text-decoration: none !default;
830
+ $link-hover-text-decoration: underline !default;
831
+ $link-disabled-color: theme-color("medium") !default;
832
+ $link-font-weight: $font-weight-normal;
833
+
834
+ // Table
835
+ $table-color: $body-color !default;
836
+ $table-bg: #ffffff !default;
837
+ $table-hover-color: $table-color !default;
838
+ $table-hover-bg: #fafafa !default;
839
+ $table-hover-transition: background-color 0.2s ease !default;
840
+ $table-accent-bg: theme-color("light") !default;
841
+ $table-striped-order: odd !default;
842
+ $table-caption-color: theme-color("medium") !default;
843
+ $table-link-color: $link-color !default;
844
+ $table-link-hover-color: $link-hover-color !default;
845
+ $table-icon-color: $icon-color !default;
846
+ $table-border-color: #dfe4eb !default;
847
+
848
+ $table-th-padding-x: $spacer * 3 !default;
849
+ $table-th-padding-y: $spacer * 2 !default;
850
+ $table-th-padding: $table-th-padding-y $table-th-padding-x !default;
851
+ $table-th-font-family: $font-family-sans-serif !default;
852
+ $table-th-font-weight: 600 !default;
853
+ $table-th-font-size: $font-size-sm !default;
854
+ $table-th-line-height: 16px !default;
855
+ $table-th-bg: #f9f9f9 !default;
856
+
857
+ $table-td-padding-x: $spacer * 3 !default;
858
+ $table-td-padding-y: $spacer * 2 !default;
859
+ $table-td-padding: $table-td-padding-y $table-td-padding-x !default;
860
+ $table-td-line-height: 16px !default;
861
+
862
+ $table-head-bg: transparent !default;
863
+ $table-head-color: theme-text-color("dark") !default;
864
+
865
+ $table-sortable-head-hover-bg: #f9f9f9 !default;
866
+ $table-sortable-handle-width: 20px !default;
867
+ $table-sortable-handle-height: 35px !default;
868
+
869
+ $table-responsive-heading-font-weight: 500 !default;
870
+ $table-responsive-td-font-size: 85% !default;
871
+ $table-responsive-td-line-height: 16px !default;
872
+ $table-responsive-td-padding: 8px !default;
873
+ $table-responsive-first-td-bg: #f5f5f5 !default;
874
+ $table-responsive-heading-margin-bottom: 5px !default;
875
+ $table-responsive-margin-bottom: 15px !default;
876
+
877
+ $table-sticky-actions-shadow-color: #dee2e9 !default;
878
+ $table-sticky-actions-col-sticky-bg: #f9f9f9 !default;
879
+ $table-sticky-actions-shadow-gradient: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05)) !default;
880
+ $table-sticky-actions-shadow-width: 20px !default;
881
+
882
+ $table-bulk-actions-hover-bg: #3f74d4 !default;
883
+ $table-bulk-actions-hover-color: #ffffff !default;
884
+ $table-bulk-actions-dropdown-shadow: 0 4px 4px rgba(0, 0, 0, 0.15) !default;
885
+ $table-bulk-actions-dropdown-min-width: 150px !default;
886
+ $table-bulk-actions-dropdown-item-font-size: 12px !default;
887
+ $table-bulk-actions-dropdown-item-line-height: 25px !default;
888
+ $table-bulk-actions-dropdown-item-padding: 5px 15px !default;
889
+ $table-bulk-actions-btn-padding: 4px 6px !default;
890
+ $table-bulk-actions-height: 17px !default;
891
+ $table-bulk-actions-input-group-height: 17px !default;
892
+ $table-bulk-actions-input-group-padding: 5px 6px !default;
893
+ $table-bulk-actions-input-group-margin: -5px -6px !default;
894
+
895
+ // Tabs
896
+ $tabs-bg: transparent !default;
897
+ $tabs-text-color: theme-color("medium") !default;
898
+ $tabs-hover-color: theme-text-color("dark") !default;
899
+ $tabs-active-color: theme-text-color("primary") !default;
900
+ $tabs-hover-bg: transparent !default;
901
+
902
+ // Tooltips
903
+ $tooltip-font-size: $font-size-sm !default;
904
+ $tooltip-max-width: 200px !default;
905
+ $tooltip-color: #ffffff !default;
906
+ $tooltip-bg: #000000 !default;
907
+ $tooltip-border-radius: $border-radius !default;
908
+ $tooltip-opacity: 0.9 !default;
909
+ $tooltip-padding-y: 4px !default;
910
+ $tooltip-padding-x: 7px !default;
911
+ $tooltip-margin: 0 !default;
912
+
913
+ $tooltip-arrow-width: 12px !default;
914
+ $tooltip-arrow-height: 6px !default;
915
+ $tooltip-arrow-color: $tooltip-bg !default;
916
+
917
+ // Popovers
918
+ $popover-font-size: $font-size-sm !default;
919
+ $popover-bg: #ffffff !default;
920
+ $popover-box-shadow:
921
+ rgba(0, 0, 0, 0.1) 0 4px 6px -1px,
922
+ rgba(0, 0, 0, 0.1) 0 2px 4px -2px !default;
923
+ $popover-max-width: 276px !default;
924
+ $popover-border-width: $border-width !default;
925
+ $popover-border-color: $border-color !default;
926
+ $popover-border-radius: $border-radius !default;
927
+ $popover-spacer: 8px !default;
928
+
929
+ $popover-header-bg: $popover-bg !default;
930
+ $popover-header-color: $headings-color !default;
931
+ $popover-header-padding-y: 10px !default;
932
+ $popover-header-padding-x: 10px !default;
933
+
934
+ $popover-body-color: $body-color !default;
935
+ $popover-body-padding-y: $popover-header-padding-y !default;
936
+ $popover-body-padding-x: $popover-header-padding-x !default;
937
+
938
+ // Nav divider
939
+ $nav-divider-color: theme-color("light") !default;
940
+ $nav-divider-margin-y: math.div(14px, 2) !default;
941
+
942
+ // Dropdown
943
+ $dropdown-font-size: $font-size-sm !default;
944
+ $dropdown-line-height: $line-height-sm !default;
945
+ $dropdown-width: 140px !default;
946
+ $dropdown-padding-y: 8px !default;
947
+ $dropdown-spacer: 8px !default;
948
+ $dropdown-bg: #ffffff !default;
949
+ $dropdown-color: $body-color !default;
950
+ $dropdown-border-color: $border-color !default;
951
+ $dropdown-border-radius: $border-radius !default;
952
+ $dropdown-border-width: $border-width !default;
953
+ $dropdown-divider-bg: theme-color("light") !default;
954
+ $dropdown-box-shadow:
955
+ rgba(0, 0, 0, 0.1) 0 4px 6px -1px,
956
+ rgba(0, 0, 0, 0.1) 0 2px 4px -2px !default;
957
+ $dropdown-title-color: theme-color("medium") !default;
958
+
959
+ $dropdown-link-color: $body-color !default;
960
+ $dropdown-link-hover-color: $body-color !default;
961
+ $dropdown-link-hover-bg: $grey-50 !default;
962
+
963
+ $dropdown-link-active-color: theme-color("primary") !default;
964
+ $dropdown-link-active-bg: $grey-50 !default;
965
+
966
+ $dropdown-link-disabled-color: theme-color("medium") !default;
967
+
968
+ $dropdown-item-padding-y: 8px !default;
969
+ $dropdown-item-padding-x: 15px !default;
970
+
971
+ // Select
972
+ $select-spacer: 8px !default;
973
+ $select-spacer-sm: 6px !default;
974
+ $select-bg: $input-bg !default;
975
+ $select-border-color: $input-border-color !default;
976
+ $select-border-radius: $border-radius !default;
977
+ $select-border-width: $input-border-width !default;
978
+ $select-divider-bg: $input-border-color !default;
979
+ $select-box-shadow:
980
+ rgba(0, 0, 0, 0.1) 0 4px 6px -1px,
981
+ rgba(0, 0, 0, 0.1) 0 2px 4px -2px !default;
982
+
983
+ $select-item-color: $grey-900 !default;
984
+ $select-item-hover-color: $grey-950 !default;
985
+ $select-item-hover-bg: $grey-100 !default;
986
+
987
+ $select-item-disabled-color: theme-color("medium") !default;
988
+
989
+ $select-item-padding-y: 7px !default;
990
+ $select-item-padding-x: 13px !default;
991
+ $select-item-padding-y-sm: 7px !default;
992
+ $select-item-padding-x-sm: 8px !default;
993
+
994
+ $select-header-color: $body-color !default;
995
+
996
+ $select-chip-bg: theme-color("secondary") !default;
997
+ $select-chip-border-radius: $border-radius-sm !default;
998
+ $select-chip-padding: 2px 5px !default;
999
+ $select-chip-font-size: $font-size-sm !default;
1000
+ $select-chip-max-width: 200px !default;
1001
+ $select-placeholder-color: theme-text-color("medium") !default;
1002
+ $select-placeholder-font-style: italic !default;
1003
+ $select-search-icon-color: $icon-color !default;
1004
+ $select-animation-length: 500ms !default;
1005
+ $select-animation-timing: cubic-bezier(0.23, 1, 0.32, 1) !default;
1006
+
1007
+ // Section
1008
+ $section-spacer: $spacer * 3 !default;
1009
+ $section-spacer-mobile: $spacer * 3 !default;
1010
+ $section-padding: $spacer * 3 !default;
1011
+ $section-padding-mobile: $section-padding * 0.75 !default;
1012
+ $section-border-radius: $border-radius-lg !default;
1013
+ $section-inner-border-radius: $border-radius !default;
1014
+
1015
+ $section-border-width: $border-width !default;
1016
+ $section-border-color: $border-color !default;
1017
+ $section-bg: #ffffff !default;
1018
+ $section-color: $body-color !default;
1019
+ $section-box-shadow:
1020
+ rgb(98 116 142 / 6%) 0 8px 10px -2px,
1021
+ rgba(0, 0, 0, 0.04) 0 2px 10px -3px !default;
1022
+ $section-divider-height: $border-width !default;
1023
+ $section-divider-color: $grey-50 !default;
1024
+ $section-divider-padding: 0 !default;
1025
+ $section-secondary-bg: $grey-50 !default;
1026
+
1027
+ $section-title-font-family: $font-family-base !default;
1028
+ $section-title-font-size: 15px !default;
1029
+ $section-title-font-weight: 500 !default;
1030
+ $section-title-bg: #ffffff !default;
1031
+ $section-title-color: $body-color !default;
1032
+ $section-title-actions-color: $body-color !default;
1033
+ $section-title-icons-color: $body-color !default;
1034
+ $section-title-icons-size: 15px !default;
1035
+ $section-title-padding: 16px !default;
1036
+
1037
+ $section-subtitle-font-family: $font-family-base !default;
1038
+ $section-subtitle-font-size: 14px !default;
1039
+ $section-subtitle-font-weight: 600 !default;
1040
+ $section-subtitle-color: #62748e !default;
1041
+
1042
+ $section-image-badge-bg: theme-color("info") !default;
1043
+ $section-image-badge-color: #ffffff !default;
1044
+ $section-image-badge-shadow: 0 0 3px rgba(0, 0, 0, 0.3) !default;
1045
+ $section-image-badge-padding: 10px 0 !default;
1046
+ $section-image-badge-font-size: 12px !default;
1047
+ $section-image-darken-bg: rgba(0, 0, 0, 0.15) !default;
1048
+
1049
+ $section-placeholder-icon-color: $icon-color !default;
1050
+ $section-placeholder-description-color: theme-text-color("medium") !default;
1051
+ $section-placeholder-title-font-family: $font-family-title !default;
1052
+ $section-placeholder-title-font-weight: 500 !default;
1053
+ $section-placeholder-icon-size: 100px !default;
1054
+ $section-placeholder-icon-font-size: 5rem !default;
1055
+ $section-placeholder-icon-padding: 10px !default;
1056
+ $section-placeholder-spacing: 20px !default;
1057
+ $section-placeholder-spacing-sm: 10px !default;
1058
+
1059
+ $section-definition-heading-color-mobile: theme-text-color("medium") !default;
1060
+ $section-definition-heading-font-size-mobile: 12px !default;
1061
+ $section-definition-heading-color: $body-color !default;
1062
+ $section-definition-heading-font-size: 14px !default;
1063
+ $section-definition-spacer-height: 20px !default;
1064
+
1065
+ $section-filters-bg: $section-bg !default;
1066
+ $section-filters-color: $section-color !default;
1067
+
1068
+ $section-bulk-actions-bg: $section-bg !default;
1069
+ $section-bulk-actions-color: $section-color !default;
1070
+ $section-bulk-actions-divider-color: $section-divider-color !default;
1071
+ $section-bulk-action-select-font-size: 12px !default;
1072
+ $section-bulk-action-select-max-width: 200px !default;
1073
+
1074
+ $section-tabs-font-family: $font-family-sans-serif !default;
1075
+ $section-tabs-font-weight: $font-weight-base !default;
1076
+ $section-tabs-font-weight-active: $font-weight-bold !default;
1077
+ $section-tabs-bg: #ffffff !default;
1078
+ $section-tabs-item-padding-y: $section-padding !default;
1079
+ $section-tabs-item-padding-x: $section-padding !default;
1080
+ $section-tabs-item-gap: $section-padding !default;
1081
+ $section-tabs-item-min-width: 50px !default;
1082
+
1083
+ $section-tabs-color: theme-text-color("medium") !default;
1084
+ $section-tabs-hover-color: theme-text-color("dark") !default;
1085
+ $section-tabs-active-color: theme-text-color("dark") !default;
1086
+
1087
+ $section-tabs-border-width: 3px !default;
1088
+ $section-tabs-border-color: $border-color !default;
1089
+ $section-tabs-border-hover-color: transparent !default;
1090
+ $section-tabs-border-active-color: theme-bg-color("primary") !default;
1091
+
1092
+ // Toast
1093
+ $toast-bg: #0c0e1d !default;
1094
+ $toast-border-width: $border-width !default;
1095
+ $toast-border-radius: $border-radius !default;
1096
+ $toast-font-size: $font-size-sm !default;
1097
+
1098
+ $toast-header-bg: $toast-bg !default;
1099
+ $toast-header-color: theme-color("medium") !default;
1100
+ $toast-header-padding-y: spacer(3) !default;
1101
+ $toast-header-padding-x: spacer(3) !default;
1102
+
1103
+ $toast-body-color: #ffffff !default;
1104
+ $toast-body-padding-y: spacer(3) !default;
1105
+ $toast-body-padding-x: spacer(3) !default;
1106
+
1107
+ $toast-max-width: 420px !default;
1108
+ $toast-offset-x: 16px !default;
1109
+ $toast-offset-y: 16px !default;
1110
+ $toast-gap: spacer(2) !default;
1111
+ $toast-stack-offset: 8px !default;
1112
+ $toast-stack-scale: 0.04 !default;
1113
+ $toast-stack-opacity: 0.4 !default;
1114
+ $toast-transition-duration: 300ms !default;
1115
+
1116
+ // Alert & Notification
1117
+ $alert-bg: #ffffff !default;
1118
+ $alert-color: $body-color !default;
1119
+ $alert-border-width: $border-width !default;
1120
+ $alert-border-color: theme-color("primary") !default;
1121
+ $alert-border-radius: $section-border-radius !default;
1122
+ $alert-padding: $section-padding !default;
1123
+ $alert-padding-sm: $section-padding * 0.5 !default;
1124
+ $alert-margin-bottom: $section-spacer-mobile !default;
1125
+ $alert-icon-width: 28px !default;
1126
+ $alert-icon-height: 28px !default;
1127
+ $alert-icon-font-size: 12px !default;
1128
+
1129
+ $notification-bg: #ffffff !default;
1130
+ $notification-color: $body-color !default;
1131
+ $notification-border-width: $border-width !default;
1132
+ $notification-border-color: theme-color("primary") !default;
1133
+ $notification-border-radius: $border-radius !default;
1134
+ $notification-padding: $spacer * 3 !default;
1135
+
1136
+ // Dialog
1137
+ $dialog-bg: #ffffff !default;
1138
+ $dialog-title-font-family: $font-family-title !default;
1139
+ $dialog-title-font-weight: 600 !default;
1140
+ $dialog-border-width: 0px !default;
1141
+ $dialog-padding-x: 24px !default;
1142
+ $dialog-padding-y: 24px !default;
1143
+
1144
+ $dialog-width: auto !default;
1145
+ $dialog-width-sm: 300px !default;
1146
+ $dialog-width-md: 512px !default;
1147
+ $dialog-width-lg: 960px !default;
1148
+ $dialog-width-xl: 1200px !default;
1149
+
1150
+ $dialog-margin-x: 10px !default;
1151
+ $dialog-margin-y: 10px !default;
1152
+ $dialog-margin-x-lg: 25px !default;
1153
+ $dialog-margin-y-lg: 25px !default;
1154
+ $dialog-header-height: 70px !default;
1155
+ $dialog-body-height: 130px !default;
1156
+ $dialog-footer-height: 70px !default;
1157
+ $dialog-backdrop-opacity: 0.3 !default;
1158
+ $dialog-notification-body-height: 80px !default;
1159
+ $dialog-notification-width: 450px !default;
1160
+ $dialog-title-font-size: $font-size-lg !default;
1161
+ $dialog-close-font-size: 16px !default;
1162
+ $dialog-box-shadow: $box-shadow !default;
1163
+
1164
+ // List group
1165
+ $list-group-bg: transparent !default;
1166
+ $list-group-color: $body-color !default;
1167
+ $list-group-hover-bg: $body-hover-bg !default;
1168
+ $list-group-active-color: theme-color("info") !default;
1169
+ $list-group-disabled-color: $grey-200 !default;
1170
+ $list-group-border-color: $border-color !default;
1171
+ $list-group-item-padding-y: spacer(2) !default;
1172
+ $list-group-item-padding-x: spacer(2) !default;
1173
+ $list-group-inner-padding: 15px !default;
1174
+ $list-group-distinctive-bg: #f5f5f5 !default;
1175
+ $list-group-distinctive-padding: spacer(3) !default;
1176
+ $list-group-distinctive-gap: spacer(2) !default;
1177
+ $list-group-icon-spacing: $icon-spacer !default;
1178
+ $list-group-line-height: 20px !default;
1179
+
1180
+ // Media
1181
+ $image-icon-color: $icon-color !default;
1182
+ $image-bg-placeholder: transparent !default;
1183
+ $image-bg-thumbnail: $grey-50 !default;
1184
+
1185
+ $image-border-color: transparent !default;
1186
+ $image-border-width: 0px !default;
1187
+ $image-border-radius: $border-radius !default;
1188
+
1189
+ $image-transition: opacity 0.4s ease !default;
1190
+ $image-transition-duration: 0.4s !default;
1191
+ $image-transition-timing: ease !default;
1192
+ $image-loaded-bg: $grey-50 !default;
1193
+
1194
+ $image-status-indicator-size: 12px !default;
1195
+ $image-status-indicator-bg: theme-color("medium") !default;
1196
+ $image-status-indicator-active-bg: #2e8b57 !default;
1197
+ $image-status-indicator-idle-bg: #e0a100 !default;
1198
+ $image-status-indicator-inactive-bg: #d9304f !default;
1199
+ $image-status-indicator-info-bg: #4577d5 !default;
1200
+
1201
+ $image-showcase-shadow: 0 10px 20px -15px hsla(0, 0%, 25%, 1) !default;
1202
+ $image-showcase-border-radius: 5px !default;
1203
+
1204
+ $image-select-min-height: 98px !default;
1205
+ $image-select-padding: 20px !default;
1206
+ $image-select-gap: 10px !default;
1207
+ $image-select-trigger-bg: theme-color("secondary") !default;
1208
+ $image-select-trigger-color: theme-foreground-color("secondary") !default;
1209
+
1210
+ $placeholder-icon-size: 100px !default;
1211
+ $placeholder-icon-font-size: 5rem !default;
1212
+ $placeholder-icon-color: $icon-color !default;
1213
+ $placeholder-padding: 16px !default;
1214
+ $placeholder-spacing: 20px !default;
1215
+ $placeholder-spacing-sm: 10px !default;
1216
+ $placeholder-title-font-family: $font-family-title !default;
1217
+ $placeholder-title-font-weight: 600 !default;
1218
+ $placeholder-title-color: $body-color !default;
1219
+ $placeholder-description-color: theme-color("medium") !default;
1220
+
1221
+ // Animation
1222
+ $animation-duration: 0.3s !default;
1223
+ $animation-timing: cubic-bezier(0.4, 0, 0.2, 1) !default;
1224
+
1225
+ $form-transition-fast: 0.2s ease !default;
1226
+ $form-transition-normal: 0.3s ease !default;
1227
+ $form-transition-slow: 0.6s ease !default;
1228
+
1229
+ $switch-transition: 0.3s ease-in !default;