@seed-design/css 1.2.6 → 1.2.8
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/all.css +323 -200
- package/all.layered.css +323 -200
- package/all.layered.min.css +1 -1
- package/all.min.css +1 -1
- package/base.css +6 -2
- package/base.layered.css +6 -2
- package/base.layered.min.css +1 -1
- package/base.min.css +1 -1
- package/package.json +1 -1
- package/recipes/action-button.css +14 -14
- package/recipes/action-button.layered.css +14 -14
- package/recipes/action-sheet.layered.css +3 -3
- package/recipes/app-bar.css +93 -0
- package/recipes/app-bar.d.ts +1 -1
- package/recipes/app-bar.layered.css +90 -0
- package/recipes/app-bar.layered.mjs +4 -0
- package/recipes/app-bar.mjs +4 -0
- package/recipes/app-screen.layered.css +13 -13
- package/recipes/avatar-stack.css +7 -0
- package/recipes/avatar-stack.d.ts +1 -1
- package/recipes/avatar-stack.layered.css +9 -0
- package/recipes/avatar-stack.layered.mjs +1 -0
- package/recipes/avatar-stack.mjs +1 -0
- package/recipes/avatar.css +10 -0
- package/recipes/avatar.d.ts +1 -1
- package/recipes/avatar.layered.css +12 -0
- package/recipes/avatar.layered.mjs +1 -0
- package/recipes/avatar.mjs +1 -0
- package/recipes/bottom-sheet-handle.css +2 -2
- package/recipes/bottom-sheet-handle.layered.css +2 -2
- package/recipes/bottom-sheet.layered.css +3 -3
- package/recipes/callout.css +12 -12
- package/recipes/callout.layered.css +13 -13
- package/recipes/checkbox.layered.css +2 -2
- package/recipes/checkmark.css +12 -12
- package/recipes/checkmark.layered.css +12 -12
- package/recipes/chip-tabs.css +12 -12
- package/recipes/chip-tabs.layered.css +12 -12
- package/recipes/chip.css +12 -12
- package/recipes/chip.layered.css +12 -12
- package/recipes/contextual-floating-button.css +4 -4
- package/recipes/contextual-floating-button.layered.css +4 -4
- package/recipes/dialog.layered.css +3 -3
- package/recipes/extended-action-sheet.layered.css +3 -3
- package/recipes/field.layered.css +2 -2
- package/recipes/floating-action-button.css +2 -2
- package/recipes/floating-action-button.layered.css +2 -2
- package/recipes/help-bubble.layered.css +4 -4
- package/recipes/image-frame-reaction-button.layered.css +4 -4
- package/recipes/image-frame.css +11 -5
- package/recipes/image-frame.layered.css +8 -0
- package/recipes/inline-banner.layered.css +3 -3
- package/recipes/input-button.css +2 -2
- package/recipes/input-button.layered.css +2 -2
- package/recipes/list-item.css +8 -8
- package/recipes/list-item.layered.css +8 -8
- package/recipes/menu-sheet-item.css +2 -2
- package/recipes/menu-sheet-item.layered.css +2 -2
- package/recipes/menu-sheet.css +2 -2
- package/recipes/menu-sheet.layered.css +6 -6
- package/recipes/page-banner.css +22 -22
- package/recipes/page-banner.layered.css +27 -27
- package/recipes/pull-to-refresh.layered.css +1 -1
- package/recipes/radio.layered.css +2 -2
- package/recipes/radiomark.css +6 -6
- package/recipes/radiomark.layered.css +6 -6
- package/recipes/reaction-button.css +4 -4
- package/recipes/reaction-button.layered.css +4 -4
- package/recipes/segmented-control.css +4 -4
- package/recipes/segmented-control.layered.css +4 -4
- package/recipes/select-box.css +2 -2
- package/recipes/select-box.layered.css +2 -2
- package/recipes/selectBoxCheckmark.css +2 -2
- package/recipes/selectBoxCheckmark.layered.css +2 -2
- package/recipes/slider.layered.css +2 -2
- package/recipes/snackbar-region.layered.css +1 -1
- package/recipes/switch.layered.css +3 -3
- package/recipes/switchmark.layered.css +3 -3
- package/recipes/tabs.layered.css +4 -4
- package/recipes/toggle-button.css +8 -8
- package/recipes/toggle-button.layered.css +8 -8
- package/vars/color/bg.d.ts +5 -5
- package/vars/component/avatar-stack.d.ts +10 -0
- package/vars/component/avatar-stack.mjs +10 -0
- package/vars/component/avatar.d.ts +42 -0
- package/vars/component/avatar.mjs +16 -0
- package/vars/component/menu-sheet.d.ts +1 -0
- package/vars/component/menu-sheet.mjs +1 -0
package/all.css
CHANGED
|
@@ -824,13 +824,13 @@
|
|
|
824
824
|
--range-color: var(--seed-color-palette-static-white);
|
|
825
825
|
}
|
|
826
826
|
|
|
827
|
-
@media (hover: hover) {
|
|
827
|
+
@media (hover: hover) and (pointer: fine) {
|
|
828
828
|
.seed-action-button--variant_brandSolid:is(:hover, [data-hover]) {
|
|
829
829
|
background: var(--seed-color-bg-brand-solid-pressed);
|
|
830
830
|
}
|
|
831
831
|
}
|
|
832
832
|
|
|
833
|
-
@media (hover:
|
|
833
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
834
834
|
.seed-action-button--variant_brandSolid:is(:active, [data-active]) {
|
|
835
835
|
background: var(--seed-color-bg-brand-solid-pressed);
|
|
836
836
|
}
|
|
@@ -859,13 +859,13 @@
|
|
|
859
859
|
--range-color: var(--seed-color-palette-static-white);
|
|
860
860
|
}
|
|
861
861
|
|
|
862
|
-
@media (hover: hover) {
|
|
862
|
+
@media (hover: hover) and (pointer: fine) {
|
|
863
863
|
.seed-action-button--variant_neutralSolid:is(:hover, [data-hover]) {
|
|
864
864
|
background: var(--seed-color-bg-neutral-inverted-pressed);
|
|
865
865
|
}
|
|
866
866
|
}
|
|
867
867
|
|
|
868
|
-
@media (hover:
|
|
868
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
869
869
|
.seed-action-button--variant_neutralSolid:is(:active, [data-active]) {
|
|
870
870
|
background: var(--seed-color-bg-neutral-inverted-pressed);
|
|
871
871
|
}
|
|
@@ -894,13 +894,13 @@
|
|
|
894
894
|
--range-color: var(--seed-color-fg-neutral);
|
|
895
895
|
}
|
|
896
896
|
|
|
897
|
-
@media (hover: hover) {
|
|
897
|
+
@media (hover: hover) and (pointer: fine) {
|
|
898
898
|
.seed-action-button--variant_neutralWeak:is(:hover, [data-hover]) {
|
|
899
899
|
background: var(--seed-color-bg-neutral-weak-pressed);
|
|
900
900
|
}
|
|
901
901
|
}
|
|
902
902
|
|
|
903
|
-
@media (hover:
|
|
903
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
904
904
|
.seed-action-button--variant_neutralWeak:is(:active, [data-active]) {
|
|
905
905
|
background: var(--seed-color-bg-neutral-weak-pressed);
|
|
906
906
|
}
|
|
@@ -929,13 +929,13 @@
|
|
|
929
929
|
--range-color: var(--seed-color-palette-static-white);
|
|
930
930
|
}
|
|
931
931
|
|
|
932
|
-
@media (hover: hover) {
|
|
932
|
+
@media (hover: hover) and (pointer: fine) {
|
|
933
933
|
.seed-action-button--variant_criticalSolid:is(:hover, [data-hover]) {
|
|
934
934
|
background: var(--seed-color-bg-critical-solid-pressed);
|
|
935
935
|
}
|
|
936
936
|
}
|
|
937
937
|
|
|
938
|
-
@media (hover:
|
|
938
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
939
939
|
.seed-action-button--variant_criticalSolid:is(:active, [data-active]) {
|
|
940
940
|
background: var(--seed-color-bg-critical-solid-pressed);
|
|
941
941
|
}
|
|
@@ -967,13 +967,13 @@
|
|
|
967
967
|
--range-color: var(--seed-color-bg-brand-solid);
|
|
968
968
|
}
|
|
969
969
|
|
|
970
|
-
@media (hover: hover) {
|
|
970
|
+
@media (hover: hover) and (pointer: fine) {
|
|
971
971
|
.seed-action-button--variant_brandOutline:is(:hover, [data-hover]) {
|
|
972
972
|
background: var(--seed-color-bg-transparent-pressed);
|
|
973
973
|
}
|
|
974
974
|
}
|
|
975
975
|
|
|
976
|
-
@media (hover:
|
|
976
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
977
977
|
.seed-action-button--variant_brandOutline:is(:active, [data-active]) {
|
|
978
978
|
background: var(--seed-color-bg-transparent-pressed);
|
|
979
979
|
}
|
|
@@ -1006,13 +1006,13 @@
|
|
|
1006
1006
|
--range-color: var(--seed-color-fg-neutral);
|
|
1007
1007
|
}
|
|
1008
1008
|
|
|
1009
|
-
@media (hover: hover) {
|
|
1009
|
+
@media (hover: hover) and (pointer: fine) {
|
|
1010
1010
|
.seed-action-button--variant_neutralOutline:is(:hover, [data-hover]) {
|
|
1011
1011
|
background: var(--seed-color-bg-transparent-pressed);
|
|
1012
1012
|
}
|
|
1013
1013
|
}
|
|
1014
1014
|
|
|
1015
|
-
@media (hover:
|
|
1015
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
1016
1016
|
.seed-action-button--variant_neutralOutline:is(:active, [data-active]) {
|
|
1017
1017
|
background: var(--seed-color-bg-transparent-pressed);
|
|
1018
1018
|
}
|
|
@@ -1044,13 +1044,13 @@
|
|
|
1044
1044
|
background: #fff0;
|
|
1045
1045
|
}
|
|
1046
1046
|
|
|
1047
|
-
@media (hover: hover) {
|
|
1047
|
+
@media (hover: hover) and (pointer: fine) {
|
|
1048
1048
|
.seed-action-button--variant_ghost:is(:hover, [data-hover]) {
|
|
1049
1049
|
background: var(--seed-color-bg-transparent-pressed);
|
|
1050
1050
|
}
|
|
1051
1051
|
}
|
|
1052
1052
|
|
|
1053
|
-
@media (hover:
|
|
1053
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
1054
1054
|
.seed-action-button--variant_ghost:is(:active, [data-active]) {
|
|
1055
1055
|
background: var(--seed-color-bg-transparent-pressed);
|
|
1056
1056
|
}
|
|
@@ -1266,7 +1266,7 @@
|
|
|
1266
1266
|
.seed-action-sheet__positioner {
|
|
1267
1267
|
overscroll-behavior-y: none;
|
|
1268
1268
|
--sheet-z-index: 2;
|
|
1269
|
-
z-index: calc(var(--sheet-z-index)
|
|
1269
|
+
z-index: calc(var(--sheet-z-index) + var(--layer-index, 0));
|
|
1270
1270
|
justify-content: center;
|
|
1271
1271
|
align-items: flex-end;
|
|
1272
1272
|
display: flex;
|
|
@@ -1276,7 +1276,7 @@
|
|
|
1276
1276
|
|
|
1277
1277
|
.seed-action-sheet__backdrop {
|
|
1278
1278
|
background: var(--seed-color-bg-overlay);
|
|
1279
|
-
z-index: calc(var(--sheet-z-index)
|
|
1279
|
+
z-index: calc(var(--sheet-z-index) + var(--layer-index, 0));
|
|
1280
1280
|
position: fixed;
|
|
1281
1281
|
inset: 0;
|
|
1282
1282
|
}
|
|
@@ -1305,7 +1305,7 @@
|
|
|
1305
1305
|
.seed-action-sheet__content {
|
|
1306
1306
|
box-sizing: border-box;
|
|
1307
1307
|
word-break: break-all;
|
|
1308
|
-
z-index: calc(var(--sheet-z-index)
|
|
1308
|
+
z-index: calc(var(--sheet-z-index) + var(--layer-index, 0));
|
|
1309
1309
|
background: var(--seed-color-bg-layer-floating);
|
|
1310
1310
|
border-top-left-radius: var(--seed-radius-r5);
|
|
1311
1311
|
border-top-right-radius: var(--seed-radius-r5);
|
|
@@ -1701,6 +1701,96 @@
|
|
|
1701
1701
|
animation: none !important;
|
|
1702
1702
|
}
|
|
1703
1703
|
|
|
1704
|
+
[data-global-transition-state="enter-active"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
1705
|
+
--seed-enter-translate-x: 0;
|
|
1706
|
+
--seed-enter-translate-y: 0;
|
|
1707
|
+
--seed-enter-opacity: 0;
|
|
1708
|
+
--seed-enter-scale: 1;
|
|
1709
|
+
opacity: 1;
|
|
1710
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
1711
|
+
}
|
|
1712
|
+
|
|
1713
|
+
[data-global-transition-state="exit-active"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
1714
|
+
transform: translate3d(calc(var(--swipe-back-displacement, 0) * .15), 0, 0);
|
|
1715
|
+
opacity: calc(1 - var(--swipe-back-displacement-ratio, 0) * 3);
|
|
1716
|
+
--seed-exit-translate-x: 0;
|
|
1717
|
+
--seed-exit-translate-y: 0;
|
|
1718
|
+
--seed-exit-opacity: 0;
|
|
1719
|
+
--seed-exit-scale: 1;
|
|
1720
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) forwards seed-exit;
|
|
1721
|
+
}
|
|
1722
|
+
|
|
1723
|
+
[data-global-transition-state="enter-done"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
1724
|
+
--seed-enter-translate-x: calc(var(--swipe-back-displacement, 0) * .15);
|
|
1725
|
+
--seed-enter-translate-y: 0;
|
|
1726
|
+
--seed-enter-opacity: calc(1 - var(--swipe-back-displacement-ratio, 0) * 3);
|
|
1727
|
+
--seed-enter-scale: 1;
|
|
1728
|
+
opacity: 1;
|
|
1729
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
[data-swipe-back-state="swiping"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
1733
|
+
transform: translate3d(calc(var(--swipe-back-displacement, 0) * .15), 0, 0);
|
|
1734
|
+
opacity: calc(1 - var(--swipe-back-displacement-ratio, 0) * 3);
|
|
1735
|
+
animation: none;
|
|
1736
|
+
}
|
|
1737
|
+
|
|
1738
|
+
[data-swipe-back-state="canceling"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
1739
|
+
opacity: 1;
|
|
1740
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1741
|
+
animation: none !important;
|
|
1742
|
+
}
|
|
1743
|
+
|
|
1744
|
+
[data-swipe-back-state="completing"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
1745
|
+
opacity: 0;
|
|
1746
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1747
|
+
animation: none !important;
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
[data-global-transition-state="enter-active"][data-top-activity-type="full-screen"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
1751
|
+
opacity: 1;
|
|
1752
|
+
--seed-exit-translate-x: 0;
|
|
1753
|
+
--seed-exit-translate-y: 0;
|
|
1754
|
+
--seed-exit-opacity: 0;
|
|
1755
|
+
--seed-exit-scale: 1;
|
|
1756
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) forwards seed-exit;
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1759
|
+
[data-global-transition-state="exit-active"][data-top-activity-type="full-screen"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
1760
|
+
--seed-enter-translate-x: 0;
|
|
1761
|
+
--seed-enter-translate-y: 0;
|
|
1762
|
+
--seed-enter-opacity: calc(var(--swipe-back-displacement-ratio, 0));
|
|
1763
|
+
--seed-enter-scale: 1;
|
|
1764
|
+
opacity: 1;
|
|
1765
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
[data-global-transition-state="enter-done"][data-top-activity-type="full-screen"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
1769
|
+
opacity: calc(var(--swipe-back-displacement-ratio, 0));
|
|
1770
|
+
--seed-exit-translate-x: 0;
|
|
1771
|
+
--seed-exit-translate-y: 0;
|
|
1772
|
+
--seed-exit-opacity: 0;
|
|
1773
|
+
--seed-exit-scale: 1;
|
|
1774
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) forwards seed-exit;
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1777
|
+
[data-swipe-back-state="swiping"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
1778
|
+
opacity: calc(var(--swipe-back-displacement-ratio, 0));
|
|
1779
|
+
animation: none;
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
[data-swipe-back-state="canceling"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
1783
|
+
opacity: 0;
|
|
1784
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1785
|
+
animation: none !important;
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
[data-swipe-back-state="completing"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
1789
|
+
opacity: 1;
|
|
1790
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1791
|
+
animation: none !important;
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1704
1794
|
[data-global-transition-state="enter-active"] .seed-app-bar__root--transitionStyle_fadeFromBottomAndroid[data-activity-is-top] {
|
|
1705
1795
|
--seed-enter-translate-x: 0;
|
|
1706
1796
|
--seed-enter-translate-y: 8vh;
|
|
@@ -1924,7 +2014,7 @@
|
|
|
1924
2014
|
}
|
|
1925
2015
|
|
|
1926
2016
|
.seed-app-screen__root {
|
|
1927
|
-
--app-bar-offset: calc(var(--app-bar-height)
|
|
2017
|
+
--app-bar-offset: calc(var(--app-bar-height) + var(--seed-safe-area-top));
|
|
1928
2018
|
width: 100%;
|
|
1929
2019
|
height: 100%;
|
|
1930
2020
|
position: absolute;
|
|
@@ -1984,10 +2074,10 @@
|
|
|
1984
2074
|
}
|
|
1985
2075
|
|
|
1986
2076
|
.seed-app-screen__root--transitionStyle_slideFromRightIOS {
|
|
1987
|
-
--z-index-dim: calc(var(--z-index-base)
|
|
1988
|
-
--z-index-layer: calc(var(--z-index-base)
|
|
1989
|
-
--z-index-edge: calc(var(--z-index-base)
|
|
1990
|
-
--z-index-app-bar: calc(var(--z-index-base)
|
|
2077
|
+
--z-index-dim: calc(var(--z-index-base) + 0);
|
|
2078
|
+
--z-index-layer: calc(var(--z-index-base) + 2);
|
|
2079
|
+
--z-index-edge: calc(var(--z-index-base) + 4);
|
|
2080
|
+
--z-index-app-bar: calc(var(--z-index-base) + 7);
|
|
1991
2081
|
}
|
|
1992
2082
|
|
|
1993
2083
|
.seed-app-screen__layer--transitionStyle_slideFromRightIOS {
|
|
@@ -2132,10 +2222,10 @@
|
|
|
2132
2222
|
}
|
|
2133
2223
|
|
|
2134
2224
|
.seed-app-screen__root--transitionStyle_fadeFromBottomAndroid {
|
|
2135
|
-
--z-index-dim: calc(var(--z-index-base)
|
|
2136
|
-
--z-index-layer: calc(var(--z-index-base)
|
|
2137
|
-
--z-index-edge: calc(var(--z-index-base)
|
|
2138
|
-
--z-index-app-bar: calc(var(--z-index-base)
|
|
2225
|
+
--z-index-dim: calc(var(--z-index-base) + 0);
|
|
2226
|
+
--z-index-layer: calc(var(--z-index-base) + 3);
|
|
2227
|
+
--z-index-edge: calc(var(--z-index-base) + 4);
|
|
2228
|
+
--z-index-app-bar: calc(var(--z-index-base) + 4);
|
|
2139
2229
|
}
|
|
2140
2230
|
|
|
2141
2231
|
.seed-app-screen__dim--transitionStyle_fadeFromBottomAndroid {
|
|
@@ -2188,10 +2278,10 @@
|
|
|
2188
2278
|
}
|
|
2189
2279
|
|
|
2190
2280
|
.seed-app-screen__root--transitionStyle_fadeIn {
|
|
2191
|
-
--z-index-dim: calc(var(--z-index-base)
|
|
2192
|
-
--z-index-layer: calc(var(--z-index-base)
|
|
2193
|
-
--z-index-edge: calc(var(--z-index-base)
|
|
2194
|
-
--z-index-app-bar: calc(var(--z-index-base)
|
|
2281
|
+
--z-index-dim: calc(var(--z-index-base) + 0);
|
|
2282
|
+
--z-index-layer: calc(var(--z-index-base) + 3);
|
|
2283
|
+
--z-index-edge: calc(var(--z-index-base) + 4);
|
|
2284
|
+
--z-index-app-bar: calc(var(--z-index-base) + 4);
|
|
2195
2285
|
}
|
|
2196
2286
|
|
|
2197
2287
|
.seed-app-screen__dim--transitionStyle_fadeIn {
|
|
@@ -2418,6 +2508,18 @@
|
|
|
2418
2508
|
--badge-offset: 30px;
|
|
2419
2509
|
}
|
|
2420
2510
|
|
|
2511
|
+
.seed-avatar__root--size_56 {
|
|
2512
|
+
--avatar-size: 56px;
|
|
2513
|
+
--avatar-stroke-width: 1px;
|
|
2514
|
+
--badge-mask-size: 24px;
|
|
2515
|
+
--badge-mask-offset: 34px;
|
|
2516
|
+
}
|
|
2517
|
+
|
|
2518
|
+
.seed-avatar__badge--size_56 {
|
|
2519
|
+
--badge-size: 20px;
|
|
2520
|
+
--badge-offset: 36px;
|
|
2521
|
+
}
|
|
2522
|
+
|
|
2421
2523
|
.seed-avatar__root--size_64 {
|
|
2422
2524
|
--avatar-size: 64px;
|
|
2423
2525
|
--avatar-stroke-width: 1px;
|
|
@@ -2543,6 +2645,15 @@
|
|
|
2543
2645
|
box-shadow: 0 0 0 2px var(--seed-color-bg-layer-default);
|
|
2544
2646
|
}
|
|
2545
2647
|
|
|
2648
|
+
.seed-avatar-stack__item--size_56:not(:first-child) {
|
|
2649
|
+
margin-left: -13px;
|
|
2650
|
+
}
|
|
2651
|
+
|
|
2652
|
+
.seed-avatar-stack__item--size_56 {
|
|
2653
|
+
clip-path: inset(-3px);
|
|
2654
|
+
box-shadow: 0 0 0 3px var(--seed-color-bg-layer-default);
|
|
2655
|
+
}
|
|
2656
|
+
|
|
2546
2657
|
.seed-avatar-stack__item--size_64:not(:first-child) {
|
|
2547
2658
|
margin-left: -16px;
|
|
2548
2659
|
}
|
|
@@ -2721,7 +2832,7 @@
|
|
|
2721
2832
|
.seed-bottom-sheet__positioner {
|
|
2722
2833
|
overscroll-behavior-y: none;
|
|
2723
2834
|
--sheet-z-index: 2;
|
|
2724
|
-
z-index: calc(var(--sheet-z-index)
|
|
2835
|
+
z-index: calc(var(--sheet-z-index) + var(--layer-index, 0));
|
|
2725
2836
|
justify-content: center;
|
|
2726
2837
|
align-items: flex-end;
|
|
2727
2838
|
display: flex;
|
|
@@ -2731,7 +2842,7 @@
|
|
|
2731
2842
|
|
|
2732
2843
|
.seed-bottom-sheet__backdrop {
|
|
2733
2844
|
background: var(--seed-color-bg-overlay);
|
|
2734
|
-
z-index: calc(var(--sheet-z-index)
|
|
2845
|
+
z-index: calc(var(--sheet-z-index) + var(--layer-index, 0));
|
|
2735
2846
|
position: fixed;
|
|
2736
2847
|
inset: 0;
|
|
2737
2848
|
}
|
|
@@ -2747,7 +2858,7 @@
|
|
|
2747
2858
|
.seed-bottom-sheet__content {
|
|
2748
2859
|
box-sizing: border-box;
|
|
2749
2860
|
word-break: break-all;
|
|
2750
|
-
z-index: calc(var(--sheet-z-index)
|
|
2861
|
+
z-index: calc(var(--sheet-z-index) + var(--layer-index, 0));
|
|
2751
2862
|
background: var(--seed-color-bg-layer-floating);
|
|
2752
2863
|
border-top-left-radius: var(--seed-radius-r6);
|
|
2753
2864
|
border-top-right-radius: var(--seed-radius-r6);
|
|
@@ -2954,13 +3065,13 @@
|
|
|
2954
3065
|
transform: translateX(-50%);
|
|
2955
3066
|
}
|
|
2956
3067
|
|
|
2957
|
-
@media (hover: hover) {
|
|
3068
|
+
@media (hover: hover) and (pointer: fine) {
|
|
2958
3069
|
.seed-bottom-sheet-handle__root:is(:hover, [data-hover]) {
|
|
2959
3070
|
background-color: var(--seed-color-palette-gray-500);
|
|
2960
3071
|
}
|
|
2961
3072
|
}
|
|
2962
3073
|
|
|
2963
|
-
@media (hover:
|
|
3074
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
2964
3075
|
.seed-bottom-sheet-handle__root:is(:active, [data-active]) {
|
|
2965
3076
|
background-color: var(--seed-color-palette-gray-500);
|
|
2966
3077
|
}
|
|
@@ -3065,7 +3176,7 @@
|
|
|
3065
3176
|
cursor: pointer;
|
|
3066
3177
|
width: var(--seed-dimension-x10);
|
|
3067
3178
|
height: var(--seed-dimension-x10);
|
|
3068
|
-
margin: calc((var(--seed-dimension-x10)
|
|
3179
|
+
margin: calc((var(--seed-dimension-x10) - var(--seed-dimension-x4)) * -.5);
|
|
3069
3180
|
border-radius: var(--seed-radius-r2_5);
|
|
3070
3181
|
transition: outline-color var(--seed-duration-d3) var(--seed-timing-function-easing);
|
|
3071
3182
|
outline: var(--seed-dimension-x0_5) solid transparent;
|
|
@@ -3091,13 +3202,13 @@
|
|
|
3091
3202
|
--seed-suffix-icon-color: var(--seed-color-fg-neutral);
|
|
3092
3203
|
}
|
|
3093
3204
|
|
|
3094
|
-
@media (hover: hover) {
|
|
3205
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3095
3206
|
.seed-callout__root--tone_neutral:is(button, a):is(:hover, [data-hover]) {
|
|
3096
3207
|
background-color: var(--seed-color-bg-neutral-weak-pressed);
|
|
3097
3208
|
}
|
|
3098
3209
|
}
|
|
3099
3210
|
|
|
3100
|
-
@media (hover:
|
|
3211
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3101
3212
|
.seed-callout__root--tone_neutral:is(button, a):is(:active, [data-active]) {
|
|
3102
3213
|
background-color: var(--seed-color-bg-neutral-weak-pressed);
|
|
3103
3214
|
}
|
|
@@ -3113,13 +3224,13 @@
|
|
|
3113
3224
|
--seed-suffix-icon-color: var(--seed-color-fg-informative-contrast);
|
|
3114
3225
|
}
|
|
3115
3226
|
|
|
3116
|
-
@media (hover: hover) {
|
|
3227
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3117
3228
|
.seed-callout__root--tone_informative:is(button, a):is(:hover, [data-hover]) {
|
|
3118
3229
|
background-color: var(--seed-color-bg-informative-weak-pressed);
|
|
3119
3230
|
}
|
|
3120
3231
|
}
|
|
3121
3232
|
|
|
3122
|
-
@media (hover:
|
|
3233
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3123
3234
|
.seed-callout__root--tone_informative:is(button, a):is(:active, [data-active]) {
|
|
3124
3235
|
background-color: var(--seed-color-bg-informative-weak-pressed);
|
|
3125
3236
|
}
|
|
@@ -3135,13 +3246,13 @@
|
|
|
3135
3246
|
--seed-suffix-icon-color: var(--seed-color-fg-positive-contrast);
|
|
3136
3247
|
}
|
|
3137
3248
|
|
|
3138
|
-
@media (hover: hover) {
|
|
3249
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3139
3250
|
.seed-callout__root--tone_positive:is(button, a):is(:hover, [data-hover]) {
|
|
3140
3251
|
background-color: var(--seed-color-bg-positive-weak-pressed);
|
|
3141
3252
|
}
|
|
3142
3253
|
}
|
|
3143
3254
|
|
|
3144
|
-
@media (hover:
|
|
3255
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3145
3256
|
.seed-callout__root--tone_positive:is(button, a):is(:active, [data-active]) {
|
|
3146
3257
|
background-color: var(--seed-color-bg-positive-weak-pressed);
|
|
3147
3258
|
}
|
|
@@ -3157,13 +3268,13 @@
|
|
|
3157
3268
|
--seed-suffix-icon-color: var(--seed-color-fg-warning-contrast);
|
|
3158
3269
|
}
|
|
3159
3270
|
|
|
3160
|
-
@media (hover: hover) {
|
|
3271
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3161
3272
|
.seed-callout__root--tone_warning:is(button, a):is(:hover, [data-hover]) {
|
|
3162
3273
|
background-color: var(--seed-color-bg-warning-weak-pressed);
|
|
3163
3274
|
}
|
|
3164
3275
|
}
|
|
3165
3276
|
|
|
3166
|
-
@media (hover:
|
|
3277
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3167
3278
|
.seed-callout__root--tone_warning:is(button, a):is(:active, [data-active]) {
|
|
3168
3279
|
background-color: var(--seed-color-bg-warning-weak-pressed);
|
|
3169
3280
|
}
|
|
@@ -3179,13 +3290,13 @@
|
|
|
3179
3290
|
--seed-suffix-icon-color: var(--seed-color-fg-critical-contrast);
|
|
3180
3291
|
}
|
|
3181
3292
|
|
|
3182
|
-
@media (hover: hover) {
|
|
3293
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3183
3294
|
.seed-callout__root--tone_critical:is(button, a):is(:hover, [data-hover]) {
|
|
3184
3295
|
background-color: var(--seed-color-bg-critical-weak-pressed);
|
|
3185
3296
|
}
|
|
3186
3297
|
}
|
|
3187
3298
|
|
|
3188
|
-
@media (hover:
|
|
3299
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3189
3300
|
.seed-callout__root--tone_critical:is(button, a):is(:active, [data-active]) {
|
|
3190
3301
|
background-color: var(--seed-color-bg-critical-weak-pressed);
|
|
3191
3302
|
}
|
|
@@ -3201,13 +3312,13 @@
|
|
|
3201
3312
|
--seed-suffix-icon-color: var(--seed-color-fg-neutral);
|
|
3202
3313
|
}
|
|
3203
3314
|
|
|
3204
|
-
@media (hover: hover) {
|
|
3315
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3205
3316
|
.seed-callout__root--tone_magic:is(button, a):is(:hover, [data-hover]) {
|
|
3206
3317
|
background-image: linear-gradient(88deg, var(--seed-gradient-glow-magic-pressed));
|
|
3207
3318
|
}
|
|
3208
3319
|
}
|
|
3209
3320
|
|
|
3210
|
-
@media (hover:
|
|
3321
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3211
3322
|
.seed-callout__root--tone_magic:is(button, a):is(:active, [data-active]) {
|
|
3212
3323
|
background-image: linear-gradient(88deg, var(--seed-gradient-glow-magic-pressed));
|
|
3213
3324
|
}
|
|
@@ -3250,7 +3361,7 @@
|
|
|
3250
3361
|
|
|
3251
3362
|
.seed-checkbox__root--size_large {
|
|
3252
3363
|
min-height: var(--seed-dimension-x9);
|
|
3253
|
-
--checkmark-margin-top: calc((var(--seed-dimension-x9)
|
|
3364
|
+
--checkmark-margin-top: calc((var(--seed-dimension-x9) - var(--seed-dimension-x6)) / 2);
|
|
3254
3365
|
}
|
|
3255
3366
|
|
|
3256
3367
|
.seed-checkbox__label--size_large {
|
|
@@ -3261,7 +3372,7 @@
|
|
|
3261
3372
|
|
|
3262
3373
|
.seed-checkbox__root--size_medium {
|
|
3263
3374
|
min-height: var(--seed-dimension-x8);
|
|
3264
|
-
--checkmark-margin-top: calc((var(--seed-dimension-x8)
|
|
3375
|
+
--checkmark-margin-top: calc((var(--seed-dimension-x8) - var(--seed-dimension-x5)) / 2);
|
|
3265
3376
|
}
|
|
3266
3377
|
|
|
3267
3378
|
.seed-checkbox__label--size_medium {
|
|
@@ -3311,13 +3422,13 @@
|
|
|
3311
3422
|
border-width: 0;
|
|
3312
3423
|
}
|
|
3313
3424
|
|
|
3314
|
-
@media (hover: hover) {
|
|
3425
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3315
3426
|
.seed-checkmark__root--variant_square:not(:is(:disabled, [disabled], [data-disabled])):is(:hover, [data-hover]) {
|
|
3316
3427
|
background: var(--seed-color-bg-transparent-pressed);
|
|
3317
3428
|
}
|
|
3318
3429
|
}
|
|
3319
3430
|
|
|
3320
|
-
@media (hover:
|
|
3431
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3321
3432
|
.seed-checkmark__root--variant_square:not(:is(:disabled, [disabled], [data-disabled])):is(:active, [data-active]) {
|
|
3322
3433
|
background: var(--seed-color-bg-transparent-pressed);
|
|
3323
3434
|
}
|
|
@@ -3336,13 +3447,13 @@
|
|
|
3336
3447
|
color: var(--seed-color-fg-disabled);
|
|
3337
3448
|
}
|
|
3338
3449
|
|
|
3339
|
-
@media (hover: hover) {
|
|
3450
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3340
3451
|
.seed-checkmark__root--variant_ghost:not(:is(:disabled, [disabled], [data-disabled])):is(:hover, [data-hover]) {
|
|
3341
3452
|
background: var(--seed-color-bg-transparent-pressed);
|
|
3342
3453
|
}
|
|
3343
3454
|
}
|
|
3344
3455
|
|
|
3345
|
-
@media (hover:
|
|
3456
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3346
3457
|
.seed-checkmark__root--variant_ghost:not(:is(:disabled, [disabled], [data-disabled])):is(:active, [data-active]) {
|
|
3347
3458
|
background: var(--seed-color-bg-transparent-pressed);
|
|
3348
3459
|
}
|
|
@@ -3374,13 +3485,13 @@
|
|
|
3374
3485
|
background: var(--seed-color-bg-neutral-inverted);
|
|
3375
3486
|
}
|
|
3376
3487
|
|
|
3377
|
-
@media (hover: hover) {
|
|
3488
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3378
3489
|
.seed-checkmark__root--variant_square-tone_neutral:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, :indeterminate, [data-checked], [data-indeterminate]):is(:hover, [data-hover]) {
|
|
3379
3490
|
background: var(--seed-color-bg-neutral-inverted-pressed);
|
|
3380
3491
|
}
|
|
3381
3492
|
}
|
|
3382
3493
|
|
|
3383
|
-
@media (hover:
|
|
3494
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3384
3495
|
.seed-checkmark__root--variant_square-tone_neutral:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, :indeterminate, [data-checked], [data-indeterminate]):is(:active, [data-active]) {
|
|
3385
3496
|
background: var(--seed-color-bg-neutral-inverted-pressed);
|
|
3386
3497
|
}
|
|
@@ -3394,13 +3505,13 @@
|
|
|
3394
3505
|
background: var(--seed-color-bg-brand-solid);
|
|
3395
3506
|
}
|
|
3396
3507
|
|
|
3397
|
-
@media (hover: hover) {
|
|
3508
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3398
3509
|
.seed-checkmark__root--variant_square-tone_brand:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, :indeterminate, [data-checked], [data-indeterminate]):is(:hover, [data-hover]) {
|
|
3399
3510
|
background: var(--seed-color-bg-brand-solid-pressed);
|
|
3400
3511
|
}
|
|
3401
3512
|
}
|
|
3402
3513
|
|
|
3403
|
-
@media (hover:
|
|
3514
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3404
3515
|
.seed-checkmark__root--variant_square-tone_brand:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, :indeterminate, [data-checked], [data-indeterminate]):is(:active, [data-active]) {
|
|
3405
3516
|
background: var(--seed-color-bg-brand-solid-pressed);
|
|
3406
3517
|
}
|
|
@@ -3410,13 +3521,13 @@
|
|
|
3410
3521
|
color: var(--seed-color-palette-static-white);
|
|
3411
3522
|
}
|
|
3412
3523
|
|
|
3413
|
-
@media (hover: hover) {
|
|
3524
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3414
3525
|
.seed-checkmark__root--variant_ghost-tone_neutral:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, :indeterminate, [data-checked], [data-indeterminate]):is(:hover, [data-hover]) {
|
|
3415
3526
|
background: var(--seed-color-palette-gray-200);
|
|
3416
3527
|
}
|
|
3417
3528
|
}
|
|
3418
3529
|
|
|
3419
|
-
@media (hover:
|
|
3530
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3420
3531
|
.seed-checkmark__root--variant_ghost-tone_neutral:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, :indeterminate, [data-checked], [data-indeterminate]):is(:active, [data-active]) {
|
|
3421
3532
|
background: var(--seed-color-palette-gray-200);
|
|
3422
3533
|
}
|
|
@@ -3426,13 +3537,13 @@
|
|
|
3426
3537
|
color: var(--seed-color-fg-neutral);
|
|
3427
3538
|
}
|
|
3428
3539
|
|
|
3429
|
-
@media (hover: hover) {
|
|
3540
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3430
3541
|
.seed-checkmark__root--variant_ghost-tone_brand:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, :indeterminate, [data-checked], [data-indeterminate]):is(:hover, [data-hover]) {
|
|
3431
3542
|
background: var(--seed-color-palette-carrot-200);
|
|
3432
3543
|
}
|
|
3433
3544
|
}
|
|
3434
3545
|
|
|
3435
|
-
@media (hover:
|
|
3546
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3436
3547
|
.seed-checkmark__root--variant_ghost-tone_brand:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, :indeterminate, [data-checked], [data-indeterminate]):is(:active, [data-active]) {
|
|
3437
3548
|
background: var(--seed-color-palette-carrot-200);
|
|
3438
3549
|
}
|
|
@@ -3535,25 +3646,25 @@
|
|
|
3535
3646
|
--seed-icon-color: var(--seed-color-fg-neutral-inverted);
|
|
3536
3647
|
}
|
|
3537
3648
|
|
|
3538
|
-
@media (hover: hover) {
|
|
3649
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3539
3650
|
.seed-chip__root--variant_solid:is(:hover, [data-hover]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
3540
3651
|
background: var(--seed-color-bg-neutral-weak-alpha-pressed);
|
|
3541
3652
|
}
|
|
3542
3653
|
}
|
|
3543
3654
|
|
|
3544
|
-
@media (hover:
|
|
3655
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3545
3656
|
.seed-chip__root--variant_solid:is(:active, [data-active]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
3546
3657
|
background: var(--seed-color-bg-neutral-weak-alpha-pressed);
|
|
3547
3658
|
}
|
|
3548
3659
|
}
|
|
3549
3660
|
|
|
3550
|
-
@media (hover: hover) {
|
|
3661
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3551
3662
|
.seed-chip__root--variant_solid:is(:checked, [data-checked]):is(:hover, [data-hover]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
3552
3663
|
background: var(--seed-color-bg-neutral-inverted-pressed);
|
|
3553
3664
|
}
|
|
3554
3665
|
}
|
|
3555
3666
|
|
|
3556
|
-
@media (hover:
|
|
3667
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3557
3668
|
.seed-chip__root--variant_solid:is(:checked, [data-checked]):is(:active, [data-active]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
3558
3669
|
background: var(--seed-color-bg-neutral-inverted-pressed);
|
|
3559
3670
|
}
|
|
@@ -3581,13 +3692,13 @@
|
|
|
3581
3692
|
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
3582
3693
|
}
|
|
3583
3694
|
|
|
3584
|
-
@media (hover: hover) {
|
|
3695
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3585
3696
|
.seed-chip__root--variant_outlineStrong:is(:hover, [data-hover]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
3586
3697
|
background: var(--seed-color-bg-transparent-pressed);
|
|
3587
3698
|
}
|
|
3588
3699
|
}
|
|
3589
3700
|
|
|
3590
|
-
@media (hover:
|
|
3701
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3591
3702
|
.seed-chip__root--variant_outlineStrong:is(:active, [data-active]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
3592
3703
|
background: var(--seed-color-bg-transparent-pressed);
|
|
3593
3704
|
}
|
|
@@ -3598,13 +3709,13 @@
|
|
|
3598
3709
|
--seed-icon-color: var(--seed-color-fg-neutral-inverted);
|
|
3599
3710
|
}
|
|
3600
3711
|
|
|
3601
|
-
@media (hover: hover) {
|
|
3712
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3602
3713
|
.seed-chip__root--variant_outlineStrong:is(:checked, [data-checked]):is(:hover, [data-hover]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
3603
3714
|
background: var(--seed-color-bg-neutral-inverted-pressed);
|
|
3604
3715
|
}
|
|
3605
3716
|
}
|
|
3606
3717
|
|
|
3607
|
-
@media (hover:
|
|
3718
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3608
3719
|
.seed-chip__root--variant_outlineStrong:is(:checked, [data-checked]):is(:active, [data-active]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
3609
3720
|
background: var(--seed-color-bg-neutral-inverted-pressed);
|
|
3610
3721
|
}
|
|
@@ -3632,13 +3743,13 @@
|
|
|
3632
3743
|
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
3633
3744
|
}
|
|
3634
3745
|
|
|
3635
|
-
@media (hover: hover) {
|
|
3746
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3636
3747
|
.seed-chip__root--variant_outlineWeak:is(:hover, [data-hover]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
3637
3748
|
background: var(--seed-color-bg-transparent-pressed);
|
|
3638
3749
|
}
|
|
3639
3750
|
}
|
|
3640
3751
|
|
|
3641
|
-
@media (hover:
|
|
3752
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3642
3753
|
.seed-chip__root--variant_outlineWeak:is(:active, [data-active]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
3643
3754
|
background: var(--seed-color-bg-transparent-pressed);
|
|
3644
3755
|
}
|
|
@@ -3649,13 +3760,13 @@
|
|
|
3649
3760
|
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-neutral-contrast);
|
|
3650
3761
|
}
|
|
3651
3762
|
|
|
3652
|
-
@media (hover: hover) {
|
|
3763
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3653
3764
|
.seed-chip__root--variant_outlineWeak:is(:checked, [data-checked]):is(:hover, [data-hover]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
3654
3765
|
background: var(--seed-color-bg-neutral-weak-pressed);
|
|
3655
3766
|
}
|
|
3656
3767
|
}
|
|
3657
3768
|
|
|
3658
|
-
@media (hover:
|
|
3769
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3659
3770
|
.seed-chip__root--variant_outlineWeak:is(:checked, [data-checked]):is(:active, [data-active]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
3660
3771
|
background: var(--seed-color-bg-neutral-weak-pressed);
|
|
3661
3772
|
}
|
|
@@ -3833,25 +3944,25 @@
|
|
|
3833
3944
|
color: var(--seed-color-fg-neutral-inverted);
|
|
3834
3945
|
}
|
|
3835
3946
|
|
|
3836
|
-
@media (hover: hover) {
|
|
3947
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3837
3948
|
.seed-chip-tabs__trigger--variant_neutralSolid:is(:hover, [data-hover]) {
|
|
3838
3949
|
background-color: var(--seed-color-bg-neutral-weak-alpha-pressed);
|
|
3839
3950
|
}
|
|
3840
3951
|
}
|
|
3841
3952
|
|
|
3842
|
-
@media (hover:
|
|
3953
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3843
3954
|
.seed-chip-tabs__trigger--variant_neutralSolid:is(:active, [data-active]) {
|
|
3844
3955
|
background-color: var(--seed-color-bg-neutral-weak-alpha-pressed);
|
|
3845
3956
|
}
|
|
3846
3957
|
}
|
|
3847
3958
|
|
|
3848
|
-
@media (hover: hover) {
|
|
3959
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3849
3960
|
.seed-chip-tabs__trigger--variant_neutralSolid:is([aria-selected="true"], [data-selected]):is(:hover, [data-hover]) {
|
|
3850
3961
|
background-color: var(--seed-color-bg-neutral-inverted-pressed);
|
|
3851
3962
|
}
|
|
3852
3963
|
}
|
|
3853
3964
|
|
|
3854
|
-
@media (hover:
|
|
3965
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3855
3966
|
.seed-chip-tabs__trigger--variant_neutralSolid:is([aria-selected="true"], [data-selected]):is(:active, [data-active]) {
|
|
3856
3967
|
background-color: var(--seed-color-bg-neutral-inverted-pressed);
|
|
3857
3968
|
}
|
|
@@ -3879,25 +3990,25 @@
|
|
|
3879
3990
|
border-color: #0000;
|
|
3880
3991
|
}
|
|
3881
3992
|
|
|
3882
|
-
@media (hover: hover) {
|
|
3993
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3883
3994
|
.seed-chip-tabs__trigger--variant_neutralOutline:is(:hover, [data-hover]) {
|
|
3884
3995
|
background-color: var(--seed-color-bg-transparent-pressed);
|
|
3885
3996
|
}
|
|
3886
3997
|
}
|
|
3887
3998
|
|
|
3888
|
-
@media (hover:
|
|
3999
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3889
4000
|
.seed-chip-tabs__trigger--variant_neutralOutline:is(:active, [data-active]) {
|
|
3890
4001
|
background-color: var(--seed-color-bg-transparent-pressed);
|
|
3891
4002
|
}
|
|
3892
4003
|
}
|
|
3893
4004
|
|
|
3894
|
-
@media (hover: hover) {
|
|
4005
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3895
4006
|
.seed-chip-tabs__trigger--variant_neutralOutline:is([aria-selected="true"], [data-selected]):is(:hover, [data-hover]) {
|
|
3896
4007
|
background-color: var(--seed-color-bg-neutral-inverted-pressed);
|
|
3897
4008
|
}
|
|
3898
4009
|
}
|
|
3899
4010
|
|
|
3900
|
-
@media (hover:
|
|
4011
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3901
4012
|
.seed-chip-tabs__trigger--variant_neutralOutline:is([aria-selected="true"], [data-selected]):is(:active, [data-active]) {
|
|
3902
4013
|
background-color: var(--seed-color-bg-neutral-inverted-pressed);
|
|
3903
4014
|
}
|
|
@@ -3923,25 +4034,25 @@
|
|
|
3923
4034
|
color: var(--seed-color-palette-static-white);
|
|
3924
4035
|
}
|
|
3925
4036
|
|
|
3926
|
-
@media (hover: hover) {
|
|
4037
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3927
4038
|
.seed-chip-tabs__trigger--variant_brandSolid:is(:hover, [data-hover]) {
|
|
3928
4039
|
background-color: var(--seed-color-bg-neutral-weak-pressed);
|
|
3929
4040
|
}
|
|
3930
4041
|
}
|
|
3931
4042
|
|
|
3932
|
-
@media (hover:
|
|
4043
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3933
4044
|
.seed-chip-tabs__trigger--variant_brandSolid:is(:active, [data-active]) {
|
|
3934
4045
|
background-color: var(--seed-color-bg-neutral-weak-pressed);
|
|
3935
4046
|
}
|
|
3936
4047
|
}
|
|
3937
4048
|
|
|
3938
|
-
@media (hover: hover) {
|
|
4049
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3939
4050
|
.seed-chip-tabs__trigger--variant_brandSolid:is([aria-selected="true"], [data-selected]):is(:hover, [data-hover]) {
|
|
3940
4051
|
background-color: var(--seed-color-bg-brand-solid-pressed);
|
|
3941
4052
|
}
|
|
3942
4053
|
}
|
|
3943
4054
|
|
|
3944
|
-
@media (hover:
|
|
4055
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
3945
4056
|
.seed-chip-tabs__trigger--variant_brandSolid:is([aria-selected="true"], [data-selected]):is(:active, [data-active]) {
|
|
3946
4057
|
background-color: var(--seed-color-bg-brand-solid-pressed);
|
|
3947
4058
|
}
|
|
@@ -4070,13 +4181,13 @@
|
|
|
4070
4181
|
--range-color: var(--seed-color-fg-neutral-inverted);
|
|
4071
4182
|
}
|
|
4072
4183
|
|
|
4073
|
-
@media (hover: hover) {
|
|
4184
|
+
@media (hover: hover) and (pointer: fine) {
|
|
4074
4185
|
.seed-contextual-floating-button--variant_solid:is(:hover, [data-hover]) {
|
|
4075
4186
|
background: var(--seed-color-bg-neutral-inverted-pressed);
|
|
4076
4187
|
}
|
|
4077
4188
|
}
|
|
4078
4189
|
|
|
4079
|
-
@media (hover:
|
|
4190
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
4080
4191
|
.seed-contextual-floating-button--variant_solid:is(:active, [data-active]) {
|
|
4081
4192
|
background: var(--seed-color-bg-neutral-inverted-pressed);
|
|
4082
4193
|
}
|
|
@@ -4102,13 +4213,13 @@
|
|
|
4102
4213
|
--range-color: var(--seed-color-fg-neutral);
|
|
4103
4214
|
}
|
|
4104
4215
|
|
|
4105
|
-
@media (hover: hover) {
|
|
4216
|
+
@media (hover: hover) and (pointer: fine) {
|
|
4106
4217
|
.seed-contextual-floating-button--variant_layer:is(:hover, [data-hover]) {
|
|
4107
4218
|
background: var(--seed-color-bg-layer-floating-pressed);
|
|
4108
4219
|
}
|
|
4109
4220
|
}
|
|
4110
4221
|
|
|
4111
|
-
@media (hover:
|
|
4222
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
4112
4223
|
.seed-contextual-floating-button--variant_layer:is(:active, [data-active]) {
|
|
4113
4224
|
background: var(--seed-color-bg-layer-floating-pressed);
|
|
4114
4225
|
}
|
|
@@ -4242,7 +4353,7 @@
|
|
|
4242
4353
|
.seed-dialog__positioner {
|
|
4243
4354
|
overscroll-behavior-y: none;
|
|
4244
4355
|
--dialog-z-index: 2;
|
|
4245
|
-
z-index: calc(var(--dialog-z-index)
|
|
4356
|
+
z-index: calc(var(--dialog-z-index) + var(--layer-index, 0));
|
|
4246
4357
|
justify-content: center;
|
|
4247
4358
|
align-items: center;
|
|
4248
4359
|
display: flex;
|
|
@@ -4252,7 +4363,7 @@
|
|
|
4252
4363
|
|
|
4253
4364
|
.seed-dialog__backdrop {
|
|
4254
4365
|
background: var(--seed-color-bg-overlay);
|
|
4255
|
-
z-index: calc(var(--dialog-z-index)
|
|
4366
|
+
z-index: calc(var(--dialog-z-index) + var(--layer-index, 0));
|
|
4256
4367
|
position: fixed;
|
|
4257
4368
|
inset: 0;
|
|
4258
4369
|
}
|
|
@@ -4260,7 +4371,7 @@
|
|
|
4260
4371
|
.seed-dialog__content {
|
|
4261
4372
|
box-sizing: border-box;
|
|
4262
4373
|
word-break: break-all;
|
|
4263
|
-
z-index: calc(var(--dialog-z-index)
|
|
4374
|
+
z-index: calc(var(--dialog-z-index) + var(--layer-index, 0));
|
|
4264
4375
|
background: var(--seed-color-bg-layer-floating);
|
|
4265
4376
|
max-width: 272px;
|
|
4266
4377
|
margin: auto var(--seed-dimension-x8);
|
|
@@ -4352,7 +4463,7 @@
|
|
|
4352
4463
|
.seed-extended-action-sheet__positioner {
|
|
4353
4464
|
overscroll-behavior-y: none;
|
|
4354
4465
|
--sheet-z-index: 2;
|
|
4355
|
-
z-index: calc(var(--sheet-z-index)
|
|
4466
|
+
z-index: calc(var(--sheet-z-index) + var(--layer-index, 0));
|
|
4356
4467
|
justify-content: center;
|
|
4357
4468
|
align-items: flex-end;
|
|
4358
4469
|
display: flex;
|
|
@@ -4362,7 +4473,7 @@
|
|
|
4362
4473
|
|
|
4363
4474
|
.seed-extended-action-sheet__backdrop {
|
|
4364
4475
|
background: var(--seed-color-bg-overlay);
|
|
4365
|
-
z-index: calc(var(--sheet-z-index)
|
|
4476
|
+
z-index: calc(var(--sheet-z-index) + var(--layer-index, 0));
|
|
4366
4477
|
position: fixed;
|
|
4367
4478
|
inset: 0;
|
|
4368
4479
|
}
|
|
@@ -4391,7 +4502,7 @@
|
|
|
4391
4502
|
.seed-extended-action-sheet__content {
|
|
4392
4503
|
box-sizing: border-box;
|
|
4393
4504
|
word-break: break-all;
|
|
4394
|
-
z-index: calc(var(--sheet-z-index)
|
|
4505
|
+
z-index: calc(var(--sheet-z-index) + var(--layer-index, 0));
|
|
4395
4506
|
background: var(--seed-color-bg-layer-floating);
|
|
4396
4507
|
padding-inline: var(--seed-dimension-spacing-x-global-gutter);
|
|
4397
4508
|
padding-block: var(--seed-dimension-x4);
|
|
@@ -4663,7 +4774,7 @@
|
|
|
4663
4774
|
--seed-prefix-icon-size: var(--seed-dimension-x4);
|
|
4664
4775
|
--seed-prefix-icon-color: var(--seed-color-fg-neutral-subtle);
|
|
4665
4776
|
--seed-prefix-icon-margin-right: var(--seed-dimension-x1_5);
|
|
4666
|
-
--seed-prefix-icon-margin-top: calc((var(--seed-line-height-t4)
|
|
4777
|
+
--seed-prefix-icon-margin-top: calc((var(--seed-line-height-t4) - var(--seed-dimension-x4)) / 2);
|
|
4667
4778
|
display: flex;
|
|
4668
4779
|
}
|
|
4669
4780
|
|
|
@@ -4675,7 +4786,7 @@
|
|
|
4675
4786
|
--seed-prefix-icon-size: var(--seed-dimension-x4);
|
|
4676
4787
|
--seed-prefix-icon-color: var(--seed-color-fg-critical);
|
|
4677
4788
|
--seed-prefix-icon-margin-right: var(--seed-dimension-x1_5);
|
|
4678
|
-
--seed-prefix-icon-margin-top: calc((var(--seed-line-height-t4)
|
|
4789
|
+
--seed-prefix-icon-margin-top: calc((var(--seed-line-height-t4) - var(--seed-dimension-x4)) / 2);
|
|
4679
4790
|
display: flex;
|
|
4680
4791
|
}
|
|
4681
4792
|
|
|
@@ -4783,13 +4894,13 @@
|
|
|
4783
4894
|
overflow: hidden;
|
|
4784
4895
|
}
|
|
4785
4896
|
|
|
4786
|
-
@media (hover: hover) {
|
|
4897
|
+
@media (hover: hover) and (pointer: fine) {
|
|
4787
4898
|
.seed-floating-action-button__root:is(:hover, [data-hover]) {
|
|
4788
4899
|
background: var(--seed-color-bg-brand-solid-pressed);
|
|
4789
4900
|
}
|
|
4790
4901
|
}
|
|
4791
4902
|
|
|
4792
|
-
@media (hover:
|
|
4903
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
4793
4904
|
.seed-floating-action-button__root:is(:active, [data-active]) {
|
|
4794
4905
|
background: var(--seed-color-bg-brand-solid-pressed);
|
|
4795
4906
|
}
|
|
@@ -4847,7 +4958,7 @@
|
|
|
4847
4958
|
|
|
4848
4959
|
.seed-help-bubble__positioner {
|
|
4849
4960
|
--popover-z-index: 99;
|
|
4850
|
-
z-index: calc(var(--popover-z-index)
|
|
4961
|
+
z-index: calc(var(--popover-z-index) + var(--z-index-offset, 0));
|
|
4851
4962
|
}
|
|
4852
4963
|
|
|
4853
4964
|
.seed-help-bubble__content {
|
|
@@ -4926,10 +5037,10 @@
|
|
|
4926
5037
|
.seed-help-bubble__closeButton {
|
|
4927
5038
|
cursor: pointer;
|
|
4928
5039
|
padding: calc((38px - var(--seed-dimension-x3_5)) / 2);
|
|
4929
|
-
margin-left: calc(var(--seed-dimension-x1)
|
|
5040
|
+
margin-left: calc(var(--seed-dimension-x1) - ((38px - var(--seed-dimension-x3_5)) / 2));
|
|
4930
5041
|
margin-right: calc(-1 * ((38px - var(--seed-dimension-x3_5)) / 2));
|
|
4931
|
-
margin-top: calc(-1 * ((38px - var(--seed-dimension-x3_5)) / 2)
|
|
4932
|
-
margin-bottom: calc(-1 * ((38px - var(--seed-dimension-x3_5)) / 2)
|
|
5042
|
+
margin-top: calc(-1 * ((38px - var(--seed-dimension-x3_5)) / 2) + var(--seed-dimension-x0_5));
|
|
5043
|
+
margin-bottom: calc(-1 * ((38px - var(--seed-dimension-x3_5)) / 2) + var(--seed-dimension-x0_5));
|
|
4933
5044
|
color: var(--seed-color-fg-neutral-inverted);
|
|
4934
5045
|
--seed-icon-size: var(--seed-dimension-x3_5);
|
|
4935
5046
|
--seed-icon-color: var(--seed-color-fg-neutral-inverted);
|
|
@@ -4984,11 +5095,19 @@
|
|
|
4984
5095
|
display: block;
|
|
4985
5096
|
}
|
|
4986
5097
|
|
|
5098
|
+
.seed-image-frame__content:not([data-loading-state="loaded"]) {
|
|
5099
|
+
display: none;
|
|
5100
|
+
}
|
|
5101
|
+
|
|
4987
5102
|
.seed-image-frame__fallback {
|
|
4988
5103
|
width: 100%;
|
|
4989
5104
|
height: 100%;
|
|
4990
5105
|
}
|
|
4991
5106
|
|
|
5107
|
+
.seed-image-frame__fallback[data-loading-state="loaded"] {
|
|
5108
|
+
display: none;
|
|
5109
|
+
}
|
|
5110
|
+
|
|
4992
5111
|
.seed-image-frame__root--stroke_true:after {
|
|
4993
5112
|
content: "";
|
|
4994
5113
|
pointer-events: none;
|
|
@@ -5042,10 +5161,10 @@
|
|
|
5042
5161
|
|
|
5043
5162
|
.seed-image-frame-reaction-button__root:before {
|
|
5044
5163
|
content: "";
|
|
5045
|
-
top: calc((var(--seed-dimension-x10)
|
|
5046
|
-
right: calc((var(--seed-dimension-x10)
|
|
5047
|
-
bottom: calc((var(--seed-dimension-x10)
|
|
5048
|
-
left: calc((var(--seed-dimension-x10)
|
|
5164
|
+
top: calc((var(--seed-dimension-x10) - var(--seed-dimension-x6)) / 2 * -1);
|
|
5165
|
+
right: calc((var(--seed-dimension-x10) - var(--seed-dimension-x6)) / 2 * -1);
|
|
5166
|
+
bottom: calc((var(--seed-dimension-x10) - var(--seed-dimension-x6)) / 2 * -1);
|
|
5167
|
+
left: calc((var(--seed-dimension-x10) - var(--seed-dimension-x6)) / 2 * -1);
|
|
5049
5168
|
outline: var(--seed-dimension-x0_5) solid transparent;
|
|
5050
5169
|
outline-offset: calc(var(--seed-dimension-x0_5) * -1);
|
|
5051
5170
|
transition: outline-color var(--seed-duration-d3) var(--seed-timing-function-easing);
|
|
@@ -5096,7 +5215,7 @@
|
|
|
5096
5215
|
padding-block: var(--seed-dimension-x2_5);
|
|
5097
5216
|
--seed-prefix-icon-size: var(--seed-dimension-x4);
|
|
5098
5217
|
--seed-prefix-icon-margin-right: var(--seed-dimension-x2);
|
|
5099
|
-
--seed-prefix-icon-margin-top: calc((var(--seed-dimension-x10)
|
|
5218
|
+
--seed-prefix-icon-margin-top: calc((var(--seed-dimension-x10) - var(--seed-dimension-x4)) * .5 - var(--seed-dimension-x2_5));
|
|
5100
5219
|
--seed-suffix-icon-size: var(--seed-dimension-x4);
|
|
5101
5220
|
--seed-suffix-icon-margin-left: var(--seed-dimension-x4);
|
|
5102
5221
|
--seed-suffix-icon-align-self: center;
|
|
@@ -5153,8 +5272,8 @@
|
|
|
5153
5272
|
.seed-inline-banner__closeButton {
|
|
5154
5273
|
width: var(--seed-dimension-x10);
|
|
5155
5274
|
height: var(--seed-dimension-x10);
|
|
5156
|
-
margin: calc((var(--seed-dimension-x10)
|
|
5157
|
-
margin-left: calc((var(--seed-dimension-x10)
|
|
5275
|
+
margin: calc((var(--seed-dimension-x10) - var(--seed-dimension-x4)) * -.5);
|
|
5276
|
+
margin-left: calc((var(--seed-dimension-x10) - var(--seed-dimension-x4)) * -.5 + var(--seed-dimension-x4));
|
|
5158
5277
|
--seed-suffix-icon-margin-left: initial;
|
|
5159
5278
|
cursor: pointer;
|
|
5160
5279
|
background-color: #0000;
|
|
@@ -5286,13 +5405,13 @@
|
|
|
5286
5405
|
background-color: var(--seed-color-bg-disabled);
|
|
5287
5406
|
}
|
|
5288
5407
|
|
|
5289
|
-
@media (hover: hover) {
|
|
5408
|
+
@media (hover: hover) and (pointer: fine) {
|
|
5290
5409
|
.seed-input-button__button:not([data-disabled]):not([data-readonly]):is(:hover, [data-hover]) {
|
|
5291
5410
|
background-color: var(--seed-color-bg-transparent-pressed);
|
|
5292
5411
|
}
|
|
5293
5412
|
}
|
|
5294
5413
|
|
|
5295
|
-
@media (hover:
|
|
5414
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
5296
5415
|
.seed-input-button__button:not([data-disabled]):not([data-readonly]):is(:active, [data-active]) {
|
|
5297
5416
|
background-color: var(--seed-color-bg-transparent-pressed);
|
|
5298
5417
|
}
|
|
@@ -5582,7 +5701,7 @@
|
|
|
5582
5701
|
inset: 0;
|
|
5583
5702
|
}
|
|
5584
5703
|
|
|
5585
|
-
@media (hover: hover) {
|
|
5704
|
+
@media (hover: hover) and (pointer: fine) {
|
|
5586
5705
|
.seed-list-item__content:is(button, a):not(:is(:disabled, [disabled], [data-disabled])):is(:hover, [data-hover]):before {
|
|
5587
5706
|
background-color: var(--seed-color-bg-transparent-pressed);
|
|
5588
5707
|
left: var(--seed-dimension-x1_5);
|
|
@@ -5591,7 +5710,7 @@
|
|
|
5591
5710
|
}
|
|
5592
5711
|
}
|
|
5593
5712
|
|
|
5594
|
-
@media (hover:
|
|
5713
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
5595
5714
|
.seed-list-item__content:is(button, a):not(:is(:disabled, [disabled], [data-disabled])):is(:active, [data-active]):before {
|
|
5596
5715
|
background-color: var(--seed-color-bg-transparent-pressed);
|
|
5597
5716
|
left: var(--seed-dimension-x1_5);
|
|
@@ -5600,7 +5719,7 @@
|
|
|
5600
5719
|
}
|
|
5601
5720
|
}
|
|
5602
5721
|
|
|
5603
|
-
@media (hover: hover) {
|
|
5722
|
+
@media (hover: hover) and (pointer: fine) {
|
|
5604
5723
|
.seed-list-item__content:not(:is(:disabled, [disabled], [data-disabled]))[data-hover]:before {
|
|
5605
5724
|
background-color: var(--seed-color-bg-transparent-pressed);
|
|
5606
5725
|
left: var(--seed-dimension-x1_5);
|
|
@@ -5609,7 +5728,7 @@
|
|
|
5609
5728
|
}
|
|
5610
5729
|
}
|
|
5611
5730
|
|
|
5612
|
-
@media (hover:
|
|
5731
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
5613
5732
|
.seed-list-item__content:not(:is(:disabled, [disabled], [data-disabled]))[data-active]:before {
|
|
5614
5733
|
background-color: var(--seed-color-bg-transparent-pressed);
|
|
5615
5734
|
left: var(--seed-dimension-x1_5);
|
|
@@ -5645,25 +5764,25 @@
|
|
|
5645
5764
|
background-color: var(--seed-color-bg-brand-weak);
|
|
5646
5765
|
}
|
|
5647
5766
|
|
|
5648
|
-
@media (hover: hover) {
|
|
5767
|
+
@media (hover: hover) and (pointer: fine) {
|
|
5649
5768
|
.seed-list-item__content--highlighted_true:is(button, a):not(:is(:disabled, [disabled], [data-disabled])):is(:hover, [data-hover]):before {
|
|
5650
5769
|
background-color: var(--seed-color-bg-brand-weak-pressed);
|
|
5651
5770
|
}
|
|
5652
5771
|
}
|
|
5653
5772
|
|
|
5654
|
-
@media (hover:
|
|
5773
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
5655
5774
|
.seed-list-item__content--highlighted_true:is(button, a):not(:is(:disabled, [disabled], [data-disabled])):is(:active, [data-active]):before {
|
|
5656
5775
|
background-color: var(--seed-color-bg-brand-weak-pressed);
|
|
5657
5776
|
}
|
|
5658
5777
|
}
|
|
5659
5778
|
|
|
5660
|
-
@media (hover: hover) {
|
|
5779
|
+
@media (hover: hover) and (pointer: fine) {
|
|
5661
5780
|
.seed-list-item__content--highlighted_true:not(:is(:disabled, [disabled], [data-disabled]))[data-hover]:before {
|
|
5662
5781
|
background-color: var(--seed-color-bg-brand-weak-pressed);
|
|
5663
5782
|
}
|
|
5664
5783
|
}
|
|
5665
5784
|
|
|
5666
|
-
@media (hover:
|
|
5785
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
5667
5786
|
.seed-list-item__content--highlighted_true:not(:is(:disabled, [disabled], [data-disabled]))[data-active]:before {
|
|
5668
5787
|
background-color: var(--seed-color-bg-brand-weak-pressed);
|
|
5669
5788
|
}
|
|
@@ -5799,7 +5918,7 @@
|
|
|
5799
5918
|
.seed-menu-sheet__positioner {
|
|
5800
5919
|
overscroll-behavior-y: none;
|
|
5801
5920
|
--sheet-z-index: 2;
|
|
5802
|
-
z-index: calc(var(--sheet-z-index)
|
|
5921
|
+
z-index: calc(var(--sheet-z-index) + var(--layer-index, 0));
|
|
5803
5922
|
justify-content: center;
|
|
5804
5923
|
align-items: flex-end;
|
|
5805
5924
|
display: flex;
|
|
@@ -5809,7 +5928,7 @@
|
|
|
5809
5928
|
|
|
5810
5929
|
.seed-menu-sheet__backdrop {
|
|
5811
5930
|
background: var(--seed-color-bg-overlay);
|
|
5812
|
-
z-index: calc(var(--sheet-z-index)
|
|
5931
|
+
z-index: calc(var(--sheet-z-index) + var(--layer-index, 0));
|
|
5813
5932
|
position: fixed;
|
|
5814
5933
|
inset: 0;
|
|
5815
5934
|
}
|
|
@@ -5817,12 +5936,12 @@
|
|
|
5817
5936
|
.seed-menu-sheet__content {
|
|
5818
5937
|
box-sizing: border-box;
|
|
5819
5938
|
word-break: break-all;
|
|
5820
|
-
z-index: calc(var(--sheet-z-index)
|
|
5939
|
+
z-index: calc(var(--sheet-z-index) + var(--layer-index, 0));
|
|
5821
5940
|
background: var(--seed-color-bg-layer-floating);
|
|
5822
5941
|
padding-left: var(--seed-dimension-spacing-x-global-gutter);
|
|
5823
5942
|
padding-right: var(--seed-dimension-spacing-x-global-gutter);
|
|
5824
5943
|
padding-top: var(--seed-dimension-x4);
|
|
5825
|
-
padding-bottom: calc(var(--seed-dimension-x4)
|
|
5944
|
+
padding-bottom: calc(var(--seed-dimension-x4) + var(--seed-safe-area-bottom));
|
|
5826
5945
|
border-top-left-radius: var(--seed-radius-r5);
|
|
5827
5946
|
border-top-right-radius: var(--seed-radius-r5);
|
|
5828
5947
|
flex-direction: column;
|
|
@@ -5898,13 +6017,13 @@
|
|
|
5898
6017
|
display: flex;
|
|
5899
6018
|
}
|
|
5900
6019
|
|
|
5901
|
-
@media (hover: hover) {
|
|
6020
|
+
@media (hover: hover) and (pointer: fine) {
|
|
5902
6021
|
.seed-menu-sheet__closeButton:is(:hover, [data-hover]) {
|
|
5903
6022
|
background-color: var(--seed-color-bg-neutral-weak-pressed);
|
|
5904
6023
|
}
|
|
5905
6024
|
}
|
|
5906
6025
|
|
|
5907
|
-
@media (hover:
|
|
6026
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
5908
6027
|
.seed-menu-sheet__closeButton:is(:active, [data-active]) {
|
|
5909
6028
|
background-color: var(--seed-color-bg-neutral-weak-pressed);
|
|
5910
6029
|
}
|
|
@@ -5978,13 +6097,13 @@
|
|
|
5978
6097
|
display: flex;
|
|
5979
6098
|
}
|
|
5980
6099
|
|
|
5981
|
-
@media (hover: hover) {
|
|
6100
|
+
@media (hover: hover) and (pointer: fine) {
|
|
5982
6101
|
.seed-menu-sheet-item__root:is(:hover, [data-hover]) {
|
|
5983
6102
|
background-color: var(--seed-color-bg-neutral-weak-pressed);
|
|
5984
6103
|
}
|
|
5985
6104
|
}
|
|
5986
6105
|
|
|
5987
|
-
@media (hover:
|
|
6106
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
5988
6107
|
.seed-menu-sheet-item__root:is(:active, [data-active]) {
|
|
5989
6108
|
background-color: var(--seed-color-bg-neutral-weak-pressed);
|
|
5990
6109
|
}
|
|
@@ -6144,7 +6263,7 @@
|
|
|
6144
6263
|
padding-bottom: var(--seed-dimension-x2_5);
|
|
6145
6264
|
--seed-prefix-icon-size: var(--seed-dimension-x4);
|
|
6146
6265
|
--seed-prefix-icon-margin-right: var(--seed-dimension-x2);
|
|
6147
|
-
--seed-prefix-icon-margin-top: calc((var(--seed-dimension-x10)
|
|
6266
|
+
--seed-prefix-icon-margin-top: calc((var(--seed-dimension-x10) - var(--seed-dimension-x4)) * .5 - var(--seed-dimension-x2_5));
|
|
6148
6267
|
--seed-suffix-icon-size: var(--seed-dimension-x4);
|
|
6149
6268
|
--seed-suffix-icon-margin-left: var(--seed-dimension-x2);
|
|
6150
6269
|
--seed-suffix-icon-align-self: center;
|
|
@@ -6199,8 +6318,8 @@
|
|
|
6199
6318
|
|
|
6200
6319
|
.seed-page-banner__button {
|
|
6201
6320
|
cursor: pointer;
|
|
6202
|
-
margin: calc((var(--seed-dimension-x10)
|
|
6203
|
-
padding: calc((var(--seed-dimension-x10)
|
|
6321
|
+
margin: calc((var(--seed-dimension-x10) - var(--seed-line-height-t3)) * .5 * -1);
|
|
6322
|
+
padding: calc((var(--seed-dimension-x10) - var(--seed-line-height-t3)) * .5);
|
|
6204
6323
|
font-family: inherit;
|
|
6205
6324
|
font-size: var(--seed-font-size-t3);
|
|
6206
6325
|
line-height: var(--seed-line-height-t3);
|
|
@@ -6223,8 +6342,8 @@
|
|
|
6223
6342
|
.seed-page-banner__closeButton {
|
|
6224
6343
|
width: var(--seed-dimension-x10);
|
|
6225
6344
|
height: var(--seed-dimension-x10);
|
|
6226
|
-
margin: calc((var(--seed-dimension-x10)
|
|
6227
|
-
margin-left: calc((var(--seed-dimension-x10)
|
|
6345
|
+
margin: calc((var(--seed-dimension-x10) - var(--seed-dimension-x4)) * -.5);
|
|
6346
|
+
margin-left: calc((var(--seed-dimension-x10) - var(--seed-dimension-x4)) * -.5 + var(--seed-dimension-x2));
|
|
6228
6347
|
--seed-suffix-icon-margin-left: initial;
|
|
6229
6348
|
cursor: pointer;
|
|
6230
6349
|
border-radius: var(--seed-radius-r1);
|
|
@@ -6253,13 +6372,13 @@
|
|
|
6253
6372
|
--seed-suffix-icon-color: var(--seed-color-fg-neutral);
|
|
6254
6373
|
}
|
|
6255
6374
|
|
|
6256
|
-
@media (hover: hover) {
|
|
6375
|
+
@media (hover: hover) and (pointer: fine) {
|
|
6257
6376
|
.seed-page-banner__root--tone_neutral-variant_weak:is(button):is(:hover, [data-hover]) {
|
|
6258
6377
|
background-color: var(--seed-color-bg-neutral-weak-pressed);
|
|
6259
6378
|
}
|
|
6260
6379
|
}
|
|
6261
6380
|
|
|
6262
|
-
@media (hover:
|
|
6381
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
6263
6382
|
.seed-page-banner__root--tone_neutral-variant_weak:is(button):is(:active, [data-active]) {
|
|
6264
6383
|
background-color: var(--seed-color-bg-neutral-weak-pressed);
|
|
6265
6384
|
}
|
|
@@ -6275,13 +6394,13 @@
|
|
|
6275
6394
|
--seed-suffix-icon-color: var(--seed-color-fg-neutral-inverted);
|
|
6276
6395
|
}
|
|
6277
6396
|
|
|
6278
|
-
@media (hover: hover) {
|
|
6397
|
+
@media (hover: hover) and (pointer: fine) {
|
|
6279
6398
|
.seed-page-banner__root--tone_neutral-variant_solid:is(button):is(:hover, [data-hover]) {
|
|
6280
6399
|
background-color: var(--seed-color-bg-neutral-inverted-pressed);
|
|
6281
6400
|
}
|
|
6282
6401
|
}
|
|
6283
6402
|
|
|
6284
|
-
@media (hover:
|
|
6403
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
6285
6404
|
.seed-page-banner__root--tone_neutral-variant_solid:is(button):is(:active, [data-active]) {
|
|
6286
6405
|
background-color: var(--seed-color-bg-neutral-inverted-pressed);
|
|
6287
6406
|
}
|
|
@@ -6297,13 +6416,13 @@
|
|
|
6297
6416
|
--seed-suffix-icon-color: var(--seed-color-fg-informative-contrast);
|
|
6298
6417
|
}
|
|
6299
6418
|
|
|
6300
|
-
@media (hover: hover) {
|
|
6419
|
+
@media (hover: hover) and (pointer: fine) {
|
|
6301
6420
|
.seed-page-banner__root--tone_informative-variant_weak:is(button):is(:hover, [data-hover]) {
|
|
6302
6421
|
background-color: var(--seed-color-bg-informative-weak-pressed);
|
|
6303
6422
|
}
|
|
6304
6423
|
}
|
|
6305
6424
|
|
|
6306
|
-
@media (hover:
|
|
6425
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
6307
6426
|
.seed-page-banner__root--tone_informative-variant_weak:is(button):is(:active, [data-active]) {
|
|
6308
6427
|
background-color: var(--seed-color-bg-informative-weak-pressed);
|
|
6309
6428
|
}
|
|
@@ -6319,13 +6438,13 @@
|
|
|
6319
6438
|
--seed-suffix-icon-color: var(--seed-color-palette-static-white);
|
|
6320
6439
|
}
|
|
6321
6440
|
|
|
6322
|
-
@media (hover: hover) {
|
|
6441
|
+
@media (hover: hover) and (pointer: fine) {
|
|
6323
6442
|
.seed-page-banner__root--tone_informative-variant_solid:is(button):is(:hover, [data-hover]) {
|
|
6324
6443
|
background-color: var(--seed-color-bg-informative-solid-pressed);
|
|
6325
6444
|
}
|
|
6326
6445
|
}
|
|
6327
6446
|
|
|
6328
|
-
@media (hover:
|
|
6447
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
6329
6448
|
.seed-page-banner__root--tone_informative-variant_solid:is(button):is(:active, [data-active]) {
|
|
6330
6449
|
background-color: var(--seed-color-bg-informative-solid-pressed);
|
|
6331
6450
|
}
|
|
@@ -6341,13 +6460,13 @@
|
|
|
6341
6460
|
--seed-suffix-icon-color: var(--seed-color-fg-positive-contrast);
|
|
6342
6461
|
}
|
|
6343
6462
|
|
|
6344
|
-
@media (hover: hover) {
|
|
6463
|
+
@media (hover: hover) and (pointer: fine) {
|
|
6345
6464
|
.seed-page-banner__root--tone_positive-variant_weak:is(button):is(:hover, [data-hover]) {
|
|
6346
6465
|
background-color: var(--seed-color-bg-positive-weak-pressed);
|
|
6347
6466
|
}
|
|
6348
6467
|
}
|
|
6349
6468
|
|
|
6350
|
-
@media (hover:
|
|
6469
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
6351
6470
|
.seed-page-banner__root--tone_positive-variant_weak:is(button):is(:active, [data-active]) {
|
|
6352
6471
|
background-color: var(--seed-color-bg-positive-weak-pressed);
|
|
6353
6472
|
}
|
|
@@ -6363,13 +6482,13 @@
|
|
|
6363
6482
|
--seed-suffix-icon-color: var(--seed-color-palette-static-white);
|
|
6364
6483
|
}
|
|
6365
6484
|
|
|
6366
|
-
@media (hover: hover) {
|
|
6485
|
+
@media (hover: hover) and (pointer: fine) {
|
|
6367
6486
|
.seed-page-banner__root--tone_positive-variant_solid:is(button):is(:hover, [data-hover]) {
|
|
6368
6487
|
background-color: var(--seed-color-bg-positive-solid-pressed);
|
|
6369
6488
|
}
|
|
6370
6489
|
}
|
|
6371
6490
|
|
|
6372
|
-
@media (hover:
|
|
6491
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
6373
6492
|
.seed-page-banner__root--tone_positive-variant_solid:is(button):is(:active, [data-active]) {
|
|
6374
6493
|
background-color: var(--seed-color-bg-positive-solid-pressed);
|
|
6375
6494
|
}
|
|
@@ -6385,13 +6504,13 @@
|
|
|
6385
6504
|
--seed-suffix-icon-color: var(--seed-color-fg-warning-contrast);
|
|
6386
6505
|
}
|
|
6387
6506
|
|
|
6388
|
-
@media (hover: hover) {
|
|
6507
|
+
@media (hover: hover) and (pointer: fine) {
|
|
6389
6508
|
.seed-page-banner__root--tone_warning-variant_weak:is(button):is(:hover, [data-hover]) {
|
|
6390
6509
|
background-color: var(--seed-color-bg-warning-weak-pressed);
|
|
6391
6510
|
}
|
|
6392
6511
|
}
|
|
6393
6512
|
|
|
6394
|
-
@media (hover:
|
|
6513
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
6395
6514
|
.seed-page-banner__root--tone_warning-variant_weak:is(button):is(:active, [data-active]) {
|
|
6396
6515
|
background-color: var(--seed-color-bg-warning-weak-pressed);
|
|
6397
6516
|
}
|
|
@@ -6407,13 +6526,13 @@
|
|
|
6407
6526
|
--seed-suffix-icon-color: var(--seed-color-palette-static-black-alpha-900);
|
|
6408
6527
|
}
|
|
6409
6528
|
|
|
6410
|
-
@media (hover: hover) {
|
|
6529
|
+
@media (hover: hover) and (pointer: fine) {
|
|
6411
6530
|
.seed-page-banner__root--tone_warning-variant_solid:is(button):is(:hover, [data-hover]) {
|
|
6412
6531
|
background-color: var(--seed-color-bg-warning-solid-pressed);
|
|
6413
6532
|
}
|
|
6414
6533
|
}
|
|
6415
6534
|
|
|
6416
|
-
@media (hover:
|
|
6535
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
6417
6536
|
.seed-page-banner__root--tone_warning-variant_solid:is(button):is(:active, [data-active]) {
|
|
6418
6537
|
background-color: var(--seed-color-bg-warning-solid-pressed);
|
|
6419
6538
|
}
|
|
@@ -6429,13 +6548,13 @@
|
|
|
6429
6548
|
--seed-suffix-icon-color: var(--seed-color-fg-critical-contrast);
|
|
6430
6549
|
}
|
|
6431
6550
|
|
|
6432
|
-
@media (hover: hover) {
|
|
6551
|
+
@media (hover: hover) and (pointer: fine) {
|
|
6433
6552
|
.seed-page-banner__root--tone_critical-variant_weak:is(button):is(:hover, [data-hover]) {
|
|
6434
6553
|
background-color: var(--seed-color-bg-critical-weak-pressed);
|
|
6435
6554
|
}
|
|
6436
6555
|
}
|
|
6437
6556
|
|
|
6438
|
-
@media (hover:
|
|
6557
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
6439
6558
|
.seed-page-banner__root--tone_critical-variant_weak:is(button):is(:active, [data-active]) {
|
|
6440
6559
|
background-color: var(--seed-color-bg-critical-weak-pressed);
|
|
6441
6560
|
}
|
|
@@ -6451,13 +6570,13 @@
|
|
|
6451
6570
|
--seed-suffix-icon-color: var(--seed-color-palette-static-white);
|
|
6452
6571
|
}
|
|
6453
6572
|
|
|
6454
|
-
@media (hover: hover) {
|
|
6573
|
+
@media (hover: hover) and (pointer: fine) {
|
|
6455
6574
|
.seed-page-banner__root--tone_critical-variant_solid:is(button):is(:hover, [data-hover]) {
|
|
6456
6575
|
background-color: var(--seed-color-bg-critical-solid-pressed);
|
|
6457
6576
|
}
|
|
6458
6577
|
}
|
|
6459
6578
|
|
|
6460
|
-
@media (hover:
|
|
6579
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
6461
6580
|
.seed-page-banner__root--tone_critical-variant_solid:is(button):is(:active, [data-active]) {
|
|
6462
6581
|
background-color: var(--seed-color-bg-critical-solid-pressed);
|
|
6463
6582
|
}
|
|
@@ -6473,13 +6592,13 @@
|
|
|
6473
6592
|
--seed-suffix-icon-color: var(--seed-color-fg-neutral);
|
|
6474
6593
|
}
|
|
6475
6594
|
|
|
6476
|
-
@media (hover: hover) {
|
|
6595
|
+
@media (hover: hover) and (pointer: fine) {
|
|
6477
6596
|
.seed-page-banner__root--tone_magic-variant_weak:is(button):is(:hover, [data-hover]) {
|
|
6478
6597
|
background-image: linear-gradient(88deg, var(--seed-gradient-glow-magic-pressed));
|
|
6479
6598
|
}
|
|
6480
6599
|
}
|
|
6481
6600
|
|
|
6482
|
-
@media (hover:
|
|
6601
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
6483
6602
|
.seed-page-banner__root--tone_magic-variant_weak:is(button):is(:active, [data-active]) {
|
|
6484
6603
|
background-image: linear-gradient(88deg, var(--seed-gradient-glow-magic-pressed));
|
|
6485
6604
|
}
|
|
@@ -6547,7 +6666,7 @@
|
|
|
6547
6666
|
}
|
|
6548
6667
|
|
|
6549
6668
|
.seed-pull-to-refresh__indicator {
|
|
6550
|
-
transform: translateY(min(calc(var(--ptr-displacement, 0)
|
|
6669
|
+
transform: translateY(min(calc(var(--ptr-displacement, 0) - var(--ptr-size)), 0px));
|
|
6551
6670
|
transition: transform var(--seed-duration-d6);
|
|
6552
6671
|
justify-content: center;
|
|
6553
6672
|
align-items: center;
|
|
@@ -6591,7 +6710,7 @@
|
|
|
6591
6710
|
|
|
6592
6711
|
.seed-radio__root--size_large {
|
|
6593
6712
|
min-height: var(--seed-dimension-x9);
|
|
6594
|
-
--radiomark-margin-top: calc((var(--seed-dimension-x9)
|
|
6713
|
+
--radiomark-margin-top: calc((var(--seed-dimension-x9) - var(--seed-dimension-x6)) / 2);
|
|
6595
6714
|
}
|
|
6596
6715
|
|
|
6597
6716
|
.seed-radio__label--size_large {
|
|
@@ -6602,7 +6721,7 @@
|
|
|
6602
6721
|
|
|
6603
6722
|
.seed-radio__root--size_medium {
|
|
6604
6723
|
min-height: var(--seed-dimension-x8);
|
|
6605
|
-
--radiomark-margin-top: calc((var(--seed-dimension-x8)
|
|
6724
|
+
--radiomark-margin-top: calc((var(--seed-dimension-x8) - var(--seed-dimension-x5)) / 2);
|
|
6606
6725
|
}
|
|
6607
6726
|
|
|
6608
6727
|
.seed-radio__label--size_medium {
|
|
@@ -6634,13 +6753,13 @@
|
|
|
6634
6753
|
position: relative;
|
|
6635
6754
|
}
|
|
6636
6755
|
|
|
6637
|
-
@media (hover: hover) {
|
|
6756
|
+
@media (hover: hover) and (pointer: fine) {
|
|
6638
6757
|
.seed-radiomark__root:not(:is(:disabled, [disabled], [data-disabled])):is(:hover, [data-hover]) {
|
|
6639
6758
|
background-color: var(--seed-color-bg-transparent-pressed);
|
|
6640
6759
|
}
|
|
6641
6760
|
}
|
|
6642
6761
|
|
|
6643
|
-
@media (hover:
|
|
6762
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
6644
6763
|
.seed-radiomark__root:not(:is(:disabled, [disabled], [data-disabled])):is(:active, [data-active]) {
|
|
6645
6764
|
background-color: var(--seed-color-bg-transparent-pressed);
|
|
6646
6765
|
}
|
|
@@ -6682,13 +6801,13 @@
|
|
|
6682
6801
|
background-color: var(--seed-color-bg-neutral-inverted);
|
|
6683
6802
|
}
|
|
6684
6803
|
|
|
6685
|
-
@media (hover: hover) {
|
|
6804
|
+
@media (hover: hover) and (pointer: fine) {
|
|
6686
6805
|
.seed-radiomark__root--tone_neutral:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, [data-checked]):is(:hover, [data-hover]) {
|
|
6687
6806
|
background-color: var(--seed-color-bg-neutral-inverted-pressed);
|
|
6688
6807
|
}
|
|
6689
6808
|
}
|
|
6690
6809
|
|
|
6691
|
-
@media (hover:
|
|
6810
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
6692
6811
|
.seed-radiomark__root--tone_neutral:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, [data-checked]):is(:active, [data-active]) {
|
|
6693
6812
|
background-color: var(--seed-color-bg-neutral-inverted-pressed);
|
|
6694
6813
|
}
|
|
@@ -6702,13 +6821,13 @@
|
|
|
6702
6821
|
background-color: var(--seed-color-bg-brand-solid);
|
|
6703
6822
|
}
|
|
6704
6823
|
|
|
6705
|
-
@media (hover: hover) {
|
|
6824
|
+
@media (hover: hover) and (pointer: fine) {
|
|
6706
6825
|
.seed-radiomark__root--tone_brand:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, [data-checked]):is(:hover, [data-hover]) {
|
|
6707
6826
|
background-color: var(--seed-color-bg-brand-solid-pressed);
|
|
6708
6827
|
}
|
|
6709
6828
|
}
|
|
6710
6829
|
|
|
6711
|
-
@media (hover:
|
|
6830
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
6712
6831
|
.seed-radiomark__root--tone_brand:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, [data-checked]):is(:active, [data-active]) {
|
|
6713
6832
|
background-color: var(--seed-color-bg-brand-solid-pressed);
|
|
6714
6833
|
}
|
|
@@ -6785,13 +6904,13 @@
|
|
|
6785
6904
|
--seed-count-color: var(--seed-color-fg-neutral);
|
|
6786
6905
|
}
|
|
6787
6906
|
|
|
6788
|
-
@media (hover: hover) {
|
|
6907
|
+
@media (hover: hover) and (pointer: fine) {
|
|
6789
6908
|
.seed-reaction-button:is(:hover, [data-hover]) {
|
|
6790
6909
|
background: var(--seed-color-bg-transparent-pressed);
|
|
6791
6910
|
}
|
|
6792
6911
|
}
|
|
6793
6912
|
|
|
6794
|
-
@media (hover:
|
|
6913
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
6795
6914
|
.seed-reaction-button:is(:active, [data-active]) {
|
|
6796
6915
|
background: var(--seed-color-bg-transparent-pressed);
|
|
6797
6916
|
}
|
|
@@ -6805,13 +6924,13 @@
|
|
|
6805
6924
|
--seed-count-color: var(--seed-color-fg-brand);
|
|
6806
6925
|
}
|
|
6807
6926
|
|
|
6808
|
-
@media (hover: hover) {
|
|
6927
|
+
@media (hover: hover) and (pointer: fine) {
|
|
6809
6928
|
.seed-reaction-button:is([aria-pressed="true"], [data-pressed]):is(:hover, [data-hover]) {
|
|
6810
6929
|
background: var(--seed-color-bg-transparent-pressed);
|
|
6811
6930
|
}
|
|
6812
6931
|
}
|
|
6813
6932
|
|
|
6814
|
-
@media (hover:
|
|
6933
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
6815
6934
|
.seed-reaction-button:is([aria-pressed="true"], [data-pressed]):is(:active, [data-active]) {
|
|
6816
6935
|
background: var(--seed-color-bg-transparent-pressed);
|
|
6817
6936
|
}
|
|
@@ -6976,28 +7095,28 @@
|
|
|
6976
7095
|
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-neutral-muted);
|
|
6977
7096
|
}
|
|
6978
7097
|
|
|
6979
|
-
@media (hover: hover) {
|
|
7098
|
+
@media (hover: hover) and (pointer: fine) {
|
|
6980
7099
|
.seed-segmented-control__item:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, [data-checked]):is(:hover, [data-hover]) {
|
|
6981
7100
|
background-color: var(--seed-color-palette-gray-100);
|
|
6982
7101
|
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-neutral-muted);
|
|
6983
7102
|
}
|
|
6984
7103
|
}
|
|
6985
7104
|
|
|
6986
|
-
@media (hover:
|
|
7105
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
6987
7106
|
.seed-segmented-control__item:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, [data-checked]):is(:active, [data-active]) {
|
|
6988
7107
|
background-color: var(--seed-color-palette-gray-100);
|
|
6989
7108
|
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-neutral-muted);
|
|
6990
7109
|
}
|
|
6991
7110
|
}
|
|
6992
7111
|
|
|
6993
|
-
@media (hover: hover) {
|
|
7112
|
+
@media (hover: hover) and (pointer: fine) {
|
|
6994
7113
|
.seed-segmented-control__item:not(:is(:disabled, [disabled], [data-disabled])):not(:is(:checked, [data-checked])):is(:hover, [data-hover]) {
|
|
6995
7114
|
background-color: var(--seed-color-bg-neutral-weak-pressed);
|
|
6996
7115
|
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-neutral-muted);
|
|
6997
7116
|
}
|
|
6998
7117
|
}
|
|
6999
7118
|
|
|
7000
|
-
@media (hover:
|
|
7119
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
7001
7120
|
.seed-segmented-control__item:not(:is(:disabled, [disabled], [data-disabled])):not(:is(:checked, [data-checked])):is(:active, [data-active]) {
|
|
7002
7121
|
background-color: var(--seed-color-bg-neutral-weak-pressed);
|
|
7003
7122
|
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-neutral-muted);
|
|
@@ -7026,13 +7145,13 @@
|
|
|
7026
7145
|
inset: 0;
|
|
7027
7146
|
}
|
|
7028
7147
|
|
|
7029
|
-
@media (hover: hover) {
|
|
7148
|
+
@media (hover: hover) and (pointer: fine) {
|
|
7030
7149
|
.seed-select-box__root:not(:is(:disabled, [disabled], [data-disabled])):is(:hover, [data-hover]) {
|
|
7031
7150
|
background-color: var(--seed-color-bg-transparent-pressed);
|
|
7032
7151
|
}
|
|
7033
7152
|
}
|
|
7034
7153
|
|
|
7035
|
-
@media (hover:
|
|
7154
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
7036
7155
|
.seed-select-box__root:not(:is(:disabled, [disabled], [data-disabled])):is(:active, [data-active]) {
|
|
7037
7156
|
background-color: var(--seed-color-bg-transparent-pressed);
|
|
7038
7157
|
}
|
|
@@ -7172,13 +7291,13 @@
|
|
|
7172
7291
|
inset: 0;
|
|
7173
7292
|
}
|
|
7174
7293
|
|
|
7175
|
-
@media (hover: hover) {
|
|
7294
|
+
@media (hover: hover) and (pointer: fine) {
|
|
7176
7295
|
.seed-selectBoxCheckmark__icon:not(:is(:disabled, [disabled], [data-disabled])):is(:hover, [data-hover]) {
|
|
7177
7296
|
color: var(--seed-color-fg-neutral-subtle);
|
|
7178
7297
|
}
|
|
7179
7298
|
}
|
|
7180
7299
|
|
|
7181
|
-
@media (hover:
|
|
7300
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
7182
7301
|
.seed-selectBoxCheckmark__icon:not(:is(:disabled, [disabled], [data-disabled])):is(:active, [data-active]) {
|
|
7183
7302
|
color: var(--seed-color-fg-neutral-subtle);
|
|
7184
7303
|
}
|
|
@@ -7476,12 +7595,12 @@
|
|
|
7476
7595
|
}
|
|
7477
7596
|
|
|
7478
7597
|
.seed-slider__valueIndicatorArrow[data-dir="ltr"] {
|
|
7479
|
-
left: calc(50% + (var(--thumb-offset)
|
|
7598
|
+
left: calc(50% + (var(--thumb-offset) - var(--indicator-label-offset)));
|
|
7480
7599
|
transform: translateX(-50%);
|
|
7481
7600
|
}
|
|
7482
7601
|
|
|
7483
7602
|
.seed-slider__valueIndicatorArrow[data-dir="rtl"] {
|
|
7484
|
-
right: calc(50% + (var(--thumb-offset)
|
|
7603
|
+
right: calc(50% + (var(--thumb-offset) - var(--indicator-label-offset)));
|
|
7485
7604
|
transform: translateX(50%);
|
|
7486
7605
|
}
|
|
7487
7606
|
|
|
@@ -7702,7 +7821,7 @@
|
|
|
7702
7821
|
z-index: 2147483647;
|
|
7703
7822
|
left: calc(env(safe-area-inset-left, 0px));
|
|
7704
7823
|
right: calc(env(safe-area-inset-right, 0px));
|
|
7705
|
-
bottom: calc(env(safe-area-inset-bottom, 0px)
|
|
7824
|
+
bottom: calc(env(safe-area-inset-bottom, 0px) + var(--snackbar-region-offset, 0px));
|
|
7706
7825
|
padding-left: var(--seed-dimension-x2);
|
|
7707
7826
|
padding-right: var(--seed-dimension-x2);
|
|
7708
7827
|
padding-top: var(--seed-dimension-x2);
|
|
@@ -7743,7 +7862,7 @@
|
|
|
7743
7862
|
.seed-switch__root--size_16 {
|
|
7744
7863
|
min-height: var(--seed-dimension-x6);
|
|
7745
7864
|
gap: var(--seed-dimension-x1_5);
|
|
7746
|
-
--switchmark-margin-top: calc((var(--seed-dimension-x6)
|
|
7865
|
+
--switchmark-margin-top: calc((var(--seed-dimension-x6) - 16px) / 2);
|
|
7747
7866
|
}
|
|
7748
7867
|
|
|
7749
7868
|
.seed-switch__label--size_16 {
|
|
@@ -7755,7 +7874,7 @@
|
|
|
7755
7874
|
.seed-switch__root--size_24 {
|
|
7756
7875
|
min-height: var(--seed-dimension-x6);
|
|
7757
7876
|
gap: var(--seed-dimension-x2);
|
|
7758
|
-
--switchmark-margin-top: calc((var(--seed-dimension-x6)
|
|
7877
|
+
--switchmark-margin-top: calc((var(--seed-dimension-x6) - 24px) / 2);
|
|
7759
7878
|
}
|
|
7760
7879
|
|
|
7761
7880
|
.seed-switch__label--size_24 {
|
|
@@ -7767,7 +7886,7 @@
|
|
|
7767
7886
|
.seed-switch__root--size_32 {
|
|
7768
7887
|
min-height: var(--seed-dimension-x8);
|
|
7769
7888
|
gap: var(--seed-dimension-x2_5);
|
|
7770
|
-
--switchmark-margin-top: calc((var(--seed-dimension-x8)
|
|
7889
|
+
--switchmark-margin-top: calc((var(--seed-dimension-x8) - 32px) / 2);
|
|
7771
7890
|
}
|
|
7772
7891
|
|
|
7773
7892
|
.seed-switch__label--size_32 {
|
|
@@ -7842,7 +7961,7 @@
|
|
|
7842
7961
|
}
|
|
7843
7962
|
|
|
7844
7963
|
.seed-switchmark__thumb--size_16:is(:checked, [data-checked]) {
|
|
7845
|
-
transform: scale(1)translateX(10px);
|
|
7964
|
+
transform: scale(1) translateX(10px);
|
|
7846
7965
|
}
|
|
7847
7966
|
|
|
7848
7967
|
.seed-switchmark__root--size_24 {
|
|
@@ -7857,7 +7976,7 @@
|
|
|
7857
7976
|
}
|
|
7858
7977
|
|
|
7859
7978
|
.seed-switchmark__thumb--size_24:is(:checked, [data-checked]) {
|
|
7860
|
-
transform: scale(1)translateX(14px);
|
|
7979
|
+
transform: scale(1) translateX(14px);
|
|
7861
7980
|
}
|
|
7862
7981
|
|
|
7863
7982
|
.seed-switchmark__root--size_32 {
|
|
@@ -7872,7 +7991,7 @@
|
|
|
7872
7991
|
}
|
|
7873
7992
|
|
|
7874
7993
|
.seed-switchmark__thumb--size_32:is(:checked, [data-checked]) {
|
|
7875
|
-
transform: scale(1)translateX(20px);
|
|
7994
|
+
transform: scale(1) translateX(20px);
|
|
7876
7995
|
}
|
|
7877
7996
|
|
|
7878
7997
|
.seed-tabs__root {
|
|
@@ -7989,8 +8108,8 @@
|
|
|
7989
8108
|
}
|
|
7990
8109
|
|
|
7991
8110
|
.seed-tabs__indicator--triggerLayout_fill {
|
|
7992
|
-
left: calc(var(--indicator-left, 0px)
|
|
7993
|
-
width: calc(var(--indicator-width, 0px)
|
|
8111
|
+
left: calc(var(--indicator-left, 0px) + var(--seed-dimension-spacing-x-global-gutter));
|
|
8112
|
+
width: calc(var(--indicator-width, 0px) - 2 * var(--seed-dimension-spacing-x-global-gutter));
|
|
7994
8113
|
}
|
|
7995
8114
|
|
|
7996
8115
|
.seed-tabs__trigger--triggerLayout_fill {
|
|
@@ -8009,8 +8128,8 @@
|
|
|
8009
8128
|
}
|
|
8010
8129
|
|
|
8011
8130
|
.seed-tabs__indicator--triggerLayout_hug {
|
|
8012
|
-
left: calc(var(--indicator-left, 0px)
|
|
8013
|
-
width: calc(var(--indicator-width, 0px)
|
|
8131
|
+
left: calc(var(--indicator-left, 0px) + 0px);
|
|
8132
|
+
width: calc(var(--indicator-width, 0px) - 2 * 0px);
|
|
8014
8133
|
}
|
|
8015
8134
|
|
|
8016
8135
|
.seed-tabs__trigger--triggerLayout_hug:is([aria-selected="true"], [data-selected])[data-ssr]:after {
|
|
@@ -8878,13 +8997,13 @@
|
|
|
8878
8997
|
--range-color: var(--seed-color-palette-static-white);
|
|
8879
8998
|
}
|
|
8880
8999
|
|
|
8881
|
-
@media (hover: hover) {
|
|
9000
|
+
@media (hover: hover) and (pointer: fine) {
|
|
8882
9001
|
.seed-toggle-button--variant_brandSolid:is(:hover, [data-hover]) {
|
|
8883
9002
|
background: var(--seed-color-bg-brand-solid-pressed);
|
|
8884
9003
|
}
|
|
8885
9004
|
}
|
|
8886
9005
|
|
|
8887
|
-
@media (hover:
|
|
9006
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
8888
9007
|
.seed-toggle-button--variant_brandSolid:is(:active, [data-active]) {
|
|
8889
9008
|
background: var(--seed-color-bg-brand-solid-pressed);
|
|
8890
9009
|
}
|
|
@@ -8899,13 +9018,13 @@
|
|
|
8899
9018
|
--seed-suffix-icon-color: var(--seed-color-fg-neutral);
|
|
8900
9019
|
}
|
|
8901
9020
|
|
|
8902
|
-
@media (hover: hover) {
|
|
9021
|
+
@media (hover: hover) and (pointer: fine) {
|
|
8903
9022
|
.seed-toggle-button--variant_brandSolid:is([aria-pressed="true"], [data-pressed]):is(:hover, [data-hover]) {
|
|
8904
9023
|
background: var(--seed-color-bg-neutral-weak-pressed);
|
|
8905
9024
|
}
|
|
8906
9025
|
}
|
|
8907
9026
|
|
|
8908
|
-
@media (hover:
|
|
9027
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
8909
9028
|
.seed-toggle-button--variant_brandSolid:is([aria-pressed="true"], [data-pressed]):is(:active, [data-active]) {
|
|
8910
9029
|
background: var(--seed-color-bg-neutral-weak-pressed);
|
|
8911
9030
|
}
|
|
@@ -8938,13 +9057,13 @@
|
|
|
8938
9057
|
--range-color: var(--seed-color-fg-neutral);
|
|
8939
9058
|
}
|
|
8940
9059
|
|
|
8941
|
-
@media (hover: hover) {
|
|
9060
|
+
@media (hover: hover) and (pointer: fine) {
|
|
8942
9061
|
.seed-toggle-button--variant_neutralWeak:is(:hover, [data-hover]) {
|
|
8943
9062
|
background: var(--seed-color-bg-neutral-weak-pressed);
|
|
8944
9063
|
}
|
|
8945
9064
|
}
|
|
8946
9065
|
|
|
8947
|
-
@media (hover:
|
|
9066
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
8948
9067
|
.seed-toggle-button--variant_neutralWeak:is(:active, [data-active]) {
|
|
8949
9068
|
background: var(--seed-color-bg-neutral-weak-pressed);
|
|
8950
9069
|
}
|
|
@@ -8959,13 +9078,13 @@
|
|
|
8959
9078
|
--seed-suffix-icon-color: var(--seed-color-fg-neutral);
|
|
8960
9079
|
}
|
|
8961
9080
|
|
|
8962
|
-
@media (hover: hover) {
|
|
9081
|
+
@media (hover: hover) and (pointer: fine) {
|
|
8963
9082
|
.seed-toggle-button--variant_neutralWeak:is([aria-pressed="true"], [data-pressed]):is(:hover, [data-hover]) {
|
|
8964
9083
|
background: var(--seed-color-bg-neutral-weak-pressed);
|
|
8965
9084
|
}
|
|
8966
9085
|
}
|
|
8967
9086
|
|
|
8968
|
-
@media (hover:
|
|
9087
|
+
@media not all and (hover: hover) and (pointer: fine) {
|
|
8969
9088
|
.seed-toggle-button--variant_neutralWeak:is([aria-pressed="true"], [data-pressed]):is(:active, [data-active]) {
|
|
8970
9089
|
background: var(--seed-color-bg-neutral-weak-pressed);
|
|
8971
9090
|
}
|
|
@@ -9022,14 +9141,18 @@
|
|
|
9022
9141
|
@keyframes seed-enter {
|
|
9023
9142
|
from {
|
|
9024
9143
|
opacity: var(--seed-enter-opacity, 1);
|
|
9025
|
-
transform: translate3d(var(--seed-enter-translate-x, 0), var(--seed-enter-translate-y, 0), 0)
|
|
9144
|
+
transform: translate3d(var(--seed-enter-translate-x, 0), var(--seed-enter-translate-y, 0), 0)
|
|
9145
|
+
scale3d(var(--seed-enter-scale, 1), var(--seed-enter-scale, 1), var(--seed-enter-scale, 1))
|
|
9146
|
+
rotate(var(--seed-enter-rotate, 0));
|
|
9026
9147
|
}
|
|
9027
9148
|
}
|
|
9028
9149
|
|
|
9029
9150
|
@keyframes seed-exit {
|
|
9030
9151
|
to {
|
|
9031
9152
|
opacity: var(--seed-exit-opacity, 1);
|
|
9032
|
-
transform: translate3d(var(--seed-exit-translate-x, 0), var(--seed-exit-translate-y, 0), 0)
|
|
9153
|
+
transform: translate3d(var(--seed-exit-translate-x, 0), var(--seed-exit-translate-y, 0), 0)
|
|
9154
|
+
scale3d(var(--seed-exit-scale, 1), var(--seed-exit-scale, 1), var(--seed-exit-scale, 1))
|
|
9155
|
+
rotate(var(--seed-exit-rotate, 0));
|
|
9033
9156
|
}
|
|
9034
9157
|
}
|
|
9035
9158
|
|