@cck-ui/core 0.4.8 → 0.4.10

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 (32) hide show
  1. package/cjs/components/transition/transition.cjs +1 -1
  2. package/cjs/core/box/box.cjs +1 -1
  3. package/cjs/core/config-provider/cck-classes-style/cck-classes-style.cjs +58 -0
  4. package/cjs/core/config-provider/cck-classes-style/cck-classes-style.cjs.map +1 -0
  5. package/cjs/core/config-provider/config-provider.cjs +7 -3
  6. package/cjs/core/config-provider/config-provider.cjs.map +1 -1
  7. package/cjs/core/config-provider/index.cjs +1 -1
  8. package/cjs/index.cjs +1 -1
  9. package/esm/components/transition/transition.mjs +1 -1
  10. package/esm/core/box/box.mjs +1 -1
  11. package/esm/core/config-provider/cck-classes-style/cck-classes-style.mjs +58 -0
  12. package/esm/core/config-provider/cck-classes-style/cck-classes-style.mjs.map +1 -0
  13. package/esm/core/config-provider/config-provider.mjs +8 -4
  14. package/esm/core/config-provider/config-provider.mjs.map +1 -1
  15. package/esm/core/config-provider/index.mjs +1 -1
  16. package/esm/index.mjs +1 -1
  17. package/lib/core/config-provider/cck-classes-style/index.d.ts +2 -0
  18. package/package.json +1 -1
  19. package/styles/baseline.css +7 -3
  20. package/styles/baseline.layer.css +7 -3
  21. package/styles/button.css +91 -92
  22. package/styles/button.layer.css +91 -92
  23. package/styles/global.css +13 -29
  24. package/styles/global.layer.css +13 -29
  25. package/styles/group.css +2 -4
  26. package/styles/group.layer.css +2 -4
  27. package/styles/loader.css +15 -15
  28. package/styles/loader.layer.css +15 -15
  29. package/styles/text.css +10 -10
  30. package/styles/text.layer.css +10 -10
  31. package/styles.css +138 -153
  32. package/styles.layer.css +138 -153
package/styles.css CHANGED
@@ -32,67 +32,55 @@ body,
32
32
 
33
33
  -webkit-font-smoothing: var(--c-webkit-font-smoothing);
34
34
  -moz-osx-font-smoothing: var(--c-moz-font-smoothing);
35
+ }
35
36
 
36
- @media screen and (max-device-width: em(500px)) {
37
- -webkit-text-size-adjust: 100%;
38
- }
37
+ @media screen and (max-device-width: 31.25em) {
38
+
39
+ body,
40
+ :host {
41
+ -webkit-text-size-adjust: 100%
39
42
  }
43
+ }
40
44
 
