@clayui/css 3.78.0 → 3.81.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/lib/css/atlas.css +44 -12
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +37 -6
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/cadmin.css +39 -5
  6. package/lib/css/cadmin.css.map +1 -1
  7. package/lib/images/icons/icons.svg +1 -1
  8. package/package.json +2 -2
  9. package/src/scss/_license-text.scss +1 -1
  10. package/src/scss/atlas/variables/_alerts.scss +1 -1
  11. package/src/scss/atlas/variables/_custom-forms.scss +16 -4
  12. package/src/scss/atlas/variables/_date-picker.scss +7 -2
  13. package/src/scss/atlas/variables/_links.scss +19 -2
  14. package/src/scss/atlas/variables/_navigation-bar.scss +0 -1
  15. package/src/scss/atlas/variables/_range.scss +1 -1
  16. package/src/scss/atlas/variables/_time.scss +1 -1
  17. package/src/scss/atlas/variables/_toggle-switch.scss +1 -1
  18. package/src/scss/cadmin/components/_alerts.scss +1 -1
  19. package/src/scss/cadmin/components/_clay-color.scss +15 -20
  20. package/src/scss/cadmin/components/_custom-forms.scss +32 -4
  21. package/src/scss/cadmin/components/_date-picker.scss +4 -4
  22. package/src/scss/cadmin/components/_forms.scss +5 -7
  23. package/src/scss/cadmin/components/_list-group.scss +2 -2
  24. package/src/scss/cadmin/components/_modals.scss +2 -4
  25. package/src/scss/cadmin/components/_range.scss +3 -3
  26. package/src/scss/cadmin/components/_time.scss +3 -3
  27. package/src/scss/cadmin/variables/_alerts.scss +1 -1
  28. package/src/scss/cadmin/variables/_clay-color.scss +24 -13
  29. package/src/scss/cadmin/variables/_custom-forms.scss +2 -2
  30. package/src/scss/cadmin/variables/_date-picker.scss +4 -4
  31. package/src/scss/cadmin/variables/_forms.scss +5 -5
  32. package/src/scss/cadmin/variables/_list-group.scss +2 -2
  33. package/src/scss/cadmin/variables/_range.scss +8 -4
  34. package/src/scss/cadmin/variables/_time.scss +5 -4
  35. package/src/scss/components/_alerts.scss +6 -2
  36. package/src/scss/components/_buttons.scss +5 -1
  37. package/src/scss/components/_clay-color.scss +15 -20
  38. package/src/scss/components/_custom-forms.scss +62 -10
  39. package/src/scss/components/_date-picker.scss +4 -4
  40. package/src/scss/components/_dropdowns.scss +5 -1
  41. package/src/scss/components/_forms.scss +5 -5
  42. package/src/scss/components/_list-group.scss +2 -2
  43. package/src/scss/components/_modals.scss +2 -2
  44. package/src/scss/components/_panels.scss +56 -12
  45. package/src/scss/components/_range.scss +3 -3
  46. package/src/scss/components/_sheets.scss +3 -1
  47. package/src/scss/components/_time.scss +3 -3
  48. package/src/scss/components/_timelines.scss +7 -1
  49. package/src/scss/variables/_alerts.scss +1 -1
  50. package/src/scss/variables/_application-bar.scss +32 -6
  51. package/src/scss/variables/_clay-color.scss +41 -16
  52. package/src/scss/variables/_custom-forms.scss +225 -48
  53. package/src/scss/variables/_date-picker.scss +6 -6
  54. package/src/scss/variables/_drilldown.scss +5 -1
  55. package/src/scss/variables/_forms.scss +5 -5
  56. package/src/scss/variables/_links.scss +10 -2
  57. package/src/scss/variables/_list-group.scss +2 -2
  58. package/src/scss/variables/_management-bar.scss +56 -10
  59. package/src/scss/variables/_multi-step-nav.scss +5 -1
  60. package/src/scss/variables/_navigation-bar.scss +56 -9
  61. package/src/scss/variables/_range.scss +6 -5
  62. package/src/scss/variables/_reorder.scss +18 -5
  63. package/src/scss/variables/_sidebar.scss +25 -5
  64. package/src/scss/variables/_stickers.scss +1 -1
  65. package/src/scss/variables/_tbar.scss +6 -1
  66. package/src/scss/variables/_time.scss +5 -4
  67. package/src/scss/variables/_toggle-switch.scss +22 -10
