@dynamic-framework/ui-react 2.0.0-dev.1 → 2.0.0-dev.3
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.
- package/dist/css/dynamic-ui-non-root.css +7153 -3699
- package/dist/css/dynamic-ui-non-root.min.css +2 -2
- package/dist/css/dynamic-ui-root.css +799 -127
- package/dist/css/dynamic-ui-root.min.css +2 -2
- package/dist/css/dynamic-ui.css +7950 -3824
- package/dist/css/dynamic-ui.min.css +2 -2
- package/dist/index.esm.js +255 -301
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +280 -310
- package/dist/index.js.map +1 -1
- package/dist/types/components/DAlert/DAlert.d.ts +3 -3
- package/dist/types/components/DAvatar/DAvatar.d.ts +1 -3
- package/dist/types/components/DBadge/DBadge.d.ts +4 -3
- package/dist/types/components/DBarChart/DBarChart.d.ts +9 -0
- package/dist/types/components/DBox/DBox.d.ts +5 -0
- package/dist/types/components/DBox/index.d.ts +2 -0
- package/dist/types/components/DButton/DButton.d.ts +6 -5
- package/dist/types/components/DButtonIcon/DButtonIcon.d.ts +3 -3
- package/dist/types/components/DChip/DChip.d.ts +3 -3
- package/dist/types/components/DCollapse/DCollapse.d.ts +1 -1
- package/dist/types/components/DCreditCard/DCreditCard.d.ts +12 -0
- package/dist/types/components/DCreditCard/index.d.ts +2 -0
- package/dist/types/components/DDatePicker/DDatePicker.d.ts +3 -3
- package/dist/types/components/DDatePicker/components/DDatePickerHeaderSelector.d.ts +2 -4
- package/dist/types/components/DDropdown/DDropdown.d.ts +20 -0
- package/dist/types/components/DDropdown/index.d.ts +2 -0
- package/dist/types/components/DIconBase/DIconBase.d.ts +4 -8
- package/dist/types/components/DInput/DInput.d.ts +2 -2
- package/dist/types/components/DInputCounter/DInputCounter.d.ts +2 -2
- package/dist/types/components/DInputCurrency/DInputCurrency.d.ts +3 -3
- package/dist/types/components/DInputMask/DInputMask.d.ts +1 -1
- package/dist/types/components/DInputPhone/DInputPhone.d.ts +2 -2
- package/dist/types/components/DInputPin/DInputPin.d.ts +3 -3
- package/dist/types/components/DInputRange/DInputRange.d.ts +2 -2
- package/dist/types/components/DInputSelect/DInputSelect.d.ts +3 -3
- package/dist/types/components/DLayout/DLayout.d.ts +21 -0
- package/dist/types/components/DLayout/components/DLayoutPane.d.ts +13 -0
- package/dist/types/components/DLayout/index.d.ts +3 -0
- package/dist/types/components/DListGroup/components/DListGroupItem.d.ts +4 -4
- package/dist/types/components/DMinimalLineChart/DMinimalLineChart.d.ts +9 -0
- package/dist/types/components/DMultiLineChart/DMultiLineChart.d.ts +9 -0
- package/dist/types/components/DOtp/DOtp.d.ts +16 -0
- package/dist/types/components/DOtp/DOtpspec.d.ts +0 -0
- package/dist/types/components/DOtp/components/OtpCountdown.d.ts +7 -0
- package/dist/types/components/DOtp/hooks/useCountdown.d.ts +4 -0
- package/dist/types/components/DOtp/index.d.ts +2 -0
- package/dist/types/components/DPaginator/DPaginator.d.ts +2 -27
- package/dist/types/components/DPieChart/DPieChart.d.ts +9 -0
- package/dist/types/components/DProgress/DProgress.d.ts +2 -1
- package/dist/types/components/DRadialBarChart/DRadialBarChart.d.ts +6 -0
- package/dist/types/components/DSelect/DSelect.d.ts +3 -3
- package/dist/types/components/DTabs/DTabs.d.ts +2 -2
- package/dist/types/components/DTimeline/DTimeline.d.ts +15 -0
- package/dist/types/components/DTimeline/index.d.ts +2 -0
- package/dist/types/components/DToastContainer/useDToast.d.ts +2 -2
- package/dist/types/components/DTooltip/DTooltip.d.ts +1 -2
- package/dist/types/components/index.d.ts +5 -8
- package/dist/types/components/interface.d.ts +3 -8
- package/package.json +8 -3
- package/src/style/_shame.scss +42 -1
- package/src/style/abstracts/_mixins.scss +1 -7
- package/src/style/abstracts/_utilities.scss +51 -1
- package/src/style/abstracts/variables/_+import.scss +3 -2
- package/src/style/abstracts/variables/_alerts.scss +2 -0
- package/src/style/abstracts/variables/_body.scss +10 -3
- package/src/style/abstracts/variables/_border.scss +5 -5
- package/src/style/abstracts/variables/_buttons.scss +17 -11
- package/src/style/abstracts/variables/_cards.scss +6 -4
- package/src/style/abstracts/variables/_chips.scss +2 -2
- package/src/style/abstracts/variables/_colors.scss +140 -69
- package/src/style/abstracts/variables/_datepicker.scss +10 -9
- package/src/style/abstracts/variables/_dropdowns.scss +6 -4
- package/src/style/abstracts/variables/_forms.scss +4 -4
- package/src/style/abstracts/variables/_list-group.scss +2 -2
- package/src/style/abstracts/variables/_modals.scss +4 -3
- package/src/style/abstracts/variables/_offcanvas.scss +1 -0
- package/src/style/abstracts/variables/_pagination.scss +4 -4
- package/src/style/abstracts/variables/_shadow.scss +1 -0
- package/src/style/abstracts/variables/_tables.scss +8 -3
- package/src/style/abstracts/variables/_tooltip.scss +1 -1
- package/src/style/abstracts/variables/_typography.scss +7 -7
- package/src/style/base/_+import.scss +1 -0
- package/src/style/base/_alert.scss +1 -27
- package/src/style/base/_badge.scss +50 -12
- package/src/style/base/_buttons.scss +148 -22
- package/src/style/base/_dropdown.scss +18 -0
- package/src/style/base/_input-group.scss +5 -0
- package/src/style/base/_list-group.scss +6 -0
- package/src/style/base/_pagination.scss +2 -0
- package/src/style/base/_tables.scss +4 -0
- package/src/style/base/_tooltip.scss +1 -10
- package/src/style/components/_+import.scss +4 -4
- package/src/style/components/_d-avatar.scss +2 -20
- package/src/style/components/_d-box.scss +13 -0
- package/src/style/components/_d-carousel.scss +19 -1
- package/src/style/components/_d-credit-card.scss +67 -0
- package/src/style/components/_d-datepicker.scss +64 -26
- package/src/style/components/_d-icon.scss +10 -3
- package/src/style/components/_d-modal.scss +3 -0
- package/src/style/components/_d-stepper-desktop.scss +61 -65
- package/src/style/components/_d-stepper-mobile.scss +2 -2
- package/src/style/components/_d-tabs.scss +37 -0
- package/src/style/components/_d-timeline.scss +108 -0
- package/src/style/helpers/_color-bg.scss +13 -3
- package/src/style/root/_root.scss +35 -18
- package/dist/types/components/DInputCurrencyBase/DInputCurrencyBase.d.ts +0 -26
- package/dist/types/components/DInputCurrencyBase/index.d.ts +0 -2
- package/dist/types/components/DInputSearch/DInputSearch.d.ts +0 -17
- package/dist/types/components/DInputSearch/index.d.ts +0 -2
- package/dist/types/components/DList/DList.d.ts +0 -17
- package/dist/types/components/DList/components/DListItem.d.ts +0 -13
- package/dist/types/components/DList/index.d.ts +0 -3
- package/dist/types/components/DQuickActionButton/DQuickActionButton.d.ts +0 -20
- package/dist/types/components/DQuickActionButton/index.d.ts +0 -2
- package/dist/types/components/DQuickActionCheck/DQuickActionCheck.d.ts +0 -17
- package/dist/types/components/DQuickActionCheck/index.d.ts +0 -2
- package/dist/types/components/DQuickActionSelect/DQuickActionSelect.d.ts +0 -13
- package/dist/types/components/DQuickActionSelect/index.d.ts +0 -2
- package/dist/types/components/DQuickActionSwitch/DQuickActionSwitch.d.ts +0 -15
- package/dist/types/components/DQuickActionSwitch/index.d.ts +0 -2
- package/dist/types/components/DSkeleton/DSkeleton.d.ts +0 -11
- package/dist/types/components/DSkeleton/index.d.ts +0 -2
- package/src/style/components/_d-quick-action-button.scss +0 -121
- package/src/style/components/_d-quick-action-check.scss +0 -74
- package/src/style/components/_d-quick-action-select.scss +0 -58
- package/src/style/components/_d-quick-action-switch.scss +0 -64
|
@@ -35,7 +35,7 @@ $grays: (
|
|
|
35
35
|
// fusv-enable
|
|
36
36
|
|
|
37
37
|
// scss-docs-start color-variables
|
|
38
|
-
$blue: #
|
|
38
|
+
$blue: #2068d5 !default;
|
|
39
39
|
$indigo: #6610f2 !default;
|
|
40
40
|
$purple: #4848b7 !default;
|
|
41
41
|
$pink: #d81b60 !default;
|
|
@@ -339,25 +339,25 @@ $cyans: (
|
|
|
339
339
|
// custom
|
|
340
340
|
// theme <- colors mapping.
|
|
341
341
|
$theme-colors-mapping: (
|
|
342
|
-
"primary": "
|
|
343
|
-
"secondary": "
|
|
342
|
+
"primary": "blue",
|
|
343
|
+
"secondary": "gray-800",
|
|
344
344
|
"success": "green",
|
|
345
345
|
"info": "blue",
|
|
346
346
|
"warning": "yellow",
|
|
347
347
|
"danger": "red",
|
|
348
|
-
"light": "gray-
|
|
348
|
+
"light": "gray-25",
|
|
349
349
|
"dark": "gray-900"
|
|
350
350
|
) !default;
|
|
351
351
|
// end custom
|
|
352
352
|
|
|
353
353
|
// scss-docs-start theme-color-variables
|
|
354
|
-
$primary: $
|
|
355
|
-
$secondary: $
|
|
354
|
+
$primary: $blue !default;
|
|
355
|
+
$secondary: $gray-400 !default;
|
|
356
356
|
$success: $green !default;
|
|
357
357
|
$info: $blue !default;
|
|
358
358
|
$warning: $yellow !default;
|
|
359
359
|
$danger: $red !default;
|
|
360
|
-
$light: $gray-
|
|
360
|
+
$light: $gray-25 !default;
|
|
361
361
|
$dark: $gray-900 !default;
|
|
362
362
|
// scss-docs-end theme-color-variables
|
|
363
363
|
|
|
@@ -370,7 +370,16 @@ $theme-colors: (
|
|
|
370
370
|
"warning": $warning,
|
|
371
371
|
"danger": $danger,
|
|
372
372
|
"light": $light,
|
|
373
|
-
"dark": $dark
|
|
373
|
+
"dark": $dark,
|
|
374
|
+
"indigo": $indigo,
|
|
375
|
+
"purple": $purple,
|
|
376
|
+
"pink": $pink,
|
|
377
|
+
"red": $red,
|
|
378
|
+
"orange": $orange,
|
|
379
|
+
"yellow": $yellow,
|
|
380
|
+
"green": $green,
|
|
381
|
+
"teal": $teal,
|
|
382
|
+
"cyan": $cyan
|
|
374
383
|
) !default;
|
|
375
384
|
// scss-docs-end theme-colors-map
|
|
376
385
|
|
|
@@ -387,7 +396,7 @@ $primary-text-emphasis: var(--#{$prefix}primary-600) !default;
|
|
|
387
396
|
$secondary-text-emphasis: var(--#{$prefix}secondary-600) !default;
|
|
388
397
|
$success-text-emphasis: var(--#{$prefix}success-600) !default;
|
|
389
398
|
$info-text-emphasis: var(--#{$prefix}info-600) !default;
|
|
390
|
-
$warning-text-emphasis: var(--#{$prefix}warning-
|
|
399
|
+
$warning-text-emphasis: var(--#{$prefix}warning-800) !default;
|
|
391
400
|
$danger-text-emphasis: var(--#{$prefix}danger-600) !default;
|
|
392
401
|
$light-text-emphasis: var(--#{$prefix}gray-600) !default;
|
|
393
402
|
$dark-text-emphasis: var(--#{$prefix}gray-600) !default;
|
|
@@ -415,29 +424,29 @@ $light-border-subtle: var(--#{$prefix}gray-100) !default;
|
|
|
415
424
|
$dark-border-subtle: var(--#{$prefix}gray-400) !default;
|
|
416
425
|
// scss-docs-end theme-border-subtle-variables
|
|
417
426
|
|
|
418
|
-
$primary-25: $
|
|
419
|
-
$primary-50: $
|
|
420
|
-
$primary-100: $
|
|
421
|
-
$primary-200: $
|
|
422
|
-
$primary-300: $
|
|
423
|
-
$primary-400: $
|
|
424
|
-
$primary-500: $
|
|
425
|
-
$primary-600: $
|
|
426
|
-
$primary-700: $
|
|
427
|
-
$primary-800: $
|
|
428
|
-
$primary-900: $
|
|
429
|
-
|
|
430
|
-
$secondary-25: $
|
|
431
|
-
$secondary-50: $
|
|
432
|
-
$secondary-100: $
|
|
433
|
-
$secondary-200: $
|
|
434
|
-
$secondary-300: $
|
|
435
|
-
$secondary-400: $
|
|
436
|
-
$secondary-500: $
|
|
437
|
-
$secondary-600: $
|
|
438
|
-
$secondary-700: $
|
|
439
|
-
$secondary-800: $
|
|
440
|
-
$secondary-900: $
|
|
427
|
+
$primary-25: $blue-25 !default;
|
|
428
|
+
$primary-50: $blue-50 !default;
|
|
429
|
+
$primary-100: $blue-100 !default;
|
|
430
|
+
$primary-200: $blue-200 !default;
|
|
431
|
+
$primary-300: $blue-300 !default;
|
|
432
|
+
$primary-400: $blue-400 !default;
|
|
433
|
+
$primary-500: $blue-500 !default;
|
|
434
|
+
$primary-600: $blue-600 !default;
|
|
435
|
+
$primary-700: $blue-700 !default;
|
|
436
|
+
$primary-800: $blue-800 !default;
|
|
437
|
+
$primary-900: $blue-900 !default;
|
|
438
|
+
|
|
439
|
+
$secondary-25: $gray-25 !default;
|
|
440
|
+
$secondary-50: $gray-50 !default;
|
|
441
|
+
$secondary-100: $gray-100 !default;
|
|
442
|
+
$secondary-200: $gray-200 !default;
|
|
443
|
+
$secondary-300: $gray-300 !default;
|
|
444
|
+
$secondary-400: $gray-400 !default;
|
|
445
|
+
$secondary-500: $gray-500 !default;
|
|
446
|
+
$secondary-600: $gray-600 !default;
|
|
447
|
+
$secondary-700: $gray-700 !default;
|
|
448
|
+
$secondary-800: $gray-800 !default;
|
|
449
|
+
$secondary-900: $gray-900 !default;
|
|
441
450
|
|
|
442
451
|
$success-25: $green-25 !default;
|
|
443
452
|
$success-50: $green-50 !default;
|
|
@@ -487,43 +496,6 @@ $danger-700: $red-700 !default;
|
|
|
487
496
|
$danger-800: $red-800 !default;
|
|
488
497
|
$danger-900: $red-900 !default;
|
|
489
498
|
|
|
490
|
-
// custom
|
|
491
|
-
$bg-surface-gray: var(--#{$prefix}gray-50-rgb) !default;
|
|
492
|
-
$bg-surface-primary: var(--#{$prefix}primary-50-rgb) !default;
|
|
493
|
-
$bg-surface-secondary: var(--#{$prefix}secondary-50-rgb) !default;
|
|
494
|
-
$bg-surface-success: var(--#{$prefix}success-50-rgb) !default;
|
|
495
|
-
$bg-surface-info: var(--#{$prefix}info-50-rgb) !default;
|
|
496
|
-
$bg-surface-warning: var(--#{$prefix}warning-50-rgb) !default;
|
|
497
|
-
$bg-surface-danger: var(--#{$prefix}danger-50-rgb) !default;
|
|
498
|
-
|
|
499
|
-
$bg-surface-colors: (
|
|
500
|
-
"surface-gray": $bg-surface-gray,
|
|
501
|
-
"surface-primary": $bg-surface-primary,
|
|
502
|
-
"surface-secondary": $bg-surface-secondary,
|
|
503
|
-
"surface-success": $bg-surface-success,
|
|
504
|
-
"surface-info": $bg-surface-info,
|
|
505
|
-
"surface-warning": $bg-surface-warning,
|
|
506
|
-
"surface-danger": $bg-surface-danger,
|
|
507
|
-
) !default;
|
|
508
|
-
|
|
509
|
-
$bg-gray-soft: var(--#{$prefix}gray-25-rgb) !default;
|
|
510
|
-
$bg-primary-soft: var(--#{$prefix}primary-25-rgb) !default;
|
|
511
|
-
$bg-secondary-soft: var(--#{$prefix}secondary-25-rgb) !default;
|
|
512
|
-
$bg-success-soft: var(--#{$prefix}success-25-rgb) !default;
|
|
513
|
-
$bg-info-soft: var(--#{$prefix}info-25-rgb) !default;
|
|
514
|
-
$bg-warning-soft: var(--#{$prefix}warning-25-rgb) !default;
|
|
515
|
-
$bg-danger-soft: var(--#{$prefix}danger-25-rgb) !default;
|
|
516
|
-
|
|
517
|
-
$bg-soft-colors: (
|
|
518
|
-
"gray-soft": $bg-gray-soft,
|
|
519
|
-
"primary-soft": $bg-primary-soft,
|
|
520
|
-
"secondary-soft": $bg-secondary-soft,
|
|
521
|
-
"success-soft": $bg-success-soft,
|
|
522
|
-
"info-soft": $bg-info-soft,
|
|
523
|
-
"warning-soft": $bg-warning-soft,
|
|
524
|
-
"danger-soft": $bg-danger-soft,
|
|
525
|
-
) !default;
|
|
526
|
-
// end custom
|
|
527
499
|
|
|
528
500
|
$theme-colors-palettes: (
|
|
529
501
|
"primary-25": $primary-25,
|
|
@@ -592,6 +564,105 @@ $theme-colors-palettes: (
|
|
|
592
564
|
"danger-700": $danger-700,
|
|
593
565
|
"danger-800": $danger-800,
|
|
594
566
|
"danger-900": $danger-900,
|
|
567
|
+
"indigo-25": $indigo-25,
|
|
568
|
+
"indigo-50": $indigo-50,
|
|
569
|
+
"indigo-100": $indigo-100,
|
|
570
|
+
"indigo-200": $indigo-200,
|
|
571
|
+
"indigo-300": $indigo-300,
|
|
572
|
+
"indigo-400": $indigo-400,
|
|
573
|
+
"indigo-500": $indigo-500,
|
|
574
|
+
"indigo-600": $indigo-600,
|
|
575
|
+
"indigo-700": $indigo-700,
|
|
576
|
+
"indigo-800": $indigo-800,
|
|
577
|
+
"indigo-900": $indigo-900,
|
|
578
|
+
"purple-25": $purple-25,
|
|
579
|
+
"purple-50": $purple-50,
|
|
580
|
+
"purple-100": $purple-100,
|
|
581
|
+
"purple-200": $purple-200,
|
|
582
|
+
"purple-300": $purple-300,
|
|
583
|
+
"purple-400": $purple-400,
|
|
584
|
+
"purple-500": $purple-500,
|
|
585
|
+
"purple-600": $purple-600,
|
|
586
|
+
"purple-700": $purple-700,
|
|
587
|
+
"purple-800": $purple-800,
|
|
588
|
+
"purple-900": $purple-900,
|
|
589
|
+
"pink-25": $pink-25,
|
|
590
|
+
"pink-50": $pink-50,
|
|
591
|
+
"pink-100": $pink-100,
|
|
592
|
+
"pink-200": $pink-200,
|
|
593
|
+
"pink-300": $pink-300,
|
|
594
|
+
"pink-400": $pink-400,
|
|
595
|
+
"pink-500": $pink-500,
|
|
596
|
+
"pink-600": $pink-600,
|
|
597
|
+
"pink-700": $pink-700,
|
|
598
|
+
"pink-800": $pink-800,
|
|
599
|
+
"pink-900": $pink-900,
|
|
600
|
+
"red-25": $red-25,
|
|
601
|
+
"red-50": $red-50,
|
|
602
|
+
"red-100": $red-100,
|
|
603
|
+
"red-200": $red-200,
|
|
604
|
+
"red-300": $red-300,
|
|
605
|
+
"red-400": $red-400,
|
|
606
|
+
"red-500": $red-500,
|
|
607
|
+
"red-600": $red-600,
|
|
608
|
+
"red-700": $red-700,
|
|
609
|
+
"red-800": $red-800,
|
|
610
|
+
"red-900": $red-900,
|
|
611
|
+
"orange-25": $orange-25,
|
|
612
|
+
"orange-50": $orange-50,
|
|
613
|
+
"orange-100": $orange-100,
|
|
614
|
+
"orange-200": $orange-200,
|
|
615
|
+
"orange-300": $orange-300,
|
|
616
|
+
"orange-400": $orange-400,
|
|
617
|
+
"orange-500": $orange-500,
|
|
618
|
+
"orange-600": $orange-600,
|
|
619
|
+
"orange-700": $orange-700,
|
|
620
|
+
"orange-800": $orange-800,
|
|
621
|
+
"orange-900": $orange-900,
|
|
622
|
+
"yellow-25": $yellow-25,
|
|
623
|
+
"yellow-50": $yellow-50,
|
|
624
|
+
"yellow-100": $yellow-100,
|
|
625
|
+
"yellow-200": $yellow-200,
|
|
626
|
+
"yellow-300": $yellow-300,
|
|
627
|
+
"yellow-400": $yellow-400,
|
|
628
|
+
"yellow-500": $yellow-500,
|
|
629
|
+
"yellow-600": $yellow-600,
|
|
630
|
+
"yellow-700": $yellow-700,
|
|
631
|
+
"yellow-800": $yellow-800,
|
|
632
|
+
"yellow-900": $yellow-900,
|
|
633
|
+
"green-25": $green-25,
|
|
634
|
+
"green-50": $green-50,
|
|
635
|
+
"green-100": $green-100,
|
|
636
|
+
"green-200": $green-200,
|
|
637
|
+
"green-300": $green-300,
|
|
638
|
+
"green-400": $green-400,
|
|
639
|
+
"green-500": $green-500,
|
|
640
|
+
"green-600": $green-600,
|
|
641
|
+
"green-700": $green-700,
|
|
642
|
+
"green-800": $green-800,
|
|
643
|
+
"green-900": $green-900,
|
|
644
|
+
"teal-25": $teal-25,
|
|
645
|
+
"teal-50": $teal-50,
|
|
646
|
+
"teal-100": $teal-100,
|
|
647
|
+
"teal-200": $teal-200,
|
|
648
|
+
"teal-300": $teal-300,
|
|
649
|
+
"teal-400": $teal-400,
|
|
650
|
+
"teal-500": $teal-500,
|
|
651
|
+
"teal-600": $teal-600,
|
|
652
|
+
"teal-700": $teal-700,
|
|
653
|
+
"teal-800": $teal-800,
|
|
654
|
+
"teal-900": $teal-900,
|
|
655
|
+
"cyan-25": $cyan-25,
|
|
656
|
+
"cyan-50": $cyan-50,
|
|
657
|
+
"cyan-100": $cyan-100,
|
|
658
|
+
"cyan-200": $cyan-200,
|
|
659
|
+
"cyan-300": $cyan-300,
|
|
660
|
+
"cyan-400": $cyan-400,
|
|
661
|
+
"cyan-500": $cyan-500,
|
|
662
|
+
"cyan-600": $cyan-600,
|
|
663
|
+
"cyan-700": $cyan-700,
|
|
664
|
+
"cyan-800": $cyan-800,
|
|
665
|
+
"cyan-900": $cyan-900,
|
|
595
666
|
) !default;
|
|
596
667
|
|
|
597
668
|
$palette-grays: map-prev-key($grays, "gray") !default;
|
|
@@ -5,8 +5,8 @@ $datepicker-border-color: var(--#{$prefix}gray-400) !default;
|
|
|
5
5
|
$datepicker-border-radius: var(--#{$prefix}border-radius-sm) !default;
|
|
6
6
|
$datepicker-day-border-radius: .25rem !default;
|
|
7
7
|
// Header
|
|
8
|
-
$datepicker-header-bg:
|
|
9
|
-
$datepicker-header-padding:
|
|
8
|
+
$datepicker-header-bg: none !default;
|
|
9
|
+
$datepicker-header-padding: 0 !default;
|
|
10
10
|
$datepicker-header-font-weight: var(--#{$prefix}fw-bold) !default;
|
|
11
11
|
$datepicker-day-names-color: var(--#{$prefix}gray) !default;
|
|
12
12
|
$datepicker-day-names-font-size: var(--#{$prefix}fs-small) !default;
|
|
@@ -24,7 +24,7 @@ $datepicker-day-color: var(--#{$prefix}body-color) !default;
|
|
|
24
24
|
|
|
25
25
|
// Day selected
|
|
26
26
|
$datepicker-day-selected-color: var(--#{$prefix}white) !default;
|
|
27
|
-
$datepicker-day-selected-bg: var(--#{$prefix}
|
|
27
|
+
$datepicker-day-selected-bg: var(--#{$prefix}primary-500) !default;
|
|
28
28
|
|
|
29
29
|
// Day Disabled
|
|
30
30
|
$datepicker-day-disabled-color: var(--#{$prefix}gray-400) !default;
|
|
@@ -37,11 +37,12 @@ $datepicker-week-number-border-radius: .25rem !default;
|
|
|
37
37
|
|
|
38
38
|
// Range
|
|
39
39
|
$datepicker-range-start-color: var(--#{$prefix}white) !default;
|
|
40
|
-
$datepicker-range-start-bg: var(--#{$prefix}
|
|
40
|
+
$datepicker-range-start-bg: var(--#{$prefix}primary-500) !default;
|
|
41
41
|
$datepicker-range-end-color: var(--#{$prefix}white) !default;
|
|
42
|
-
$datepicker-range-end-bg: var(--#{$prefix}
|
|
43
|
-
$datepicker-in-range-bg: var(--#{$prefix}
|
|
42
|
+
$datepicker-range-end-bg: var(--#{$prefix}primary-500) !default;
|
|
43
|
+
$datepicker-in-range-bg: var(--#{$prefix}primary-200) !default;
|
|
44
44
|
$datepicker-range-color: var(--#{$prefix}body-color) !default;
|
|
45
|
-
$datepicker-in-range-hover-bg: var(--#{$prefix}
|
|
46
|
-
$datepicker-in-range-disabled-color: var(--#{$prefix}
|
|
47
|
-
$datepicker-in-range-disabled-bg: var(--#{$prefix}
|
|
45
|
+
$datepicker-in-range-hover-bg: var(--#{$prefix}primary-400) !default;
|
|
46
|
+
$datepicker-in-range-disabled-color: var(--#{$prefix}primary-200) !default;
|
|
47
|
+
$datepicker-in-range-disabled-bg: var(--#{$prefix}primary-50) !default;
|
|
48
|
+
$datepicker-time-list-item-width: 100px !default;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// Dropdown menu container and contents.
|
|
4
4
|
|
|
5
5
|
// scss-docs-start dropdown-variables
|
|
6
|
-
$dropdown-padding-x: var(--#{$prefix}
|
|
6
|
+
$dropdown-padding-x: var(--#{$prefix}ref-spacer-2) !default;
|
|
7
7
|
$dropdown-bg: var(--#{$prefix}white) !default;
|
|
8
8
|
$dropdown-border-radius: var(--#{$prefix}border-radius-sm) !default;
|
|
9
9
|
$dropdown-border-width: 0 !default;
|
|
@@ -11,8 +11,10 @@ $dropdown-border-width: 0 !default;
|
|
|
11
11
|
$dropdown-divider-margin-y: var(--#{$prefix}ref-spacer-2) !default;
|
|
12
12
|
$dropdown-box-shadow: var(--#{$prefix}box-shadow-sm) !default;
|
|
13
13
|
|
|
14
|
-
$dropdown-link-color: rgb(var(--#{$prefix}gray-
|
|
15
|
-
$dropdown-link-hover-
|
|
14
|
+
$dropdown-link-color: rgb(var(--#{$prefix}gray-700-rgb)) !default;
|
|
15
|
+
$dropdown-link-hover-color: rgb(var(--#{$prefix}gray-700-rgb)) !default;
|
|
16
|
+
$dropdown-link-hover-bg: rgb(var(--#{$prefix}gray-25-rgb)) !default;
|
|
17
|
+
$dropdown-link-active-bg: rgb(var(--#{$prefix}gray-50-rgb)) !default;
|
|
16
18
|
|
|
17
19
|
$dropdown-item-padding-y: var(--#{$prefix}ref-spacer-2) !default;
|
|
18
20
|
$dropdown-item-padding-x: var(--#{$prefix}ref-spacer-4) !default;
|
|
@@ -28,7 +30,7 @@ $dropdown-header-color: var(--#{$prefix}gray-600) !default;
|
|
|
28
30
|
$dropdown-dark-color: var(--#{$prefix}gray-300) !default;
|
|
29
31
|
$dropdown-dark-bg: var(--#{$prefix}gray-800) !default;
|
|
30
32
|
$dropdown-dark-link-hover-color: var(--#{$prefix}white) !default;
|
|
31
|
-
$dropdown-dark-link-hover-bg:
|
|
33
|
+
$dropdown-dark-link-hover-bg: var(--#{$prefix}gray-50) !default;
|
|
32
34
|
$dropdown-dark-link-disabled-color: var(--#{$prefix}gray-500) !default;
|
|
33
35
|
$dropdown-dark-header-color: var(--#{$prefix}gray-500) !default;
|
|
34
36
|
// scss-docs-end dropdown-dark-variables
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// scss-docs-start form-text-variables
|
|
2
2
|
$form-text-margin-top: var(--#{$prefix}ref-spacer-1) !default;
|
|
3
|
-
$form-text-color: var(--#{$prefix}
|
|
3
|
+
$form-text-color: var(--#{$prefix}bs-gray-400) !default;
|
|
4
4
|
// scss-docs-end form-text-variables
|
|
5
5
|
|
|
6
6
|
// scss-docs-start form-label-variables
|
|
@@ -11,8 +11,8 @@ $form-label-color: var(--#{$prefix}label-color) !default;
|
|
|
11
11
|
// scss-docs-end form-label-variables
|
|
12
12
|
|
|
13
13
|
// scss-docs-start form-input-variables
|
|
14
|
-
$input-padding-y: $spacer-
|
|
15
|
-
$input-padding-x: $spacer-
|
|
14
|
+
$input-padding-y: $spacer-2 !default;
|
|
15
|
+
$input-padding-x: $spacer-3 !default;
|
|
16
16
|
|
|
17
17
|
$input-padding-x-sm: $spacer-2 !default;
|
|
18
18
|
$input-padding-y-sm: $spacer-1 !default;
|
|
@@ -35,7 +35,7 @@ $input-border-radius: var(--#{$prefix}border-radius-sm) !default;
|
|
|
35
35
|
$input-border-radius-sm: var(--#{$prefix}border-radius-sm) !default;
|
|
36
36
|
$input-border-radius-lg: var(--#{$prefix}border-radius-sm) !default;
|
|
37
37
|
|
|
38
|
-
$input-focus-border-color: $
|
|
38
|
+
$input-focus-border-color: var(--#{$prefix}gray-200) !default;
|
|
39
39
|
$input-focus-width: $input-btn-focus-width !default;
|
|
40
40
|
|
|
41
41
|
$input-placeholder-color: var(--#{$prefix}border-color) !default;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// scss-docs-start list-group-variables
|
|
4
4
|
$list-group-color: var(--#{$prefix}dark) !default;
|
|
5
5
|
$list-group-bg: transparent !default;
|
|
6
|
-
$list-group-border-color: var(--#{$prefix}gray-
|
|
6
|
+
$list-group-border-color: var(--#{$prefix}gray-100) !default;
|
|
7
7
|
$list-group-border-radius: var(--#{$prefix}border-radius-sm) !default;
|
|
8
8
|
|
|
9
9
|
$list-group-item-padding-y: var(--#{$prefix}ref-spacer-3) !default;
|
|
@@ -14,7 +14,7 @@ $list-group-item-bg-scale: 0% !default;
|
|
|
14
14
|
$list-group-item-color-scale: 40% !default;
|
|
15
15
|
// fusv-enable
|
|
16
16
|
|
|
17
|
-
$list-group-hover-bg: var(--#{$prefix}
|
|
17
|
+
$list-group-hover-bg: var(--#{$prefix}subtle-primary) !default;
|
|
18
18
|
|
|
19
19
|
$list-group-disabled-color: var(--#{$prefix}gray-600) !default;
|
|
20
20
|
|
|
@@ -19,19 +19,20 @@ $modal-backdrop-bg: var(--#{$prefix}black) !default;
|
|
|
19
19
|
$modal-backdrop-opacity: .3 !default;
|
|
20
20
|
|
|
21
21
|
$modal-header-border-color: transparent !default;
|
|
22
|
-
$modal-header-padding-y: var(--#{$prefix}ref-spacer-
|
|
22
|
+
$modal-header-padding-y: var(--#{$prefix}ref-spacer-6) !default;
|
|
23
23
|
$modal-header-padding-x: var(--#{$prefix}ref-spacer-4) !default;
|
|
24
24
|
$modal-header-padding: var(--#{$prefix}ref-spacer-4) !default; // Keep this for backwards compatibility
|
|
25
|
+
$modal-body-padding: var(--#{$prefix}ref-spacer-4) var(--#{$prefix}ref-spacer-6) !default;
|
|
25
26
|
|
|
26
27
|
$modal-footer-border-color: transparent !default;
|
|
27
28
|
|
|
28
29
|
// custom
|
|
29
30
|
$modal-separator-bg: var(--#{$prefix}gray-100) !default;
|
|
30
31
|
$modal-separator-height: 1px !default;
|
|
31
|
-
$modal-separator-margin-x:
|
|
32
|
+
$modal-separator-margin-x: 0 !default;
|
|
32
33
|
// end custom
|
|
33
34
|
|
|
34
35
|
// custom
|
|
35
|
-
$modal-footer-padding: var(--#{$prefix}ref-spacer-4) !default;
|
|
36
|
+
$modal-footer-padding: var(--#{$prefix}ref-spacer-4) var(--#{$prefix}ref-spacer-6) !default;
|
|
36
37
|
// end custom
|
|
37
38
|
// scss-docs-end modal-variables
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
// scss-docs-start offcanvas-variables
|
|
4
4
|
$offcanvas-padding-y: var(--#{$prefix}ref-spacer-4) !default;
|
|
5
5
|
$offcanvas-padding-x: var(--#{$prefix}ref-spacer-4) !default;
|
|
6
|
+
$offcanvas-box-shadow: var(--#{$prefix}box-shadow-lg) !default;
|
|
6
7
|
|
|
7
8
|
// custom
|
|
8
9
|
$offcanvas-header-gap: var(--#{$prefix}ref-spacer-4) !default;
|
|
@@ -12,7 +12,7 @@ $pagination-padding-x-lg: var(--#{$prefix}ref-spacer-1) !default;
|
|
|
12
12
|
$pagination-page-item-size: $spacer-8 !default;
|
|
13
13
|
$pagination-page-item-size-lg: $spacer-10 !default;
|
|
14
14
|
$pagination-page-item-size-sm: $spacer-6 !default;
|
|
15
|
-
$pagination-page-border-radius: $
|
|
15
|
+
$pagination-page-border-radius: var(--#{$prefix}border-radius) !default;
|
|
16
16
|
$pagination-page-control-color: var(--#{$prefix}primary) !default;
|
|
17
17
|
$pagination-page-control-disabled-color: var(--#{$prefix}primary-200) !default;
|
|
18
18
|
// end custom
|
|
@@ -22,7 +22,7 @@ $pagination-bg: transparent !default;
|
|
|
22
22
|
$pagination-border-width: 0 !default;
|
|
23
23
|
|
|
24
24
|
$pagination-hover-color: var(--#{$prefix}body-color) !default;
|
|
25
|
-
$pagination-hover-bg: var(--#{$prefix}
|
|
25
|
+
$pagination-hover-bg: var(--#{$prefix}gray-50) !default;
|
|
26
26
|
$pagination-hover-border-color: 0 !default; // Todo in v6: remove this?
|
|
27
27
|
|
|
28
28
|
$pagination-focus-color: #{$pagination-hover-color} !default;
|
|
@@ -33,6 +33,6 @@ $pagination-focus-outline: 0 !default;
|
|
|
33
33
|
$pagination-disabled-color: var(--#{$prefix}body-color) !default;
|
|
34
34
|
$pagination-disabled-bg: var(--#{$prefix}transparent) !default;
|
|
35
35
|
|
|
36
|
-
$pagination-border-radius-sm: $pagination-page-item-size-sm !default;
|
|
37
|
-
$pagination-border-radius-lg: $pagination-page-item-size-lg !default;
|
|
36
|
+
// $pagination-border-radius-sm: $pagination-page-item-size-sm !default;
|
|
37
|
+
// $pagination-border-radius-lg: $pagination-page-item-size-lg !default;
|
|
38
38
|
// scss-docs-end pagination-variables
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
$box-shadow-lg: 0 10px 10px rgba(0, 0, 0, .02) !default;
|
|
@@ -10,17 +10,22 @@ $table-bg-scale: -100% !default;
|
|
|
10
10
|
|
|
11
11
|
$table-striped-color: $table-color !default;
|
|
12
12
|
$table-striped-bg-factor: .05 !default;
|
|
13
|
-
$table-striped-bg: unquote("color-mix(in srgb, var(--#{$prefix}white), var(--#{$prefix}black) #{(100% - $table-bg-scale) * $table-striped-bg-factor})") !default;
|
|
14
13
|
|
|
15
14
|
$table-active-color: $table-color !default;
|
|
16
15
|
$table-active-bg-factor: .1 !default;
|
|
17
|
-
$table-active-bg: unquote("color-mix(in srgb, var(--#{$prefix}white), var(--#{$prefix}black) #{(100% - $table-bg-scale) * $table-active-bg-factor})") !default;
|
|
18
16
|
|
|
19
17
|
$table-hover-color: $table-color !default;
|
|
20
18
|
$table-hover-bg-factor: .075 !default;
|
|
21
|
-
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
$table-bg-color-default: var(--#{$prefix}gray-25) !default;
|
|
22
|
+
|
|
23
|
+
$table-hover-bg: $table-bg-color-default !default;
|
|
24
|
+
$table-striped-bg: $table-bg-color-default !default;
|
|
25
|
+
$table-active-bg: $table-bg-color-default !default;
|
|
22
26
|
|
|
23
27
|
$table-border-factor: .1 !default;
|
|
28
|
+
$table-border-color: var(--#{$prefix}gray-50) !default;
|
|
24
29
|
|
|
25
30
|
|
|
26
31
|
// scss-docs-end table-variables
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// scss-docs-start tooltip-variables
|
|
2
2
|
$tooltip-font-size: var(--#{$prefix}body-font-size) !default;
|
|
3
3
|
$tooltip-max-width: 300px !default;
|
|
4
|
-
$tooltip-color:
|
|
4
|
+
$tooltip-color: var(--#{$prefix}body-bg) !default;
|
|
5
5
|
$tooltip-bg: var(--#{$prefix}emphasis-color) !default;
|
|
6
6
|
$tooltip-border-radius: var(--#{$prefix}ref-spacer-1) !default;
|
|
7
7
|
$tooltip-opacity: 1 !default;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// Font, line-height, and color for body text, headings, and more.
|
|
4
4
|
|
|
5
5
|
// scss-docs-start font-variables
|
|
6
|
-
$font-family-sans-serif: "
|
|
6
|
+
$font-family-sans-serif: "Jost", sans-serif !default;
|
|
7
7
|
|
|
8
8
|
// $font-size-root affects the value of `rem`, which is used for as well font sizes, paddings, and margins
|
|
9
9
|
// $font-size-base affects the font size of the body text
|
|
@@ -21,9 +21,9 @@ $font-size-lg: $font-size-base * 1.125 !default; // 18px
|
|
|
21
21
|
$font-weight-lighter-value: lighter !default;
|
|
22
22
|
$font-weight-light-value: 200 !default;
|
|
23
23
|
$font-weight-normal-value: 400 !default;
|
|
24
|
-
$font-weight-semibold-value:
|
|
25
|
-
$font-weight-bold-value:
|
|
26
|
-
$font-weight-bolder-value:
|
|
24
|
+
$font-weight-semibold-value: 500 !default;
|
|
25
|
+
$font-weight-bold-value: 600 !default;
|
|
26
|
+
$font-weight-bolder-value: 600 !default;
|
|
27
27
|
|
|
28
28
|
$font-weight-lighter: var(--#{$prefix}fw-lighter) !default;
|
|
29
29
|
$font-weight-light: var(--#{$prefix}fw-light) !default;
|
|
@@ -169,9 +169,9 @@ $small-font-size-value: $font-size-sm-value !default;
|
|
|
169
169
|
|
|
170
170
|
$sub-sup-font-size: .75em !default;
|
|
171
171
|
|
|
172
|
-
// fusv-disable
|
|
173
|
-
$text-muted: var(--#{$prefix}gray) !default;
|
|
174
|
-
// fusv-enable
|
|
172
|
+
// // fusv-disable
|
|
173
|
+
// $text-muted: var(--#{$prefix}gray-400) !default;
|
|
174
|
+
// // fusv-enable
|
|
175
175
|
|
|
176
176
|
$blockquote-margin-y: var(--#{$prefix}ref-spacer-4) !default;
|
|
177
177
|
$blockquote-footer-color: var(--#{$prefix}gray-600) !default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
.alert {
|
|
2
2
|
--#{$prefix}alert-gap: #{$alert-gap};
|
|
3
3
|
--#{$prefix}alert-close-icon-size: #{$alert-close-icon-size};
|
|
4
|
-
--#{$prefix}alert-icon-size: var(--#{$prefix}ref-spacer-
|
|
4
|
+
--#{$prefix}alert-icon-size: var(--#{$prefix}ref-spacer-6);
|
|
5
5
|
|
|
6
6
|
display: flex;
|
|
7
7
|
flex-direction: row;
|
|
@@ -20,30 +20,4 @@
|
|
|
20
20
|
color: var(--#{$prefix}icon-color);
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
|
-
|
|
24
|
-
@each $theme, $value in map-remove($theme-colors, "light", "dark") {
|
|
25
|
-
&.alert-#{$theme} {
|
|
26
|
-
--#{$prefix}alert-icon-color: var(--#{$prefix}#{$theme}-500);
|
|
27
|
-
--#{$prefix}alert-color: var(--#{$prefix}body-color);
|
|
28
|
-
|
|
29
|
-
--#{$prefix}alert-bg: var(--#{$prefix}surface-#{$theme});
|
|
30
|
-
--#{$prefix}alert-border-color: var(--#{$prefix}surface-#{$theme});
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
&.alert-light {
|
|
35
|
-
--#{$prefix}alert-icon-color: var(--#{$prefix}gray-500);
|
|
36
|
-
--#{$prefix}alert-color: var(--#{$prefix}body-color);
|
|
37
|
-
|
|
38
|
-
--#{$prefix}alert-bg: var(--#{$prefix}surface-gray);
|
|
39
|
-
--#{$prefix}alert-border-color: var(--#{$prefix}surface-gray);
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
&.alert-dark {
|
|
43
|
-
--#{$prefix}alert-icon-color: var(--#{$prefix}light);
|
|
44
|
-
--#{$prefix}alert-color: var(--#{$prefix}white);
|
|
45
|
-
|
|
46
|
-
--#{$prefix}alert-bg: var(--#{$prefix}gray-500);
|
|
47
|
-
--#{$prefix}alert-border-color: var(--#{$prefix}gray-500);
|
|
48
|
-
}
|
|
49
23
|
}
|
|
@@ -3,15 +3,17 @@
|
|
|
3
3
|
--#{$prefix}badge-icon-size: #{$badge-font-size};
|
|
4
4
|
--#{$prefix}badge-bg: #{$badge-bg};
|
|
5
5
|
--#{$prefix}badge-color: #{$badge-color};
|
|
6
|
+
--#{$prefix}badge-sm-font-size: var(--#{$prefix}fs-body-small);
|
|
7
|
+
--#{$prefix}badge-lg-font-size: var(--#{$prefix}fs-body-large);
|
|
6
8
|
|
|
7
9
|
display: inline-flex;
|
|
8
10
|
gap: var(--#{$prefix}badge-gap);
|
|
11
|
+
align-items: center;
|
|
9
12
|
color: var(--#{$prefix}badge-color);
|
|
10
|
-
|
|
11
13
|
background-color: var(--#{$prefix}badge-bg);
|
|
12
14
|
|
|
13
15
|
.d-icon {
|
|
14
|
-
--#{$prefix}icon-size:
|
|
16
|
+
--#{$prefix}icon-size: .75rem;
|
|
15
17
|
}
|
|
16
18
|
|
|
17
19
|
@each $theme, $value in map-remove($theme-colors, "light") {
|
|
@@ -23,23 +25,58 @@
|
|
|
23
25
|
}
|
|
24
26
|
}
|
|
25
27
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
+
|
|
29
|
+
&.badge-sm {
|
|
30
|
+
--#{$prefix}badge-font-size: var(--#{$prefix}badge-sm-font-size);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&.badge-lg {
|
|
34
|
+
--#{$prefix}badge-font-size: var(--#{$prefix}badge-lg-font-size);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
&.badge-secondary {
|
|
38
|
+
--#{$prefix}badge-bg: var(--#{$prefix}gray-100);
|
|
28
39
|
--#{$prefix}badge-color: var(--#{$prefix}gray-900);
|
|
29
40
|
}
|
|
30
41
|
|
|
31
|
-
|
|
32
|
-
$
|
|
42
|
+
&.badge-light {
|
|
43
|
+
--#{$prefix}badge-bg: var(--#{$prefix}gray-25);
|
|
44
|
+
--#{$prefix}badge-color: var(--#{$prefix}gray-700);
|
|
45
|
+
}
|
|
33
46
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
47
|
+
&.badge-soft-primary {
|
|
48
|
+
--#{$prefix}badge-bg: var(--#{$prefix}primary-50);
|
|
49
|
+
--#{$prefix}badge-color: var(--#{$prefix}primary-700);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
&.badge-soft-secondary {
|
|
53
|
+
--#{$prefix}badge-bg: var(--#{$prefix}gray-50);
|
|
54
|
+
--#{$prefix}badge-color: var(--#{$prefix}gray-700);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
&.badge-soft-success {
|
|
58
|
+
--#{$prefix}badge-bg: var(--#{$prefix}success-50);
|
|
59
|
+
--#{$prefix}badge-color: var(--#{$prefix}success-700);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
&.badge-soft-warning {
|
|
63
|
+
--#{$prefix}badge-bg: var(--#{$prefix}warning-50);
|
|
64
|
+
--#{$prefix}badge-color: var(--#{$prefix}warning-800);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
&.badge-soft-info {
|
|
68
|
+
--#{$prefix}badge-bg: var(--#{$prefix}info-50);
|
|
69
|
+
--#{$prefix}badge-color: var(--#{$prefix}info-700);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
&.badge-soft-danger {
|
|
73
|
+
--#{$prefix}badge-bg: var(--#{$prefix}danger-50);
|
|
74
|
+
--#{$prefix}badge-color: var(--#{$prefix}danger-700);
|
|
38
75
|
}
|
|
39
76
|
|
|
40
77
|
&.badge-soft-light {
|
|
41
|
-
--#{$prefix}badge-bg: var(--#{$prefix}gray-
|
|
42
|
-
--#{$prefix}badge-color: var(--#{$prefix}
|
|
78
|
+
--#{$prefix}badge-bg: var(--#{$prefix}gray-25);
|
|
79
|
+
--#{$prefix}badge-color: var(--#{$prefix}gray-500);
|
|
43
80
|
}
|
|
44
81
|
|
|
45
82
|
&.badge-soft-dark {
|
|
@@ -47,3 +84,4 @@
|
|
|
47
84
|
--#{$prefix}badge-color: var(--#{$prefix}body-color);
|
|
48
85
|
}
|
|
49
86
|
}
|
|
87
|
+
|