@clayui/css 3.54.0 → 3.55.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 (41) hide show
  1. package/lib/css/atlas.css +136 -155
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +54 -91
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/bootstrap.css +0 -0
  6. package/lib/css/bootstrap.css.map +0 -0
  7. package/lib/css/cadmin.css +0 -0
  8. package/lib/css/cadmin.css.map +1 -1
  9. package/lib/images/icons/icons.svg +1 -1
  10. package/package.json +2 -2
  11. package/src/scss/atlas/variables/_buttons.scss +1 -1
  12. package/src/scss/atlas/variables/_dropdowns.scss +1 -1
  13. package/src/scss/atlas/variables/_globals.scss +5 -5
  14. package/src/scss/atlas/variables/_navigation-bar.scss +1 -1
  15. package/src/scss/atlas/variables/_navs.scss +1 -1
  16. package/src/scss/atlas/variables/_panels.scss +2 -2
  17. package/src/scss/atlas/variables/_sheets.scss +2 -1
  18. package/src/scss/atlas/variables/_sidebar.scss +3 -2
  19. package/src/scss/atlas/variables/_type.scss +0 -2
  20. package/src/scss/components/_tables.scss +2 -2
  21. package/src/scss/mixins/_buttons.scss +4 -0
  22. package/src/scss/variables/_buttons.scss +116 -67
  23. package/src/scss/variables/_cards.scss +1 -1
  24. package/src/scss/variables/_date-picker.scss +1 -1
  25. package/src/scss/variables/_dropdowns.scss +4 -4
  26. package/src/scss/variables/_forms.scss +1 -1
  27. package/src/scss/variables/_globals.scss +2 -2
  28. package/src/scss/variables/_links.scss +1 -1
  29. package/src/scss/variables/_list-group.scss +2 -2
  30. package/src/scss/variables/_multi-step-nav.scss +1 -1
  31. package/src/scss/variables/_navbar.scss +2 -2
  32. package/src/scss/variables/_navs.scss +1 -1
  33. package/src/scss/variables/_pagination.scss +1 -1
  34. package/src/scss/variables/_panels.scss +5 -4
  35. package/src/scss/variables/_range.scss +2 -2
  36. package/src/scss/variables/_sheets.scss +1 -1
  37. package/src/scss/variables/_tables.scss +4 -4
  38. package/src/scss/variables/_tbar.scss +14 -13
  39. package/src/scss/variables/_time.scss +1 -1
  40. package/src/scss/variables/_type.scss +2 -2
  41. package/src/scss/variables/_utilities.scss +1 -1
@@ -1,6 +1,7 @@
1
1
  $btn-border-width: $input-btn-border-width !default;
2
2
  $btn-border-radius: $border-radius !default;
3
- $btn-box-shadow: inset 0 1px 0 rgba($white, 0.15), 0 1px 1px rgba($black, 0.075) !default;
3
+ $btn-box-shadow: #{inset 0 1px 0 rgba($white, 0.15),
4
+ 0 1px 1px rgba($black, 0.075)} !default;
4
5
  $btn-cursor: $link-cursor !default;
5
6
  $btn-font-family: $input-btn-font-family !default;
6
7
  $btn-font-size: $input-btn-font-size !default;