41
- [data-respect-reduced-motion] {
42
- @media (prefers-reduced-motion: reduce) {
43
- [data-reduce-motion] {
45
+ @media (prefers-reduced-motion: reduce) {
46
+ [data-respect-reduced-motion] [data-reduce-motion] {
44
47
  transition: none;
45
48
  animation: none;
46
49
  }
47
50
  }
48
- }
49
51
 
50
- .c-light-hidden {
51
- @mixin light {
52
+ [data-c-color-scheme='light'] .c-light-hidden {
52
53
  display: none;
53
- }
54
54
  }
55
55
 
56
- .c-dark-hidden {
57
- @mixin dark {
56
+ [data-c-color-scheme='dark'] .c-dark-hidden {
58
57
  display: none;
59
- }
60
58
  }
61
59
 
62
- .c-focus-auto {
63
- &:focus-visible {
60
+ .c-focus-auto:focus-visible {
64
61
  outline: 2px solid var(--c-primary-color-filled);
65
- outline-offset: 2px;
62
+ outline-offset: calc(0.125rem * var(--c-scale));
66
63
  }
67
- }
68
64
 
69
- .c-focus-always {
70
- &:focus {
65
+ .c-focus-always:focus {
71
66
  outline: 2px solid var(--c-primary-color-filled);
72
- outline-offset: 2px;
67
+ outline-offset: calc(0.125rem * var(--c-scale));
73
68
  }
74
- }
75
69
 
76
- .c-focus-never {
77
- &:focus {
70
+ .c-focus-never:focus {
78
71
  outline: none;
79
72
  }
80
- }
81
73
 
82
- .c-active {
83
- &:active {
84
- transform: translateY(rem(1px));
74
+ .c-active:active {
75
+ transform: translateY(calc(0.0625rem * var(--c-scale)));
85
76
  }
86
77
 
87
- fieldset:disabled &:active {
78
+ fieldset:disabled .c-active:active {
88
79
  transform: none;
89
80
  }
90
- }
91
81
 
92
- .c-rotate-rtl {
93
- @mixin where-rtl {
82
+ :where([dir="rtl"]) .c-rotate-rtl {
94
83
  transform: rotate(180deg);
95
- }
96
84
  }
97
85
 
98
86
  /* This file is automatically generated, do not modify it directly. */
@@ -632,29 +620,29 @@ body,
632
620
  }
633
621
 
634
622
  .m_14602a9d {
635
- --button-height-xs: 30px;
636
- --button-height-sm: 36px;
637
- --button-height-md: 42px;
638
- --button-height-lg: 50px;
639
- --button-height-xl: 60px;
640
-
641
- --button-height-compact-xs: 22px;
642
- --button-height-compact-sm: 26px;
643
- --button-height-compact-md: 30px;
644
- --button-height-compact-lg: 34px;
645
- --button-height-compact-xl: 40px;
646
-
647
- --button-padding-x-xs: 14px;
648
- --button-padding-x-sm: 18px;
649
- --button-padding-x-md: 22px;
650
- --button-padding-x-lg: 26px;
651
- --button-padding-x-xl: 32px;
652
-
653
- --button-padding-x-compact-xs: 7px;
654
- --button-padding-x-compact-sm: 8px;
655
- --button-padding-x-compact-md: 10px;
656
- --button-padding-x-compact-lg: 12px;
657
- --button-padding-x-compact-xl: 14px;
623
+ --button-height-xs: calc(1.875rem * var(--c-scale));
624
+ --button-height-sm: calc(2.25rem * var(--c-scale));
625
+ --button-height-md: calc(2.625rem * var(--c-scale));
626
+ --button-height-lg: calc(3.125rem * var(--c-scale));
627
+ --button-height-xl: calc(3.75rem * var(--c-scale));
628
+
629
+ --button-height-compact-xs: calc(1.375rem * var(--c-scale));
630
+ --button-height-compact-sm: calc(1.625rem * var(--c-scale));
631
+ --button-height-compact-md: calc(1.875rem * var(--c-scale));
632
+ --button-height-compact-lg: calc(2.125rem * var(--c-scale));
633
+ --button-height-compact-xl: calc(2.5rem * var(--c-scale));
634
+
635
+ --button-padding-x-xs: calc(0.875rem * var(--c-scale));
636
+ --button-padding-x-sm: calc(1.125rem * var(--c-scale));
637
+ --button-padding-x-md: calc(1.375rem * var(--c-scale));
638
+ --button-padding-x-lg: calc(1.625rem * var(--c-scale));
639
+ --button-padding-x-xl: calc(2rem * var(--c-scale));
640
+
641
+ --button-padding-x-compact-xs: calc(0.4375rem * var(--c-scale));
642
+ --button-padding-x-compact-sm: calc(0.5rem * var(--c-scale));
643
+ --button-padding-x-compact-md: calc(0.625rem * var(--c-scale));
644
+ --button-padding-x-compact-lg: calc(0.75rem * var(--c-scale));
645
+ --button-padding-x-compact-xl: calc(0.875rem * var(--c-scale));
658
646
 
659
647
  --button-height: var(--button-height-sm);
660
648
  --button-padding-x: var(--button-padding-x-sm);
@@ -673,26 +661,27 @@ body,
673
661
  border-radius: var(--button-radius, var(--c-radius-default));
674
662
  font-size: var(--button-fz, var(--c-font-size-sm));
675
663
  background: var(--button-bg, var(--c-color-default));
676
- border: var(--button-bd, rem(1px) solid var(--c-color-default-border));
664
+ border: var(--button-bd, calc(0.0625rem * var(--c-scale)) solid var(--c-color-default-border));
677
665
  color: var(--button-color, var(--c-color-default-color));
678
666
  height: var(--button-height, var(--button-height-sm));
679
667
  padding-inline: var(--button-padding-x, var(--button-padding-x-sm));
680
668
  vertical-align: middle;
669
+ }
681
670
 
682
- &:where([data-block]) {
671
+ .m_14602a9d:where([data-block]) {
683
672
  display: block;
684
673
  width: 100%;
685
674
  }
686
675
 
687
- &:where([data-with-left-section]) {
676
+ .m_14602a9d:where([data-with-left-section]) {
688
677
  padding-inline-start: calc(var(--button-padding-x) / 1.5);
689
678
  }
690
679
 
691
- &:where([data-with-right-section]) {
680
+ .m_14602a9d:where([data-with-right-section]) {
692
681
  padding-inline-end: calc(var(--button-padding-x) / 1.5);
693
682
  }
694
683
 
695
- &:where(:disabled:not([data-loading]), [data-disabled]:not([data-loading])) {
684
+ .m_14602a9d:where(:disabled:not([data-loading]), [data-disabled]:not([data-loading])) {
696
685
  cursor: not-allowed;
697
686
  border-color: transparent;
698
687
  transform: none;
@@ -700,11 +689,11 @@ body,
700
689
  background: var(--c-color-disabled);
701
690
  }
702
691
 
703
- &::before {
692
+ .m_14602a9d::before {
704
693
  content: '';
705
694
  pointer-events: none;
706
695
  position: absolute;
707
- inset: -1px;
696
+ inset: calc(-0.0625rem * var(--c-scale));
708
697
  border-radius: var(--button-radius, var(--c-radius-default));
709
698
  transform: translateY(-100%);
710
699
  opacity: 0;
@@ -712,37 +701,43 @@ body,
712
701
  transition:
713
702
  transform 150ms ease,
714
703
  opacity 100ms ease;
704
+ }
715
705
 
716
- @mixin where-light {
706
+ :where([data-c-color-scheme='light']) .m_14602a9d::before {
717
707
  background-color: rgba(255, 255, 255, 0.15);
718
- }
708
+ }
719
709
 
720
- @mixin where-dark {
710
+ :where([data-c-color-scheme='dark']) .m_14602a9d::before {
721
711
  background-color: rgba(0, 0, 0, 0.15);
722
- }
723
- }
712
+ }
724
713
 
725
- &:where([data-loading]) {
714
+ .m_14602a9d:where([data-loading]) {
726
715
  cursor: not-allowed;
727
716
  transform: none;
717
+ }
728
718
 
729
- &::before {
719
+ .m_14602a9d:where([data-loading])::before {
730
720
  transform: translateY(0);
731
721
  opacity: 1;
732
722
  }
733
723
 
734
- & .m_7725dbfb {
724
+ .m_14602a9d:where([data-loading]) .m_7725dbfb {
735
725
  opacity: 0;
736
726
  transform: translateY(100%);
737
727
  }
738
- }
739
728
 
740
- @mixin hover {
741
- &:where(:not([data-loading], :disabled, [data-disabled])) {
729
+ @media (hover: hover) {
730
+ .m_14602a9d:hover:where(:not([data-loading], :disabled, [data-disabled])) {
731
+ background-color: var(--button-hover, var(--c-color-default-hover));
732
+ color: var(--button-hover-color, var(--button-color));
733
+ }
734
+ }
735
+
736
+ @media (hover: none) {
737
+ .m_14602a9d:active:where(:not([data-loading], :disabled, [data-disabled])) {
742
738
  background-color: var(--button-hover, var(--c-color-default-hover));
743
739
  color: var(--button-hover-color, var(--button-color));
744
740
  }
745
- }
746
741
  }
747
742
 
748
743
  .m_7725dbfb {
@@ -765,24 +760,24 @@ body,
765
760
  opacity: 1;
766
761
  text-box-trim: trim-both;
767
762
  text-box-edge: cap alphabetic;
763
+ }
768
764
 
769
- &:where([data-loading]) {
765
+ .m_774a0c99:where([data-loading]) {
770
766
  opacity: 0.2;
771
767
  }
772
- }
773
768
 
774
769
  .m_462d374a {
775
770
  display: flex;
776
771
  align-items: center;
772
+ }
777
773
 
778
- &:where([data-position='left']) {
774
+ .m_462d374a:where([data-position='left']) {
779
775
  margin-inline-end: var(--c-spacing-xs);
780
776
  }
781
777
 
782
- &:where([data-position='right']) {
778
+ .m_462d374a:where([data-position='right']) {
783
779
  margin-inline-start: var(--c-spacing-xs);
784
780
  }
785
- }
786
781
 
787
782
  .m_72bc570e {
788
783
  position: absolute;
@@ -791,90 +786,82 @@ body,
791
786
  }
792
787
 
793
788
  .m_770b8424 {
794
- --button-border-width: 1px;
789
+ --button-border-width: calc(0.0625rem * var(--c-scale));
795
790
  display: flex;
791
+ }
796
792
 
797
- & :where(.m_14602a9d) {
798
- &:focus {
793
+ .m_770b8424 :where(.m_14602a9d):focus {
799
794
  position: relative;
800
795
  z-index: 1;
801
796
  }
802
- }
803
797
 
804
- &[data-orientation='horizontal'] {
798
+ .m_770b8424[data-orientation='horizontal'] {
805
799
  flex-direction: row;
800
+ }
806
801
 
807
- & .m_14602a9d,
808
- & .m_260a6221 {
809
- &:not(:only-child):first-child {
802
+ .m_770b8424[data-orientation='horizontal'] .m_14602a9d:not(:only-child):first-child, .m_770b8424[data-orientation='horizontal'] .m_260a6221:not(:only-child):first-child {
810
803
  border-end-end-radius: 0;
811
804
  border-start-end-radius: 0;
812
805
  border-inline-end-width: calc(var(--button-border-width) / 2);
813
806
  }
814
807
 
815
- &:not(:only-child):last-child {
808
+ .m_770b8424[data-orientation='horizontal'] .m_14602a9d:not(:only-child):last-child, .m_770b8424[data-orientation='horizontal'] .m_260a6221:not(:only-child):last-child {
816
809
  border-end-start-radius: 0;
817
810
  border-start-start-radius: 0;
818
811
  border-inline-start-width: calc(var(--button-border-width) / 2);
819
812
  }
820
813
 
821
- &:not(:only-child):not(:first-child):not(:last-child) {
814
+ .m_770b8424[data-orientation='horizontal'] .m_14602a9d:not(:only-child):not(:first-child):not(:last-child), .m_770b8424[data-orientation='horizontal'] .m_260a6221:not(:only-child):not(:first-child):not(:last-child) {
822
815
  border-radius: 0;
823
816
  border-inline-width: calc(var(--button-border-width) / 2);
824
817
  }
825
- }
826
- }
827
818
 
828
- &[data-orientation='vertical'] {
819
+ .m_770b8424[data-orientation='vertical'] {
829
820
  flex-direction: column;
821
+ }
830
822
 
831
- & .m_14602a9d,
832
- & .m_260a6221 {
833
- &:not(:only-child):first-child {
823
+ .m_770b8424[data-orientation='vertical'] .m_14602a9d:not(:only-child):first-child, .m_770b8424[data-orientation='vertical'] .m_260a6221:not(:only-child):first-child {
834
824
  border-end-start-radius: 0;
835
825
  border-end-end-radius: 0;
836
826
  border-bottom-width: calc(var(--button-border-width) / 2);
837
827
  }
838
828
 
839
- &:not(:only-child):last-child {
829
+ .m_770b8424[data-orientation='vertical'] .m_14602a9d:not(:only-child):last-child, .m_770b8424[data-orientation='vertical'] .m_260a6221:not(:only-child):last-child {
840
830
  border-start-start-radius: 0;
841
831
  border-start-end-radius: 0;
842
832
  border-top-width: calc(var(--button-border-width) / 2);
843
833
  }
844
834
 
845
- &:not(:only-child):not(:first-child):not(:last-child) {
835
+ .m_770b8424[data-orientation='vertical'] .m_14602a9d:not(:only-child):not(:first-child):not(:last-child), .m_770b8424[data-orientation='vertical'] .m_260a6221:not(:only-child):not(:first-child):not(:last-child) {
846
836
  border-radius: 0;
847
837
  border-bottom-width: calc(var(--button-border-width) / 2);
848
838
  border-top-width: calc(var(--button-border-width) / 2);
849
839
  }
850
- }
851
- }
852
- }
853
840
 
854
841
  .m_260a6221 {
855
- --section-height-xs: 30px;
856
- --section-height-sm: 36px;
857
- --section-height-md: 42px;
858
- --section-height-lg: 50px;
859
- --section-height-xl: 60px;
860
-
861
- --section-height-compact-xs: 22px;
862
- --section-height-compact-sm: 26px;
863
- --section-height-compact-md: 30px;
864
- --section-height-compact-lg: 34px;
865
- --section-height-compact-xl: 40px;
866
-
867
- --section-padding-x-xs: 14px;
868
- --section-padding-x-sm: 18px;
869
- --section-padding-x-md: 22px;
870
- --section-padding-x-lg: 26px;
871
- --section-padding-x-xl: 32px;
872
-
873
- --section-padding-x-compact-xs: 7px;
874
- --section-padding-x-compact-sm: 8px;
875
- --section-padding-x-compact-md: 10px;
876
- --section-padding-x-compact-lg: 12px;
877
- --section-padding-x-compact-xl: 14px;
842
+ --section-height-xs: calc(1.875rem * var(--c-scale));
843
+ --section-height-sm: calc(2.25rem * var(--c-scale));
844
+ --section-height-md: calc(2.625rem * var(--c-scale));
845
+ --section-height-lg: calc(3.125rem * var(--c-scale));
846
+ --section-height-xl: calc(3.75rem * var(--c-scale));
847
+
848
+ --section-height-compact-xs: calc(1.375rem * var(--c-scale));
849
+ --section-height-compact-sm: calc(1.625rem * var(--c-scale));
850
+ --section-height-compact-md: calc(1.875rem * var(--c-scale));
851
+ --section-height-compact-lg: calc(2.125rem * var(--c-scale));
852
+ --section-height-compact-xl: calc(2.5rem * var(--c-scale));
853
+
854
+ --section-padding-x-xs: calc(0.875rem * var(--c-scale));
855
+ --section-padding-x-sm: calc(1.125rem * var(--c-scale));
856
+ --section-padding-x-md: calc(1.375rem * var(--c-scale));
857
+ --section-padding-x-lg: calc(1.625rem * var(--c-scale));
858
+ --section-padding-x-xl: calc(2rem * var(--c-scale));
859
+
860
+ --section-padding-x-compact-xs: calc(0.4375rem * var(--c-scale));
861
+ --section-padding-x-compact-sm: calc(0.5rem * var(--c-scale));
862
+ --section-padding-x-compact-md: calc(0.625rem * var(--c-scale));
863
+ --section-padding-x-compact-lg: calc(0.75rem * var(--c-scale));
864
+ --section-padding-x-compact-xl: calc(0.875rem * var(--c-scale));
878
865
 
879
866
  --section-height: var(--section-height-sm);
880
867
  --section-padding-x: var(--section-padding-x-sm);
@@ -885,7 +872,7 @@ body,
885
872
  border-radius: var(--section-radius, var(--c-radius-default));
886
873
  font-size: var(--section-fz, var(--c-font-size-sm));
887
874
  background: var(--section-bg, var(--c-primary-color-filled));
888
- border: var(--section-bd, rem(1px) solid transparent);
875
+ border: var(--section-bd, calc(0.0625rem * var(--c-scale)) solid transparent);
889
876
  height: var(--section-height, var(--section-height-sm));
890
877
  padding-inline: var(--section-padding-x, var(--section-padding-x-sm));
891
878
  vertical-align: middle;
@@ -936,21 +923,19 @@ body,
936
923
  justify-content: var(--group-justify, flex-start);
937
924
  align-items: var(--group-align, center);
938
925
  gap: var(--group-gap, var(--c-spacing-md));
926
+ }
939
927
 
940
- &:where([data-grow]) {
941
- & > * {
928
+ .m_c9afe370:where([data-grow]) > * {
942
929
  flex-grow: 1;
943
930
  max-width: var(--group-child-width);
944
931
  }
945
- }
946
- }
947
932
 
948
933
  .m_a244865c {
949
- --loader-size-xs: 18px;
950
- --loader-size-sm: 22px;
951
- --loader-size-md: 36px;
952
- --loader-size-lg: 44px;
953
- --loader-size-xl: 58px;
934
+ --loader-size-xs: calc(1.125rem * var(--c-scale));
935
+ --loader-size-sm: calc(1.375rem * var(--c-scale));
936
+ --loader-size-md: calc(2.25rem * var(--c-scale));
937
+ --loader-size-lg: calc(2.75rem * var(--c-scale));
938
+ --loader-size-xl: calc(3.625rem * var(--c-scale));
954
939
  --loader-size: var(--loader-size-md);
955
940
  --loader-color: var(--c-primary-color-filled);
956
941
  }
@@ -986,20 +971,20 @@ body,
986
971
  flex: 1;
987
972
  background: var(--loader-color);
988
973
  animation: m_774c277d 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
989
- border-radius: 2px;
974
+ border-radius: calc(0.125rem * var(--c-scale));
975
+ }
990
976
 
991
- &:nth-of-type(1) {
977
+ .m_919edf59:nth-of-type(1) {
992
978
  animation-delay: -240ms;
993
979
  }
994
980
 
995
- &:nth-of-type(2) {
981
+ .m_919edf59:nth-of-type(2) {
996
982
  animation-delay: -120ms;
997
983
  }
998
984
 
999
- &:nth-of-type(3) {
985
+ .m_919edf59:nth-of-type(3) {
1000
986
  animation-delay: 0;
1001
987
  }
1002
- }
1003
988
 
1004
989
  @keyframes m_24cd2081 {
1005
990
  0%,
@@ -1030,11 +1015,11 @@ body,
1030
1015
  border-radius: 50%;
1031
1016
  background: var(--loader-color);
1032
1017
  animation: m_24cd2081 0.8s infinite linear;
1018
+ }
1033
1019
 
1034
- &:nth-child(2) {
1020
+ .m_919ee88f:nth-child(2) {
1035
1021
  animation-delay: 0.4s;
1036
1022
  }
1037
- }
1038
1023
 
1039
1024
  @keyframes m_1309882b {
1040
1025
  0% {
@@ -1050,20 +1035,20 @@ body,
1050
1035
  display: inline-block;
1051
1036
  width: var(--loader-size);
1052
1037
  height: var(--loader-size);
1038
+ }
1053
1039
 
1054
- &::after {
1040
+ .m_c87fd4ff::after {
1055
1041
  content: '';
1056
1042
  display: block;
1057
1043
  width: var(--loader-size);
1058
1044
  height: var(--loader-size);
1059
- border-radius: 10000px;
1045
+ border-radius: calc(625rem * var(--c-scale));
1060
1046
  border-width: calc(var(--loader-size) / 8);
1061
1047
  border-style: solid;
1062
1048
  border-color: var(--loader-color) var(--loader-color) var(--loader-color)
1063
1049
  transparent;
1064
1050
  animation: m_1309882b 1.2s linear infinite;
1065
1051
  }
1066
- }
1067
1052
 
1068
1053
  .m_cd6f7c35 {
1069
1054
  container: simple-grid / inline-size;
@@ -1093,31 +1078,32 @@ body,
1093
1078
  text-wrap: var(--text-text-wrap, var(--c-text-wrap));
1094
1079
  margin: 0;
1095
1080
  padding: 0;
1081
+ }
1096
1082
 
1097
- &:where([data-truncate]) {
1083
+ .m_3f669182:where([data-truncate]) {
1098
1084
  overflow: hidden;
1099
1085
  text-overflow: ellipsis;
1100
1086
  white-space: nowrap;
1101
1087
  }
1102
1088
 
1103
- &:where([data-truncate='start']) {
1089
+ .m_3f669182:where([data-truncate='start']) {
1104
1090
  direction: rtl;
1105
1091
  text-align: end;
1092
+ }
1106
1093
 
1107
- @mixin where-rtl {
1094
+ :where([dir="rtl"]) .m_3f669182:where([data-truncate='start']) {
1108
1095
  direction: ltr;
1109
1096
  text-align: start;
1110
- }
1111
- }
1097
+ }
1112
1098
 
1113
- &:where([data-variant='gradient']) {
1099
+ .m_3f669182:where([data-variant='gradient']) {
1114
1100
  background-image: var(--text-gradient);
1115
1101
  -webkit-text-fill-color: transparent;
1116
1102
  -webkit-background-clip: text;
1117
1103
  background-clip: text;
1118
1104
  }
1119
1105
 
1120
- &:where([data-line-clamp]) {
1106
+ .m_3f669182:where([data-line-clamp]) {
1121
1107
  overflow: hidden;
1122
1108
  text-overflow: ellipsis;
1123
1109
  display: -webkit-box;
@@ -1125,13 +1111,12 @@ body,
1125
1111
  -webkit-box-orient: vertical;
1126
1112
  }
1127
1113
 
1128
- &:where([data-inherit]) {
1114
+ .m_3f669182:where([data-inherit]) {
1129
1115
  line-height: inherit;
1130
1116
  font-weight: inherit;
1131
1117
  font-size: inherit;
1132
1118
  }
1133
1119
 
1134
- &:where([data-inline]) {
1120
+ .m_3f669182:where([data-inline]) {
1135
1121
  line-height: 1;
1136
1122
  }
1137
- }