@@ -9,16 +9,32 @@ $custom-forms-transition: background-color 0.15s ease-in-out,
9
9
 
10
10
  $custom-control-indicator-size: 1rem !default;
11
11
 
12
- $custom-control-indicator-bg: $input-bg !default;
12
+ $custom-control-indicator-bg: if(
13
+ variable-exists(input-bg),
14
+ $input-bg,
15
+ $white
16
+ ) !default;
13
17
  $custom-control-indicator-bg-size: 50% 50% !default;
14
18
  $custom-control-indicator-border-color: $gray-500 !default;
15
19
  $custom-control-indicator-border-style: solid !default;
16
20
  $custom-control-indicator-border-width: $border-width !default;
17
- $custom-control-indicator-box-shadow: $input-box-shadow !default;
21
+ $custom-control-indicator-box-shadow: if(
22
+ variable-exists(input-box-shadow),
23
+ $input-box-shadow,
24
+ inset 0 1px 1px rgba($black, 0.075)
25
+ ) !default;
18
26
  $custom-control-indicator-position-top: 0.25rem !default;
19
27
 
20
- $custom-control-indicator-focus-border-color: $input-focus-border-color !default;
21
- $custom-control-indicator-focus-box-shadow: $input-focus-box-shadow !default;
28
+ $custom-control-indicator-focus-border-color: if(
29
+ variable-exists(input-focus-border-color),
30
+ $input-focus-border-color,
31
+ clay-lighten($component-active-bg, 25%)
32
+ ) !default;
33
+ $custom-control-indicator-focus-box-shadow: if(
34
+ variable-exists(input-focus-box-shadow),
35
+ $input-focus-box-shadow,
36
+ $component-focus-box-shadow
37
+ ) !default;
22
38
 