@@ -38,7 +39,7 @@ $btn: map-deep-merge(
38
39
  border-style: solid,
39
40
  border-width: $btn-border-width,
40
41
  border-radius: clay-enable-rounded($btn-border-radius),
41
- box-shadow: clay-enable-shadows([$btn-box-shadow]),
42
+ box-shadow: clay-enable-shadows($btn-box-shadow),
42
43
  color: $body-color,
43
44
  cursor: $btn-cursor,
44
45
  display: inline-block,
@@ -72,13 +73,13 @@ $btn: map-deep-merge(
72
73
  outline: 0,
73
74
  ),
74
75
  active: (
75
- box-shadow: clay-enable-shadows([$btn-active-box-shadow]),
76
+ box-shadow: clay-enable-shadows($btn-active-box-shadow),
76
77
  focus: (
77
- box-shadow: clay-enable-shadows([$btn-focus-box-shadow]),
78
+ box-shadow: clay-enable-shadows($btn-focus-box-shadow),
78
79
  ),
79
80
  ),
80
81
  active-class: (
81
- box-shadow: clay-enable-shadows([$btn-active-box-shadow]),
82
+ box-shadow: clay-enable-shadows($btn-active-box-shadow),
82
83
  ),
83
84
  disabled: (
84
85
  cursor: $btn-disabled-cursor,
@@ -352,7 +353,7 @@ $btn-primary: map-deep-merge(
352
353
  background-color: $primary,
353
354
  background-image: clay-enable-gradients($primary),
354
355
  border-color: $primary,
355
- box-shadow: clay-enable-shadows([$btn-box-shadow]),
356
+ box-shadow: clay-enable-shadows($btn-box-shadow),
356
357
  color: color-yiq($primary),
357
358
  hover: (
358
359
  background-color: clay-darken($primary, 7.5%),
@@ -366,10 +367,11 @@ $btn-primary: map-deep-merge(
366
367
  border-color: clay-darken($primary, 10%),
367
368
  box-shadow:
368
369
  clay-enable-shadows(
369
- [ $btn-box-shadow#{','} 0 0 0 $btn-focus-width rgba(clay-mix(color-yiq($primary), $primary, 15%), 0.5),
370
+ #{$btn-box-shadow,
371
+ 0 0 0 $btn-focus-width
372
+ rgba(clay-mix(color-yiq($primary), $primary, 15%), 0.5)},
370
373
  0 0 0 $btn-focus-width
371
374
  rgba(clay-mix(color-yiq($primary), $primary, 15%), 0.5)
372
- ]
373
375
  ),
374
376
  color: color-yiq(clay-darken($primary, 7.5%)),
375
377
  ),
@@ -381,13 +383,17 @@ $btn-primary: map-deep-merge(
381
383
  focus: (
382
384
  box-shadow:
383
385
  clay-enable-shadows(
384
- [ $btn-active-box-shadow#{','} 0 0 0 $btn-focus-width rgba(clay-mix(color-yiq($primary), $primary, 15%), 0.5),
386
+ #{$btn-active-box-shadow,
387
+ 0 0 0 $btn-focus-width
388
+ rgba(
389
+ clay-mix(color-yiq($primary), $primary, 15%),
390
+ 0.5
391
+ )},
385
392
  0 0 0 $btn-focus-width
386
393
  rgba(
387
394
  clay-mix(color-yiq($primary), $primary, 15%),
388
395
  0.5
389
396
  )
390
- ]
391
397
  ),
392
398
  ),
393
399
  ),
@@ -408,7 +414,7 @@ $btn-secondary: map-deep-merge(
408
414
  background-color: $secondary,
409
415
  background-image: clay-enable-gradients($secondary),
410
416
  border-color: $secondary,
411
- box-shadow: clay-enable-shadows([$btn-box-shadow]),
417
+ box-shadow: clay-enable-shadows($btn-box-shadow),
412
418
  color: color-yiq($secondary),
413
419
  hover: (
414
420
  background-color: clay-darken($secondary, 7.5%),
@@ -424,13 +430,17 @@ $btn-secondary: map-deep-merge(
424
430
  border-color: clay-darken($secondary, 10%),
425
431
  box-shadow:
426
432
  clay-enable-shadows(
427
- [ $btn-box-shadow#{','} 0 0 0 $btn-focus-width rgba(clay-mix(color-yiq($secondary), $secondary, 15%), 0.5),
433
+ #{$btn-box-shadow,
428
434
  0 0 0 $btn-focus-width
429
435
  rgba(
430
436
  clay-mix(color-yiq($secondary), $secondary, 15%),
431
437
  0.5
432
- ),
433
- ]
438
+ )},
439
+ 0 0 0 $btn-focus-width
440
+ rgba(
441
+ clay-mix(color-yiq($secondary), $secondary, 15%),
442
+ 0.5
443
+ )
434
444
  ),
435
445
  color: color-yiq(clay-darken($secondary, 7.5%)),
436
446
  ),
@@ -442,7 +452,16 @@ $btn-secondary: map-deep-merge(
442
452
  focus: (
443
453
  box-shadow:
444
454
  clay-enable-shadows(
445
- [ $btn-active-box-shadow#{','} 0 0 0 $btn-focus-width rgba(clay-mix(color-yiq($secondary), $secondary, 15%), 0.5),
455
+ #{$btn-active-box-shadow,
456
+ 0 0 0 $btn-focus-width
457
+ rgba(
458
+ clay-mix(
459
+ color-yiq($secondary),
460
+ $secondary,
461
+ 15%
462
+ ),
463
+ 0.5
464
+ )},
446
465
  0 0 0 $btn-focus-width
447
466
  rgba(
448
467
  clay-mix(
@@ -452,7 +471,6 @@ $btn-secondary: map-deep-merge(
452
471
  ),
453
472
  0.5
454
473
  )
455
- ]
456
474
  ),
457
475
  ),
458
476
  ),
@@ -473,7 +491,7 @@ $btn-success: map-deep-merge(
473
491
  background-color: $success,
474
492
  background-image: clay-enable-gradients($success),
475
493
  border-color: $success,
476
- box-shadow: clay-enable-shadows([$btn-box-shadow]),
494
+ box-shadow: clay-enable-shadows($btn-box-shadow),
477
495
  color: color-yiq($success),
478
496
  hover: (
479
497
  background-color: clay-darken($success, 7.5%),
@@ -487,10 +505,11 @@ $btn-success: map-deep-merge(
487
505
  border-color: clay-darken($success, 10%),
488
506
  box-shadow:
489
507
  clay-enable-shadows(
490
- [ $btn-box-shadow#{','} 0 0 0 $btn-focus-width rgba(clay-mix(color-yiq($success), $success, 15%), 0.5),
508
+ #{$btn-box-shadow,
509
+ 0 0 0 $btn-focus-width
510
+ rgba(clay-mix(color-yiq($success), $success, 15%), 0.5)},
491
511
  0 0 0 $btn-focus-width
492
512
  rgba(clay-mix(color-yiq($success), $success, 15%), 0.5)
493
- ]
494
513
  ),
495
514
  color: color-yiq(clay-darken($success, 7.5%)),
496
515
  ),
@@ -502,13 +521,17 @@ $btn-success: map-deep-merge(
502
521
  focus: (
503
522
  box-shadow:
504
523
  clay-enable-shadows(
505
- [ $btn-active-box-shadow#{','} 0 0 0 $btn-focus-width rgba(clay-mix(color-yiq($success), $success, 15%), 0.5),
524
+ #{$btn-active-box-shadow,
525
+ 0 0 0 $btn-focus-width
526
+ rgba(
527
+ clay-mix(color-yiq($success), $success, 15%),
528
+ 0.5
529
+ )},
506
530
  0 0 0 $btn-focus-width
507
531
  rgba(
508
532
  clay-mix(color-yiq($success), $success, 15%),
509
533
  0.5
510
534
  )
511
- ]
512
535
  ),
513
536
  ),
514
537
  ),
@@ -529,7 +552,7 @@ $btn-info: map-deep-merge(
529
552
  background-color: $info,
530
553
  background-image: clay-enable-gradients($info),
531
554
  border-color: $info,
532
- box-shadow: clay-enable-shadows([$btn-box-shadow]),
555
+ box-shadow: clay-enable-shadows($btn-box-shadow),
533
556
  color: color-yiq($info),
534
557
  hover: (
535
558
  background-color: clay-darken($info, 7.5%),
@@ -543,9 +566,11 @@ $btn-info: map-deep-merge(
543
566
  border-color: clay-darken($info, 10%),
544
567
  box-shadow:
545
568
  clay-enable-shadows(
546
- [ $btn-box-shadow#{','} 0 0 0 $btn-focus-width rgba(clay-mix(color-yiq($info), $info, 15%), 0.5),
569
+ #{$btn-box-shadow,
570
+ 0 0 0 $btn-focus-width
571
+ rgba(clay-mix(color-yiq($info), $info, 15%), 0.5)},
547
572
  0 0 0 $btn-focus-width
548
- rgba(clay-mix(color-yiq($info), $info, 15%), 0.5) ]
573
+ rgba(clay-mix(color-yiq($info), $info, 15%), 0.5)
549
574
  ),
550
575
  color: color-yiq(clay-darken($info, 7.5%)),
551
576
  ),
@@ -557,9 +582,11 @@ $btn-info: map-deep-merge(
557
582
  focus: (
558
583
  box-shadow:
559
584
  clay-enable-shadows(
560
- [ $btn-active-box-shadow#{','} 0 0 0 $btn-focus-width rgba(clay-mix(color-yiq($info), $info, 15%), 0.5),
585
+ #{$btn-active-box-shadow,
586
+ 0 0 0 $btn-focus-width
587
+ rgba(clay-mix(color-yiq($info), $info, 15%), 0.5)},
561
588
  0 0 0 $btn-focus-width
562
- rgba(clay-mix(color-yiq($info), $info, 15%), 0.5) ]
589
+ rgba(clay-mix(color-yiq($info), $info, 15%), 0.5)
563
590
  ),
564
591
  ),
565
592
  ),
@@ -580,7 +607,7 @@ $btn-warning: map-deep-merge(
580
607
  background-color: $warning,
581
608
  background-image: clay-enable-gradients($warning),
582
609
  border-color: $warning,
583
- box-shadow: clay-enable-shadows([$btn-box-shadow]),
610
+ box-shadow: clay-enable-shadows($btn-box-shadow),
584
611
  color: color-yiq($warning),
585
612
  hover: (
586
613
  background-color: clay-darken($warning, 7.5%),
@@ -594,10 +621,11 @@ $btn-warning: map-deep-merge(
594
621
  border-color: clay-darken($warning, 10%),
595
622
  box-shadow:
596
623
  clay-enable-shadows(
597
- [ $btn-box-shadow#{','} 0 0 0 $btn-focus-width rgba(clay-mix(color-yiq($warning), $warning, 15%), 0.5),
624
+ #{$btn-box-shadow,
625
+ 0 0 0 $btn-focus-width
626
+ rgba(clay-mix(color-yiq($warning), $warning, 15%), 0.5)},
598
627
  0 0 0 $btn-focus-width
599
628
  rgba(clay-mix(color-yiq($warning), $warning, 15%), 0.5)
600
- ]
601
629
  ),
602
630
  color: color-yiq(clay-darken($warning, 7.5%)),
603
631
  ),
@@ -609,13 +637,17 @@ $btn-warning: map-deep-merge(
609
637
  focus: (
610
638
  box-shadow:
611
639
  clay-enable-shadows(
612
- [ $btn-active-box-shadow#{','} 0 0 0 $btn-focus-width rgba(clay-mix(color-yiq($warning), $warning, 15%), 0.5),
640
+ #{$btn-active-box-shadow,
641
+ 0 0 0 $btn-focus-width
642
+ rgba(
643
+ clay-mix(color-yiq($warning), $warning, 15%),
644
+ 0.5
645
+ )},
613
646
  0 0 0 $btn-focus-width
614
647
  rgba(
615
648
  clay-mix(color-yiq($warning), $warning, 15%),
616
649
  0.5
617
650
  )
618
- ]
619
651
  ),
620
652
  ),
621
653
  ),
@@ -635,7 +667,7 @@ $btn-danger: map-deep-merge(
635
667
  background-color: $danger,
636
668
  background-image: clay-enable-gradients($danger),
637
669
  border-color: $danger,
638
- box-shadow: clay-enable-shadows([$btn-box-shadow]),
670
+ box-shadow: clay-enable-shadows($btn-box-shadow),
639
671
  color: color-yiq($danger),
640
672
  hover: (
641
673
  background-color: clay-darken($danger, 7.5%),
@@ -649,9 +681,11 @@ $btn-danger: map-deep-merge(
649
681
  border-color: clay-darken($danger, 10%),
650
682
  box-shadow:
651
683
  clay-enable-shadows(
652
- [ $btn-box-shadow#{','} 0 0 0 $btn-focus-width rgba(clay-mix(color-yiq($danger), $danger, 15%), 0.5),
684
+ #{$btn-box-shadow,
653
685
  0 0 0 $btn-focus-width
654
- rgba(clay-mix(color-yiq($danger), $danger, 15%), 0.5) ]
686
+ rgba(clay-mix(color-yiq($danger), $danger, 15%), 0.5)},
687
+ 0 0 0 $btn-focus-width
688
+ rgba(clay-mix(color-yiq($danger), $danger, 15%), 0.5)
655
689
  ),
656
690
  color: color-yiq(clay-darken($danger, 7.5%)),
657
691
  ),
@@ -663,13 +697,17 @@ $btn-danger: map-deep-merge(
663
697
  focus: (
664
698
  box-shadow:
665
699
  clay-enable-shadows(
666
- [ $btn-active-box-shadow#{','} 0 0 0 $btn-focus-width rgba(clay-mix(color-yiq($danger), $danger, 15%), 0.5),
700
+ #{$btn-active-box-shadow,
701
+ 0 0 0 $btn-focus-width
702
+ rgba(
703
+ clay-mix(color-yiq($danger), $danger, 15%),
704
+ 0.5
705
+ )},
667
706
  0 0 0 $btn-focus-width
668
707
  rgba(
669
708
  clay-mix(color-yiq($danger), $danger, 15%),
670
709
  0.5
671
710
  )
672
- ]
673
711
  ),
674
712
  ),
675
713
  ),
@@ -690,7 +728,7 @@ $btn-light: map-deep-merge(
690
728
  background-color: $light,
691
729
  background-image: clay-enable-gradients($light),
692
730
  border-color: $light,
693
- box-shadow: clay-enable-shadows([$btn-box-shadow]),
731
+ box-shadow: clay-enable-shadows($btn-box-shadow),
694
732
  color: color-yiq($light),
695
733
  hover: (
696
734
  background-color: clay-darken($light, 7.5%),
@@ -704,9 +742,11 @@ $btn-light: map-deep-merge(
704
742
  border-color: clay-darken($light, 10%),
705
743
  box-shadow:
706
744
  clay-enable-shadows(
707
- [ $btn-box-shadow#{','} 0 0 0 $btn-focus-width rgba(clay-mix(color-yiq($light), $light, 15%), 0.5),
745
+ #{$btn-box-shadow,
708
746
  0 0 0 $btn-focus-width
709
- rgba(clay-mix(color-yiq($light), $light, 15%), 0.5) ]
747
+ rgba(clay-mix(color-yiq($light), $light, 15%), 0.5)},
748
+ 0 0 0 $btn-focus-width
749
+ rgba(clay-mix(color-yiq($light), $light, 15%), 0.5)
710
750
  ),
711
751
  color: color-yiq(clay-darken($light, 7.5%)),
712
752
  ),
@@ -718,10 +758,11 @@ $btn-light: map-deep-merge(
718
758
  focus: (
719
759
  box-shadow:
720
760
  clay-enable-shadows(
721
- [ $btn-active-box-shadow#{','} 0 0 0 $btn-focus-width rgba(clay-mix(color-yiq($light), $light, 15%), 0.5),
761
+ #{$btn-active-box-shadow,
762
+ 0 0 0 $btn-focus-width
763
+ rgba(clay-mix(color-yiq($light), $light, 15%), 0.5)},
722
764
  0 0 0 $btn-focus-width
723
765
  rgba(clay-mix(color-yiq($light), $light, 15%), 0.5)
724
- ]
725
766
  ),
726
767
  ),
727
768
  ),
@@ -741,7 +782,7 @@ $btn-dark: map-deep-merge(
741
782
  background-color: $dark,
742
783
  background-image: clay-enable-gradients($dark),
743
784
  border-color: $dark,
744
- box-shadow: clay-enable-shadows([$btn-box-shadow]),
785
+ box-shadow: clay-enable-shadows($btn-box-shadow),
745
786
  color: color-yiq($dark),
746
787
  hover: (
747
788
  background-color: clay-darken($dark, 7.5%),
@@ -755,9 +796,11 @@ $btn-dark: map-deep-merge(
755
796
  border-color: clay-darken($dark, 10%),
756
797
  box-shadow:
757
798
  clay-enable-shadows(
758
- [ $btn-box-shadow#{','} 0 0 0 $btn-focus-width rgba(clay-mix(color-yiq($dark), $dark, 15%), 0.5),
799
+ #{$btn-box-shadow,
759
800
  0 0 0 $btn-focus-width
760
- rgba(clay-mix(color-yiq($dark), $dark, 15%), 0.5) ]
801
+ rgba(clay-mix(color-yiq($dark), $dark, 15%), 0.5)},
802
+ 0 0 0 $btn-focus-width
803
+ rgba(clay-mix(color-yiq($dark), $dark, 15%), 0.5)
761
804
  ),
762
805
  color: color-yiq(clay-darken($dark, 7.5%)),
763
806
  ),
@@ -769,9 +812,11 @@ $btn-dark: map-deep-merge(
769
812
  focus: (
770
813
  box-shadow:
771
814
  clay-enable-shadows(
772
- [ $btn-active-box-shadow#{','} 0 0 0 $btn-focus-width rgba(clay-mix(color-yiq($dark), $dark, 15%), 0.5),
815
+ #{$btn-active-box-shadow,
816
+ 0 0 0 $btn-focus-width
817
+ rgba(clay-mix(color-yiq($dark), $dark, 15%), 0.5)},
773
818
  0 0 0 $btn-focus-width
774
- rgba(clay-mix(color-yiq($dark), $dark, 15%), 0.5) ]
819
+ rgba(clay-mix(color-yiq($dark), $dark, 15%), 0.5)
775
820
  ),
776
821
  ),
777
822
  ),
@@ -792,7 +837,7 @@ $btn-link: () !default;
792
837
  $btn-link: map-deep-merge(
793
838
  (
794
839
  border-radius: 1px,
795
- box-shadow: clay-enable-shadows([none]),
840
+ box-shadow: clay-enable-shadows(none),
796
841
  color: $link-color,
797
842
  font-weight: $font-weight-normal,
798
843
  text-decoration: $link-decoration,
@@ -804,9 +849,6 @@ $btn-link: map-deep-merge(
804
849
  box-shadow: $btn-focus-box-shadow,
805
850
  text-decoration: $link-decoration,
806
851
  ),
807
- active: (
808
- box-shadow: clay-enable-shadows([none]),
809
- ),
810
852
  disabled: (
811
853
  box-shadow: none,
812
854
  color: $btn-link-disabled-color,
@@ -854,8 +896,9 @@ $btn-outline-primary: map-deep-merge(
854
896
  focus: (
855
897
  box-shadow:
856
898
  clay-enable-shadows(
857
- [ $btn-active-box-shadow#{','} 0 0 0 $btn-focus-width rgba($primary, 0.5),
858
- $c-unset ]
899
+ #{$btn-active-box-shadow,
900
+ 0 0 0 $btn-focus-width rgba($primary, 0.5)},
901
+ $c-unset
859
902
  ),
860
903
  ),
861
904
  ),
@@ -887,8 +930,9 @@ $btn-outline-secondary: map-deep-merge(
887
930
  focus: (
888
931
  box-shadow:
889
932
  clay-enable-shadows(
890
- [ $btn-active-box-shadow#{','} 0 0 0 $btn-focus-width rgba($secondary, 0.5),
891
- 0 0 0 $btn-focus-width rgba($secondary, 0.5) ]
933
+ #{$btn-active-box-shadow,
934
+ 0 0 0 $btn-focus-width rgba($secondary, 0.5)},
935
+ 0 0 0 $btn-focus-width rgba($secondary, 0.5)
892
936
  ),
893
937
  ),
894
938
  ),
@@ -920,8 +964,9 @@ $btn-outline-success: map-deep-merge(
920
964
  focus: (
921
965
  box-shadow:
922
966
  clay-enable-shadows(
923
- [ $btn-active-box-shadow#{','} 0 0 0 $btn-focus-width rgba($success, 0.5),
924
- 0 0 0 $btn-focus-width rgba($success, 0.5) ]
967
+ #{$btn-active-box-shadow,
968
+ 0 0 0 $btn-focus-width rgba($success, 0.5)},
969
+ 0 0 0 $btn-focus-width rgba($success, 0.5)
925
970
  ),
926
971
  ),
927
972
  ),
@@ -953,8 +998,9 @@ $btn-outline-info: map-deep-merge(
953
998
  focus: (
954
999
  box-shadow:
955
1000
  clay-enable-shadows(
956
- [ $btn-active-box-shadow#{','} 0 0 0 $btn-focus-width rgba($info, 0.5),
957
- 0 0 0 $btn-focus-width rgba($info, 0.5) ]
1001
+ #{$btn-active-box-shadow,
1002
+ 0 0 0 $btn-focus-width rgba($info, 0.5)},
1003
+ 0 0 0 $btn-focus-width rgba($info, 0.5)
958
1004
  ),
959
1005
  ),
960
1006
  ),
@@ -986,8 +1032,9 @@ $btn-outline-warning: map-deep-merge(
986
1032
  focus: (
987
1033
  box-shadow:
988
1034
  clay-enable-shadows(
989
- [ $btn-active-box-shadow#{','} 0 0 0 $btn-focus-width rgba($warning, 0.5),
990
- 0 0 0 $btn-focus-width rgba($warning, 0.5) ]
1035
+ #{$btn-active-box-shadow,
1036
+ 0 0 0 $btn-focus-width rgba($warning, 0.5)},
1037
+ 0 0 0 $btn-focus-width rgba($warning, 0.5)
991
1038
  ),
992
1039
  ),
993
1040
  ),
@@ -1019,8 +1066,9 @@ $btn-outline-danger: map-deep-merge(
1019
1066
  focus: (
1020
1067
  box-shadow:
1021
1068
  clay-enable-shadows(
1022
- [ $btn-active-box-shadow#{','} 0 0 0 $btn-focus-width rgba($danger, 0.5),
1023
- 0 0 0 $btn-focus-width rgba($danger, 0.5) ]
1069
+ #{$btn-active-box-shadow,
1070
+ 0 0 0 $btn-focus-width rgba($danger, 0.5)},
1071
+ 0 0 0 $btn-focus-width rgba($danger, 0.5)
1024
1072
  ),
1025
1073
  ),
1026
1074
  ),
@@ -1052,8 +1100,9 @@ $btn-outline-light: map-deep-merge(
1052
1100
  focus: (
1053
1101
  box-shadow:
1054
1102
  clay-enable-shadows(
1055
- [ $btn-active-box-shadow#{','} 0 0 0 $btn-focus-width rgba($light, 0.5),
1056
- 0 0 0 $btn-focus-width rgba($light, 0.5) ]
1103
+ #{$btn-active-box-shadow,
1104
+ 0 0 0 $btn-focus-width rgba($light, 0.5)},
1105
+ 0 0 0 $btn-focus-width rgba($light, 0.5)
1057
1106
  ),
1058
1107
  ),