23
39
  $custom-control-indicator-active-bg: clay-lighten(
24
40
  $component-active-bg,
@@ -28,7 +44,11 @@ $custom-control-indicator-active-box-shadow: none !default;
28
44
  $custom-control-indicator-active-border-color: $custom-control-indicator-active-bg !default;
29
45
  $custom-control-indicator-active-color: $component-active-color !default;
30
46
 
31
- $custom-control-indicator-disabled-bg: $input-disabled-bg !default;
47
+ $custom-control-indicator-disabled-bg: if(
48
+ variable-exists(input-disabled-bg),
49
+ $input-disabled-bg,
50
+ $gray-200
51
+ ) !default;
32
52
  $custom-control-indicator-disabled-border-color: $gray-400 !default;
33
53
  $custom-control-indicator-disabled-cursor: $disabled-cursor !default;
34
54
 
@@ -82,7 +102,11 @@ $custom-control-min-height: $custom-control-indicator-size +
82
102
 
83
103
  /// @deprecated as of v2.19.0 use the Sass map `$custom-control-label` instead
84
104
 
85
- $custom-control-description-cursor: $form-check-label-cursor !default;
105
+ $custom-control-description-cursor: if(
106
+ variable-exists(form-check-label-cursor),
107
+ $form-check-label-cursor,
108
+ $link-cursor
109
+ ) !default;
86
110
 
87
111
  /// @deprecated as of v2.19.0 use the Sass map `$custom-control-label` instead
88
112
 
@@ -192,7 +216,7 @@ $custom-control-label-text: map-deep-merge(
192
216
  // .custom-control-label-text small, .custom-control-label-text .small
193
217
 
194
218
  $custom-control-label-text-small: () !default;
195
- $custom-control-label-text-small: map-deep-merge(
219
+ $custom-control-label-text-small: map-merge(
196
220
  (
197
221
  font-size: $custom-control-description-small-font-size,
198
222
  ),
@@ -227,7 +251,12 @@ $custom-control: map-deep-merge(
227
251
  $custom-control-input: () !default;
228
252
  $custom-control-input: map-deep-merge(
229
253
  (
230
- cursor: $form-check-input-cursor,
254
+ cursor:
255
+ if(
256
+ variable-exists(form-check-input-cursor),
257
+ $form-check-input-cursor,
258
+ $link-cursor
259
+ ),
231
260
  height: $custom-control-indicator-size,
232
261
  left: 0,
233
262
  opacity: 0,
@@ -503,7 +532,7 @@ $custom-switch-indicator-size: $custom-control-indicator-size -
503
532
 
504
533
  /// @deprecated as of v3.x with no replacement
505
534
 
506
- $custom-select-bg: $input-bg !default;
535
+ $custom-select-bg: if(variable-exists(input-bg), $input-bg, $white) !default;
507
536
 
508
537
  /// @deprecated as of v3.x with no replacement
509
538
 
@@ -511,7 +540,11 @@ $custom-select-bg-size: 8px 10px !default;
511
540
 
512
541
  /// @deprecated as of v3.x with no replacement
513
542
 
514
- $custom-select-border-color: $input-border-color !default;
543
+ $custom-select-border-color: if(
544
+ variable-exists(input-border-color),
545
+ $input-border-color,
546
+ $gray-400
547
+ ) !default;
515
548
 
516
549
  /// @deprecated as of v3.x with no replacement
517
550
 
@@ -519,7 +552,11 @@ $custom-select-border-radius: $border-radius !default;
519
552
 
520
553
  /// @deprecated as of v3.x with no replacement
521
554
 
522
- $custom-select-border-width: $input-border-width !default;
555
+ $custom-select-border-width: if(
556
+ variable-exists(input-border-width),
557
+ $input-border-width,
558
+ 0.0625rem
559
+ ) !default;
523
560
 
524
561
  /// @deprecated as of v3.x with no replacement
525
562
 
@@ -527,23 +564,43 @@ $custom-select-box-shadow: inset 0 1px 2px rgba($black, 0.075) !default;
527
564
 
528
565
  /// @deprecated as of v3.x with no replacement
529
566
 
530
- $custom-select-color: $input-color !default;
567
+ $custom-select-color: if(
568
+ variable-exists(input-color),
569
+ $input-color,
570
+ $gray-700
571
+ ) !default;
531
572
 
532
573
  /// @deprecated as of v3.x with no replacement
533
574
 
534
- $custom-select-font-family: $input-font-family !default;
575
+ $custom-select-font-family: if(
576
+ variable-exists(input-font-family),
577
+ $input-font-family,
578
+ null
579
+ ) !default;
535
580
 
536
581
  /// @deprecated as of v3.x with no replacement
537
582
 
538
- $custom-select-font-size: $input-font-size !default;
583
+ $custom-select-font-size: if(
584
+ variable-exists(input-font-size),
585
+ $input-font-size,
586
+ $font-size-base
587
+ ) !default;
539
588
 
540
589
  /// @deprecated as of v3.x with no replacement
541
590
 
542
- $custom-select-font-weight: $input-font-weight !default;
591
+ $custom-select-font-weight: if(
592
+ variable-exists(input-font-weight),
593
+ $input-font-weight,
594
+ $font-weight-base
595
+ ) !default;
543
596
 
544
597
  /// @deprecated as of v3.x with no replacement
545
598
 
546
- $custom-select-height: $input-height !default;
599
+ $custom-select-height: if(
600
+ variable-exists(input-height),
601
+ $input-height,
602
+ 2.375rem
603
+ ) !default;
547
604
 
548
605
  /// @deprecated as of v3.x with no replacement
549
606
 
@@ -551,15 +608,27 @@ $custom-select-indicator-padding: 1rem !default;
551
608
 
552
609
  /// @deprecated as of v3.x with no replacement
553
610
 
554
- $custom-select-line-height: $input-line-height !default;
611
+ $custom-select-line-height: if(
612
+ variable-exists(input-line-height),
613
+ $input-line-height,
614
+ $line-height-base
615
+ ) !default;
555
616
 
556
617
  /// @deprecated as of v3.x with no replacement
557
618
 
558
- $custom-select-padding-x: $input-padding-x !default;
619
+ $custom-select-padding-x: if(
620
+ variable-exists(input-padding-x),
621
+ $input-padding-x,
622
+ 0.75rem
623
+ ) !default;
559
624
 
560
625
  /// @deprecated as of v3.x with no replacement
561
626
 
562
- $custom-select-padding-y: $input-padding-y !default;
627
+ $custom-select-padding-y: if(
628
+ variable-exists(input-padding-y),
629
+ $input-padding-y,
630
+ 0.375rem
631
+ ) !default;
563
632
 
564
633
  /// @deprecated as of v3.x with no replacement
565
634
 
@@ -580,16 +649,24 @@ $custom-select-background: $custom-select-indicator no-repeat right
580
649
 
581
650
  /// @deprecated as of v3.x with no replacement
582
651
 
583
- $custom-select-focus-border-color: $input-focus-border-color !default;
652
+ $custom-select-focus-border-color: if(
653
+ variable-exists(input-focus-border-color),
654
+ $input-focus-border-color,
655
+ clay-lighten($component-active-bg, 25%)
656
+ ) !default;
584
657
 
585
658
  /// @deprecated as of v3.x with no replacement
586
659
 
587
- $custom-select-focus-width: $input-focus-width !default;
660
+ $custom-select-focus-width: if(
661
+ variable-exists(input-focus-width),
662
+ $input-focus-width,
663
+ 0.2rem
664
+ ) !default;
588
665
 
589
666
  /// @deprecated as of v3.x with no replacement
590
667
 
591
668
  $custom-select-focus-box-shadow: 0 0 0 $custom-select-focus-width
592
- $input-btn-focus-color !default;
669
+ $custom-select-focus-border-color !default;
593
670
 
594
671
  // Custom Select Disabled
595
672
 
@@ -623,37 +700,69 @@ $custom-select-feedback-icon-size: 18px 18px !default;
623
700
 
624
701
  /// @deprecated as of v3.x with no replacement
625
702
 
626
- $custom-select-font-size-lg: $input-font-size-lg !default;
703
+ $custom-select-font-size-lg: if(
704
+ variable-exists(input-font-size-lg),
705
+ $input-font-size-lg,
706
+ $font-size-lg
707
+ ) !default;
627
708
 
628
709
  /// @deprecated as of v3.x with no replacement
629
710
 
630
- $custom-select-height-lg: $input-height-lg !default;
711
+ $custom-select-height-lg: if(
712
+ variable-exists(input-height-lg),
713
+ $input-height-lg,
714
+ 3rem
715
+ ) !default;
631
716
 
632
717
  /// @deprecated as of v3.x with no replacement
633
718
 
634
- $custom-select-padding-x-lg: $input-padding-x-lg !default;
719
+ $custom-select-padding-x-lg: if(
720
+ variable-exists(input-padding-x-lg),
721
+ $input-padding-x-lg,
722
+ 1rem
723
+ ) !default;
635
724
 
636
725
  /// @deprecated as of v3.x with no replacement
637
726
 
638
- $custom-select-padding-y-lg: $input-padding-y-lg !default;
727
+ $custom-select-padding-y-lg: if(
728
+ variable-exists(input-padding-y-lg),
729
+ $input-padding-y-lg,
730
+ 0.5rem
731
+ ) !default;
639
732
 
640
733
  // Custom Select Sm
641
734
 
642
735
  /// @deprecated as of v3.x with no replacement
643
736
 
644
- $custom-select-font-size-sm: $input-font-size-sm !default;
737
+ $custom-select-font-size-sm: if(
738
+ variable-exists(input-font-size-sm),
739
+ $input-font-size-sm,
740
+ $font-size-sm
741
+ ) !default;
645
742
 
646
743
  /// @deprecated as of v3.x with no replacement
647
744
 
648
- $custom-select-height-sm: $input-height-sm !default;
745
+ $custom-select-height-sm: if(
746
+ variable-exists(input-height-sm),
747
+ $input-height-sm,
748
+ 1.9375rem
749
+ ) !default;
649
750
 
650
751
  /// @deprecated as of v3.x with no replacement
651
752
 
652
- $custom-select-padding-x-sm: $input-padding-x-sm !default;
753
+ $custom-select-padding-x-sm: if(
754
+ variable-exists(input-padding-x-sm),
755
+ $input-padding-x-sm,
756
+ 0.5rem
757
+ ) !default;
653
758
 
654
759
  /// @deprecated as of v3.x with no replacement
655
760
 
656
- $custom-select-padding-y-sm: $input-padding-y-sm !default;
761
+ $custom-select-padding-y-sm: if(
762
+ variable-exists(input-padding-y-sm),
763
+ $input-padding-y-sm,
764
+ 0.25rem
765
+ ) !default;
657
766
 
658
767
  // Custom Range
659
768
 
@@ -708,11 +817,19 @@ $custom-range-thumb-height: $custom-range-thumb-width !default;
708
817
  /// @deprecated as of v3.x with no replacement
709
818
 
710
819
  $custom-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg,
711
- $input-focus-box-shadow !default;
820
+ if(
821
+ variable-exists(input-focus-box-shadow),
822
+ $input-focus-box-shadow,
823
+ $component-focus-box-shadow
824
+ ) !default;
712
825
 
713
826
  /// @deprecated as of v3.x with no replacement
714
827
 
715
- $custom-range-thumb-focus-box-shadow-width: $input-focus-width !default;
828
+ $custom-range-thumb-focus-box-shadow-width: if(
829
+ variable-exists(input-focus-width),
830
+ $input-focus-width,
831
+ 0.2rem
832
+ ) !default;
716
833
 
717
834
  /// @deprecated as of v3.x with no replacement
718
835
 
@@ -726,35 +843,63 @@ $custom-range-thumb-disabled-bg: $gray-500 !default;
726
843
 
727
844
  /// @deprecated as of v3.x with no replacement
728
845
 
729
- $custom-file-bg: $input-bg !default;
846
+ $custom-file-bg: if(variable-exists(input-bg), $input-bg, $white) !default;
730
847
 
731
848
  /// @deprecated as of v3.x with no replacement
732
849
 
733
- $custom-file-border-color: $input-border-color !default;
850
+ $custom-file-border-color: if(
851
+ variable-exists(input-border-color),
852
+ $input-border-color,
853
+ $gray-400
854
+ ) !default;
734
855
 
735
856
  /// @deprecated as of v3.x with no replacement
736
857
 
737
- $custom-file-border-width: $input-border-width !default;
858
+ $custom-file-border-width: if(
859
+ variable-exists(input-border-width),
860
+ $input-border-width,
861
+ 0.0625rem
862
+ ) !default;
738
863
 
739
864
  /// @deprecated as of v3.x with no replacement
740
865
 
741
- $custom-file-border-radius: $input-border-radius !default;
866
+ $custom-file-border-radius: if(
867
+ variable-exists(input-border-radius),
868
+ $input-border-radius,
869
+ $border-radius
870
+ ) !default;
742
871
 
743
872
  /// @deprecated as of v3.x with no replacement
744
873
 
745
- $custom-file-box-shadow: $input-box-shadow !default;
874
+ $custom-file-box-shadow: if(
875
+ variable-exists(input-box-shadow),
876
+ $input-box-shadow,
877
+ inset 0 1px 1px rgba($black, 0.075)
878
+ ) !default;
746
879
 
747
880
  /// @deprecated as of v3.x with no replacement
748
881
 
749
- $custom-file-color: $input-color !default;
882
+ $custom-file-color: if(
883
+ variable-exists(input-color),
884
+ $input-color,
885
+ $gray-700
886
+ ) !default;
750
887
 
751
888
  /// @deprecated as of v3.x with no replacement
752
889
 
753
- $custom-file-font-family: $input-font-family !default;
890
+ $custom-file-font-family: if(
891
+ variable-exists(input-font-family),
892
+ $input-font-family,
893
+ null
894
+ ) !default;
754
895
 
755
896
  /// @deprecated as of v3.x with no replacement
756
897
 
757
- $custom-file-font-weight: $input-font-weight !default;
898
+ $custom-file-font-weight: if(
899
+ variable-exists(input-font-weight),
900
+ $input-font-weight,
901
+ $font-weight-base
902
+ ) !default;
758
903
 
759
904
  /// @deprecated as of v3.x with no replacement
760
905
 
@@ -762,35 +907,67 @@ $custom-file-height-inner: 36px !default;
762
907
 
763
908
  /// @deprecated as of v3.x with no replacement
764
909
 
765
- $custom-file-height: $input-height !default;
910
+ $custom-file-height: if(
911
+ variable-exists(input-height),
912
+ $input-height,
913
+ 2.375rem
914
+ ) !default;
766
915
 
767
916
  /// @deprecated as of v3.x with no replacement
768
917
 
769
- $custom-file-line-height: $input-line-height !default;
918
+ $custom-file-line-height: if(
919
+ variable-exists(input-line-height),
920
+ $input-line-height,
921
+ $line-height-base
922
+ ) !default;
770
923
 
771
924
  /// @deprecated as of v3.x with no replacement
772
925
 
773
- $custom-file-padding-x: $input-padding-x !default;
926
+ $custom-file-padding-x: if(
927
+ variable-exists(input-padding-x),
928
+ $input-padding-x,
929
+ 0.75rem
930
+ ) !default;
774
931
 
775
932
  /// @deprecated as of v3.x with no replacement
776
933
 
777
- $custom-file-padding-y: $input-padding-y !default;
934
+ $custom-file-padding-y: if(
935
+ variable-exists(input-padding-y),
936
+ $input-padding-y,
937
+ 0.375rem
938
+ ) !default;
778
939
 
779
940
  /// @deprecated as of v3.x with no replacement
780
941
 
781
- $custom-file-focus-border-color: $input-focus-border-color !default;
942
+ $custom-file-focus-border-color: if(
943
+ variable-exists(input-focus-border-color),
944
+ $input-focus-border-color,
945
+ clay-lighten($component-active-bg, 25%)
946
+ ) !default;
782
947
 
783
948
  /// @deprecated as of v3.x with no replacement
784
949
 
785
- $custom-file-focus-box-shadow: $input-focus-box-shadow !default;
950
+ $custom-file-focus-box-shadow: if(
951
+ variable-exists(input-focus-box-shadow),
952
+ $input-focus-box-shadow,
953
+ $component-focus-box-shadow
954
+ ) !default;
786
955
 
787
956
  /// @deprecated as of v3.x with no replacement
788
957
 
789
- $custom-file-disabled-bg: $input-disabled-bg !default;
958
+ $custom-file-disabled-bg: if(
959
+ variable-exists(input-disabled-bg),
960
+ $input-disabled-bg,
961
+ $gray-200
962
+ ) !default;
790
963
 
791
964
  /// @deprecated as of v3.x with no replacement
792
965
 
793
- $custom-file-button-bg: $input-group-addon-bg !default;
966
+ $custom-file-button-bg: if(
967
+ variable-exists(input-group-addon-bg),
968
+ $input-group-addon-bg,
969
+ $gray-200
970
+ ) !default;
794
971
 
795
972
  /// @deprecated as of v3.x with no replacement
796
973
 
@@ -32,7 +32,7 @@ $date-picker-nav-btn: map-deep-merge(
32
32
  color: $gray-600,
33
33
  transition: $component-transition,
34
34
  hover-bg: $gray-200,
35
- focus-box-shadow: $input-btn-focus-box-shadow,
35
+ focus-box-shadow: $component-focus-box-shadow,
36
36
  disabled-bg: transparent,
37
37
  disabled-box-shadow: none,
38
38
  disabled-color: $gray-600,
@@ -120,7 +120,7 @@ $date-picker-day: map-deep-merge(
120
120
  // Date Picker Calendar
121
121
 
122
122
  $date-picker-calendar-container: () !default;
123
- $date-picker-calendar-container: map-deep-merge(
123
+ $date-picker-calendar-container: map-merge(
124
124
  (
125
125
  float: left,
126
126
  min-width: 100%,
@@ -129,7 +129,7 @@ $date-picker-calendar-container: map-deep-merge(
129
129
  );
130
130
 
131
131
  $date-picker-calendar-header-container: () !default;
132
- $date-picker-calendar-header-container: map-deep-merge(
132
+ $date-picker-calendar-header-container: map-merge(
133
133
  (
134
134
  padding-bottom: 1rem,
135
135
  padding-left: 1rem,
@@ -140,7 +140,7 @@ $date-picker-calendar-header-container: map-deep-merge(
140
140
  );
141
141
 
142
142
  $date-picker-calendar-body-container: () !default;
143
- $date-picker-calendar-body-container: map-deep-merge(
143
+ $date-picker-calendar-body-container: map-merge(
144
144
  (
145
145
  padding-left: 1rem,
146
146
  padding-right: 1rem,
@@ -150,7 +150,7 @@ $date-picker-calendar-body-container: map-deep-merge(
150
150
  );
151
151
 
152
152
  $date-picker-calendar-footer-container: () !default;
153
- $date-picker-calendar-footer-container: map-deep-merge(
153
+ $date-picker-calendar-footer-container: map-merge(
154
154
  (
155
155
  border-color: $gray-400,
156
156
  border-style: solid,
@@ -201,7 +201,7 @@ $date-picker-date: map-deep-merge(
201
201
  cursor: $link-cursor,
202
202
  position: relative,
203
203
  hover-bg: $gray-200,
204
- focus-box-shadow: $input-btn-focus-box-shadow,
204
+ focus-box-shadow: $component-focus-box-shadow,
205
205
  focus-outline: 0,
206
206
  active-bg: $component-active-bg,
207
207
  active-color: $component-active-color,
@@ -1,7 +1,11 @@
1
1
  $drilldown-inner-transition: height 0.25s ease !default;
2
2
 
3
3
  $drilldown-transition: all 0.25s ease !default;
4
- $drilldown-width: $dropdown-max-width !default;
4
+ $drilldown-width: if(
5
+ variable-exists(dropdown-max-width),
6
+ $dropdown-max-width,
7
+ 260px
8
+ ) !default;
5
9
 
6
10
  $drilldown-inline-scroller-max-height: none !default;
7
11
 
@@ -435,7 +435,7 @@ $form-control-inset: map-deep-merge(
435
435
  );
436
436
 
437
437
  $form-control-tag-group: () !default;
438
- $form-control-tag-group: map-deep-merge(
438
+ $form-control-tag-group: map-merge(
439
439
  (
440
440
  align-items: center,
441
441
  color: $secondary,
@@ -451,7 +451,7 @@ $form-control-tag-group: map-deep-merge(
451
451
  );
452
452
 
453
453
  $form-control-tag-group-autofit-row: () !default;
454
- $form-control-tag-group-autofit-row: map-deep-merge(
454
+ $form-control-tag-group-autofit-row: map-merge(
455
455
  (
456
456
  align-items: center,
457
457
  flex-grow: 1,
@@ -463,7 +463,7 @@ $form-control-tag-group-autofit-row: map-deep-merge(
463
463
  );
464
464
 
465
465
  $form-control-tag-group-autofit-col: () !default;
466
- $form-control-tag-group-autofit-col: map-deep-merge(
466
+ $form-control-tag-group-autofit-col: map-merge(
467
467
  (
468
468
  padding-left: 0.5rem,
469
469
  padding-right: 0.5rem,
@@ -472,7 +472,7 @@ $form-control-tag-group-autofit-col: map-deep-merge(
472
472
  );
473
473
 
474
474
  $form-control-tag-group-input-group-item: () !default;
475
- $form-control-tag-group-input-group-item: map-deep-merge(
475
+ $form-control-tag-group-input-group-item: map-merge(
476
476
  (
477
477
  align-items: center,
478
478
  ),
@@ -480,7 +480,7 @@ $form-control-tag-group-input-group-item: map-deep-merge(
480
480
  );
481
481
 
482
482
  $form-control-tag-group-inline-item: () !default;
483
- $form-control-tag-group-inline-item: map-deep-merge(
483
+ $form-control-tag-group-inline-item: map-merge(
484
484
  (
485
485
  height: $form-control-inset-min-height,
486
486
  margin-bottom: $form-control-inset-margin-y,
@@ -224,13 +224,21 @@ $component-title: map-deep-merge(
224
224
  margin-bottom:
225
225
  calc(
226
226
  (
227
- #{$dropdown-action-toggle-size} - (1em * #{$headings-line-height})
227
+ #{if(
228
+ variable-exists(dropdown-action-toggle-size),
229
+ $dropdown-action-toggle-size,
230
+ 1.9375rem
231
+ )} - (1em * #{$headings-line-height})
228
232
  ) / 2
229
233
  ),
230
234
  margin-top:
231
235
  calc(
232
236
  (
233
- #{$dropdown-action-toggle-size} - (1em * #{$headings-line-height})
237
+ #{if(
238
+ variable-exists(dropdown-action-toggle-size),
239
+ $dropdown-action-toggle-size,
240
+ 1.9375rem
241
+ )} - (1em * #{$headings-line-height})
234
242
  ) / 2
235
243
  ),
236
244
  ),
@@ -323,7 +323,7 @@ $list-group-notification-item-primary: map-deep-merge(
323
323
  // List Group Sm
324
324
 
325
325
  $list-group-sm-item: () !default;
326
- $list-group-sm-item: map-deep-merge(
326
+ $list-group-sm-item: map-merge(
327
327
  (
328
328
  padding-bottom: 0.40625rem,
329
329
  padding-top: 0.40625rem,
@@ -332,7 +332,7 @@ $list-group-sm-item: map-deep-merge(
332
332
  );
333
333
 
334
334
  $list-group-sm-quick-action-menu: () !default;
335
- $list-group-sm-quick-action-menu: map-deep-merge(
335
+ $list-group-sm-quick-action-menu: map-merge(
336
336
  (
337
337
  margin-bottom: -0.40625rem,
338
338
  margin-top: -0.40625rem,