1059
1108
  ),
@@ -1084,9 +1133,9 @@ $btn-outline-dark: map-deep-merge(
1084
1133
  color: color-yiq($dark),
1085
1134
  focus: (
1086
1135
  box-shadow:
1087
- if(
1088
- $enable-shadows and $btn-active-box-shadow != none,
1089
- $btn-active-box-shadow#{','} 0 0 0 $btn-focus-width rgba($dark, 0.5),
1136
+ clay-enable-shadows(
1137
+ #{$btn-active-box-shadow,
1138
+ 0 0 0 $btn-focus-width rgba($dark, 0.5)},
1090
1139
  0 0 0 $btn-focus-width rgba($dark, 0.5)
1091
1140
  ),
1092
1141
  ),
@@ -951,7 +951,7 @@ $card-type-template-after-highlight: () !default;
951
951
  $card-type-template-aspect-ratio: () !default;
952
952
  $card-type-template-aspect-ratio: map-deep-merge(
953
953
  (
954
- border-width: 0,
954
+ border-width: 0px,
955
955
  color: $gray-600,
956
956
  horizontal: 16,
957
957
  text-align: center,
@@ -170,7 +170,7 @@ $date-picker-calendar-item: map-deep-merge(
170
170
  (
171
171
  align-items: center,
172
172
  bg: transparent,
173
- border-width: 0,
173
+ border-width: 0px,
174
174
  disabled-cursor: $disabled-cursor,
175
175
  display: inline-flex,
176
176
  flex-shrink: 0,
@@ -165,8 +165,8 @@ $dropdown-item-base: () !default;
165
165
  $dropdown-item-base: map-deep-merge(
166
166
  (
167
167
  background-color: transparent,
168
- border-radius: 0,
169
- border-width: 0,
168
+ border-radius: 0px,
169
+ border-width: 0px,
170
170
  clear: both,
171
171
  color: $dropdown-link-color,
172
172
  cursor: $link-cursor,
@@ -405,7 +405,7 @@ $dropdown-divider-bg: $gray-200 !default;
405
405
 
406
406
  /// @deprecated as of v3.x use map $dropdown-divider instead
407
407
 
408
- $dropdown-divider-margin-y: $spacer * 0.5 !default;
408
+ $dropdown-divider-margin-y: 0.5rem !default;
409
409
 
410
410
  $dropdown-divider: () !default;
411
411
  $dropdown-divider: map-merge(
@@ -884,7 +884,7 @@ $dropdown-action: map-deep-merge(
884
884
 
885
885
  $dropdown-alert-font-size: null !default;
886
886
  $dropdown-alert-line-height: normal !default;
887
- $dropdown-alert-margin: $spacer * 0.5 !default;
887
+ $dropdown-alert-margin: 0.5rem !default;
888
888
  $dropdown-alert-padding-x: $dropdown-header-padding-x !default;
889
889
  $dropdown-alert-padding-y: $dropdown-header-padding-y !default;
890
890
 
@@ -409,7 +409,7 @@ $form-control-inset: () !default;
409
409
  $form-control-inset: map-deep-merge(
410
410
  (
411
411
  background-color: transparent,
412
- border-width: 0,
412
+ border-width: 0px,
413
413
  color: $input-color,
414
414
  flex-grow: 1,
415
415
  margin-bottom: $form-control-inset-margin-y,
@@ -243,7 +243,7 @@ $border-radius-sm: 0.2rem !default;
243
243
 
244
244
  $rounded-border-radius: $border-radius !default;
245
245
  $rounded-circle-border-radius: 5000px !default;
246
- $rounded-0-border-radius: 0 !default;
246
+ $rounded-0-border-radius: 0px !default;
247
247
  $rounded-pill: 50rem !default;
248
248
 
249
249
  $box-shadow-sm: 0 0.125rem 0.25rem rgba($black, 0.075) !default;
@@ -496,7 +496,7 @@ $h6: map-deep-merge(
496
496
 
497
497
  // Headings h1-h6
498
498
 
499
- $headings-margin-bottom: $spacer * 0.5 !default;
499
+ $headings-margin-bottom: 0.5rem !default;
500
500
  $headings-font-family: null !default;
501
501
  $headings-font-weight: 500 !default;
502
502
  $headings-line-height: 1.2 !default;
@@ -264,7 +264,7 @@ $component-action: map-deep-merge(
264
264
  background-color: transparent,
265
265
  border-color: transparent,
266
266
  border-radius: $border-radius,
267
- border-width: 0,
267
+ border-width: 0px,
268
268
  color: $secondary,
269
269
  display: inline-flex,
270
270
  height: map-get($link-monospaced, height),
@@ -313,8 +313,8 @@ $list-group-notification-item-primary: map-deep-merge(
313
313
  (
314
314
  border-left-color: theme-color-level(primary, -9),
315
315
  border-left-width: 0.5rem,
316
- border-bottom-left-radius: 0,
317
- border-top-left-radius: 0,
316
+ border-bottom-left-radius: 0px,
317
+ border-top-left-radius: 0px,
318
318
  active-border-left-color: theme-color-level(primary, -9),
319
319
  ),
320
320
  $list-group-notification-item-primary
@@ -5,7 +5,7 @@ $multi-step-nav-padding-y: 0 !default;
5
5
  $multi-step-icon-bg: $gray-200 !default;
6
6
  $multi-step-icon-border-color: null !default;
7
7
  $multi-step-icon-border-style: null !default;
8
- $multi-step-icon-border-width: 0 !default;
8
+ $multi-step-icon-border-width: 0px !default;
9
9
  $multi-step-icon-color: rgba($black, 0.5) !default;
10
10
  $multi-step-icon-cursor: $link-cursor !default;
11
11
  $multi-step-icon-border-radius: $border-radius !default;
@@ -2,8 +2,8 @@ $enable-scaling-navbar: $enable-scaling-components !default;
2
2
 
3
3
  $navbar-border-radius: null !default;
4
4
  $navbar-font-size: null !default;
5
- $navbar-padding-x: $spacer !default;
6
- $navbar-padding-y: $spacer * 0.5 !default;
5
+ $navbar-padding-x: 1rem !default;
6
+ $navbar-padding-y: 0.5rem !default;
7
7
 
8
8
  $navbar-nav-link-padding-x: 0.5rem !default;
9
9
 
@@ -157,7 +157,7 @@ $nav-item: map-deep-merge(
157
157
  // .nav-divider
158
158
 
159
159
  $nav-divider-color: $gray-600 !default;
160
- $nav-divider-margin-y: $spacer * 0.5 !default;
160
+ $nav-divider-margin-y: 0.5rem !default;
161
161
 
162
162
  $nav-divider: () !default;
163
163
  $nav-divider: map-deep-merge(
@@ -53,7 +53,7 @@ $pagination-item: map-deep-merge(
53
53
 
54
54
  /// @deprecated as of v2 use the Sass map `$pagination-link` instead
55
55
 
56
- $pagination-link-border-radius: 0 !default;
56
+ $pagination-link-border-radius: 0px !default;
57
57
 
58
58
  /// @deprecated as of v2 use the Sass map `$pagination-link` instead
59
59
 
@@ -47,7 +47,8 @@ $panel-header-link: map-deep-merge(
47
47
  color: inherit,
48
48
  display: block,
49
49
  text-decoration: $panel-header-link-text-decoration,
50
- transition: border-color 0.1s ease#{','} border-radius 0.5s ease,
50
+ transition: #{border-color 0.1s ease,
51
+ border-radius 0.5s ease},
51
52
  hover: (
52
53
  color: inherit,
53
54
  text-decoration: $panel-header-link-hover-text-decoration,
@@ -185,12 +186,12 @@ $panel-unstyled: () !default;
185
186
  $panel-unstyled: map-deep-merge(
186
187
  (
187
188
  background-color: transparent,
188
- border-radius: 0,
189
- border-width: 0,
189
+ border-radius: 0px,
190
+ border-width: 0px,
190
191
  margin-bottom: 1.5rem,
191
192
  header: (
192
193
  border-color: $gray-500,
193
- border-radius: 0,
194
+ border-radius: 0px,
194
195
  border-style: solid,
195
196
  border-width: 0 0 1px 0,
196
197
  padding-left: 0,
@@ -20,7 +20,7 @@ $clay-range-input-group-text: () !default;
20
20
  $clay-range-input-group-text: map-deep-merge(
21
21
  (
22
22
  bg: transparent,
23
- border-width: 0,
23
+ border-width: 0px,
24
24
  color: $body-color,
25
25
  font-size: 0.875rem,
26
26
  font-weight: $font-weight-semi-bold,
@@ -58,7 +58,7 @@ $clay-range-input: map-deep-merge(
58
58
  thumb-appearance: none,
59
59
  thumb-bg: $white,
60
60
  thumb-border-radius: 100px,
61
- thumb-border-width: 0,
61
+ thumb-border-width: 0px,
62
62
  thumb-box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3),
63
63
  thumb-height: 1.5rem,
64
64
  thumb-width: 1.5rem,
@@ -212,7 +212,7 @@ $sheet-dataset-content: () !default;
212
212
  $sheet-dataset-content-sheet-header: () !default;
213
213
  $sheet-dataset-content-sheet-header: map-merge(
214
214
  (
215
- border-width: 0,
215
+ border-width: 0px,
216
216
  margin: -1.5rem -1.5rem 1.5rem,
217
217
  padding: 1rem 1.5rem,
218
218
  ),