@seed-design/css 1.2.5 → 1.2.7
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 +172 -12
- package/all.layered.css +172 -12
- package/all.layered.min.css +1 -1
- package/all.min.css +1 -1
- package/package.json +2 -2
- 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/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/content-placeholder.css +24 -0
- package/recipes/content-placeholder.d.ts +24 -0
- package/recipes/content-placeholder.layered.css +27 -0
- package/recipes/content-placeholder.layered.mjs +53 -0
- package/recipes/content-placeholder.mjs +53 -0
- package/recipes/help-bubble.css +1 -0
- package/recipes/help-bubble.layered.css +1 -0
- package/recipes/image-frame-reaction-button.css +23 -8
- package/recipes/image-frame-reaction-button.d.ts +3 -1
- package/recipes/image-frame-reaction-button.layered.css +25 -8
- package/recipes/image-frame-reaction-button.layered.mjs +22 -4
- package/recipes/image-frame-reaction-button.mjs +22 -4
- package/recipes/image-frame.css +13 -11
- package/recipes/image-frame.d.ts +3 -1
- package/recipes/image-frame.layered.css +9 -4
- package/recipes/image-frame.layered.mjs +22 -4
- package/recipes/image-frame.mjs +22 -4
- 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/content-placeholder.d.ts +28 -0
- package/vars/component/content-placeholder.mjs +27 -0
- package/vars/component/index.d.ts +1 -0
- package/vars/component/index.mjs +1 -0
- package/vars/component/text-input.d.ts +1 -0
- package/vars/component/text-input.mjs +1 -0
- package/recipes/tag-group-tag.css +0 -44
- package/recipes/tag-group-tag.d.ts +0 -30
- package/recipes/tag-group-tag.mjs +0 -41
package/all.css
CHANGED
|
@@ -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;
|
|
@@ -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
|
}
|
|
@@ -3986,6 +4097,32 @@
|
|
|
3986
4097
|
top: 0;
|
|
3987
4098
|
}
|
|
3988
4099
|
|
|
4100
|
+
.seed-content-placeholder__root {
|
|
4101
|
+
box-sizing: border-box;
|
|
4102
|
+
vertical-align: top;
|
|
4103
|
+
background-color: var(--seed-color-palette-gray-200);
|
|
4104
|
+
justify-content: center;
|
|
4105
|
+
align-items: center;
|
|
4106
|
+
width: 100%;
|
|
4107
|
+
height: 100%;
|
|
4108
|
+
display: inline-flex;
|
|
4109
|
+
position: relative;
|
|
4110
|
+
overflow: hidden;
|
|
4111
|
+
}
|
|
4112
|
+
|
|
4113
|
+
.seed-content-placeholder__asset {
|
|
4114
|
+
height: 50%;
|
|
4115
|
+
min-width: var(--seed-dimension-x4);
|
|
4116
|
+
aspect-ratio: 1;
|
|
4117
|
+
width: auto;
|
|
4118
|
+
max-width: 64px;
|
|
4119
|
+
color: var(--seed-color-palette-gray-400);
|
|
4120
|
+
fill: currentColor;
|
|
4121
|
+
stroke: currentColor;
|
|
4122
|
+
object-fit: contain;
|
|
4123
|
+
display: block;
|
|
4124
|
+
}
|
|
4125
|
+
|
|
3989
4126
|
.seed-contextual-floating-button {
|
|
3990
4127
|
box-sizing: border-box;
|
|
3991
4128
|
cursor: pointer;
|
|
@@ -4903,6 +5040,7 @@
|
|
|
4903
5040
|
margin-left: calc(var(--seed-dimension-x1) - ((38px - var(--seed-dimension-x3_5)) / 2));
|
|
4904
5041
|
margin-right: calc(-1 * ((38px - var(--seed-dimension-x3_5)) / 2));
|
|
4905
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));
|
|
4906
5044
|
color: var(--seed-color-fg-neutral-inverted);
|
|
4907
5045
|
--seed-icon-size: var(--seed-dimension-x3_5);
|
|
4908
5046
|
--seed-icon-color: var(--seed-color-fg-neutral-inverted);
|
|
@@ -4943,13 +5081,13 @@
|
|
|
4943
5081
|
overflow: hidden;
|
|
4944
5082
|
}
|
|
4945
5083
|
|
|
4946
|
-
.seed-image-
|
|
5084
|
+
.seed-image-frame__root {
|
|
4947
5085
|
border-radius: inherit;
|
|
4948
5086
|
position: relative;
|
|
4949
5087
|
overflow: hidden;
|
|
4950
5088
|
}
|
|
4951
5089
|
|
|
4952
|
-
.seed-image-
|
|
5090
|
+
.seed-image-frame__content {
|
|
4953
5091
|
object-fit: cover;
|
|
4954
5092
|
border-radius: inherit;
|
|
4955
5093
|
width: 100%;
|
|
@@ -4957,7 +5095,12 @@
|
|
|
4957
5095
|
display: block;
|
|
4958
5096
|
}
|
|
4959
5097
|
|
|
4960
|
-
.seed-image-
|
|
5098
|
+
.seed-image-frame__fallback {
|
|
5099
|
+
width: 100%;
|
|
5100
|
+
height: 100%;
|
|
5101
|
+
}
|
|
5102
|
+
|
|
5103
|
+
.seed-image-frame__root--stroke_true:after {
|
|
4961
5104
|
content: "";
|
|
4962
5105
|
pointer-events: none;
|
|
4963
5106
|
border-radius: inherit;
|
|
@@ -4966,7 +5109,7 @@
|
|
|
4966
5109
|
inset: 0;
|
|
4967
5110
|
}
|
|
4968
5111
|
|
|
4969
|
-
.seed-image-
|
|
5112
|
+
.seed-image-frame__root--rounded_true {
|
|
4970
5113
|
border-radius: var(--seed-radius-r2);
|
|
4971
5114
|
}
|
|
4972
5115
|
|
|
@@ -4994,13 +5137,11 @@
|
|
|
4994
5137
|
display: inline-flex;
|
|
4995
5138
|
}
|
|
4996
5139
|
|
|
4997
|
-
.seed-image-frame-reaction-
|
|
5140
|
+
.seed-image-frame-reaction-button__root {
|
|
4998
5141
|
box-sizing: border-box;
|
|
4999
5142
|
cursor: pointer;
|
|
5000
5143
|
width: var(--seed-dimension-x6);
|
|
5001
5144
|
height: var(--seed-dimension-x6);
|
|
5002
|
-
--seed-icon-size: var(--seed-dimension-x6);
|
|
5003
|
-
--seed-icon-color: var(--seed-color-palette-static-white);
|
|
5004
5145
|
background: none;
|
|
5005
5146
|
border: none;
|
|
5006
5147
|
justify-content: center;
|
|
@@ -5010,7 +5151,7 @@
|
|
|
5010
5151
|
position: relative;
|
|
5011
5152
|
}
|
|
5012
5153
|
|
|
5013
|
-
.seed-image-frame-reaction-
|
|
5154
|
+
.seed-image-frame-reaction-button__root:before {
|
|
5014
5155
|
content: "";
|
|
5015
5156
|
top: calc((var(--seed-dimension-x10) - var(--seed-dimension-x6)) / 2 * -1);
|
|
5016
5157
|
right: calc((var(--seed-dimension-x10) - var(--seed-dimension-x6)) / 2 * -1);
|
|
@@ -5022,18 +5163,37 @@
|
|
|
5022
5163
|
position: absolute;
|
|
5023
5164
|
}
|
|
5024
5165
|
|
|
5025
|
-
.seed-image-frame-reaction-
|
|
5166
|
+
.seed-image-frame-reaction-button__root:is(:focus, [data-focus]) {
|
|
5026
5167
|
outline: none;
|
|
5027
5168
|
}
|
|
5028
5169
|
|
|
5029
|
-
.seed-image-frame-reaction-
|
|
5170
|
+
.seed-image-frame-reaction-button__root:is(:focus-visible, [data-focus-visible]):before {
|
|
5030
5171
|
border-radius: var(--seed-radius-r1);
|
|
5031
5172
|
outline: var(--seed-dimension-x0_5) solid var(--seed-color-stroke-focus-ring);
|
|
5032
5173
|
outline-offset: calc(var(--seed-dimension-x0_5) * -1);
|
|
5033
5174
|
}
|
|
5034
5175
|
|
|
5035
|
-
.seed-image-frame-reaction-
|
|
5036
|
-
|
|
5176
|
+
.seed-image-frame-reaction-button__fillIcon {
|
|
5177
|
+
width: var(--seed-dimension-x6);
|
|
5178
|
+
height: var(--seed-dimension-x6);
|
|
5179
|
+
pointer-events: none;
|
|
5180
|
+
margin: auto;
|
|
5181
|
+
position: absolute;
|
|
5182
|
+
inset: 0;
|
|
5183
|
+
}
|
|
5184
|
+
|
|
5185
|
+
.seed-image-frame-reaction-button__lineIcon {
|
|
5186
|
+
width: var(--seed-dimension-x6);
|
|
5187
|
+
height: var(--seed-dimension-x6);
|
|
5188
|
+
color: var(--seed-color-palette-static-white);
|
|
5189
|
+
pointer-events: none;
|
|
5190
|
+
margin: auto;
|
|
5191
|
+
position: absolute;
|
|
5192
|
+
inset: 0;
|
|
5193
|
+
}
|
|
5194
|
+
|
|
5195
|
+
.seed-image-frame-reaction-button__lineIcon:is([aria-pressed="true"], [data-pressed]) {
|
|
5196
|
+
color: var(--seed-color-bg-transparent);
|
|
5037
5197
|
}
|
|
5038
5198
|
|
|
5039
5199
|
.seed-inline-banner__root {
|
package/all.layered.css
CHANGED
|
@@ -1798,6 +1798,96 @@
|
|
|
1798
1798
|
animation: none !important;
|
|
1799
1799
|
}
|
|
1800
1800
|
|
|
1801
|
+
[data-global-transition-state="enter-active"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
1802
|
+
--seed-enter-translate-x: 0;
|
|
1803
|
+
--seed-enter-translate-y: 0;
|
|
1804
|
+
--seed-enter-opacity: 0;
|
|
1805
|
+
--seed-enter-scale: 1;
|
|
1806
|
+
opacity: 1;
|
|
1807
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
[data-global-transition-state="exit-active"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
1811
|
+
transform: translate3d(calc(var(--swipe-back-displacement, 0) * .15), 0, 0);
|
|
1812
|
+
opacity: calc(1 - var(--swipe-back-displacement-ratio, 0) * 3);
|
|
1813
|
+
--seed-exit-translate-x: 0;
|
|
1814
|
+
--seed-exit-translate-y: 0;
|
|
1815
|
+
--seed-exit-opacity: 0;
|
|
1816
|
+
--seed-exit-scale: 1;
|
|
1817
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) forwards seed-exit;
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
[data-global-transition-state="enter-done"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
1821
|
+
--seed-enter-translate-x: calc(var(--swipe-back-displacement, 0) * .15);
|
|
1822
|
+
--seed-enter-translate-y: 0;
|
|
1823
|
+
--seed-enter-opacity: calc(1 - var(--swipe-back-displacement-ratio, 0) * 3);
|
|
1824
|
+
--seed-enter-scale: 1;
|
|
1825
|
+
opacity: 1;
|
|
1826
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
1827
|
+
}
|
|
1828
|
+
|
|
1829
|
+
[data-swipe-back-state="swiping"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
1830
|
+
transform: translate3d(calc(var(--swipe-back-displacement, 0) * .15), 0, 0);
|
|
1831
|
+
opacity: calc(1 - var(--swipe-back-displacement-ratio, 0) * 3);
|
|
1832
|
+
animation: none;
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1835
|
+
[data-swipe-back-state="canceling"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
1836
|
+
opacity: 1;
|
|
1837
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1838
|
+
animation: none !important;
|
|
1839
|
+
}
|
|
1840
|
+
|
|
1841
|
+
[data-swipe-back-state="completing"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
1842
|
+
opacity: 0;
|
|
1843
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1844
|
+
animation: none !important;
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
[data-global-transition-state="enter-active"][data-top-activity-type="full-screen"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
1848
|
+
opacity: 1;
|
|
1849
|
+
--seed-exit-translate-x: 0;
|
|
1850
|
+
--seed-exit-translate-y: 0;
|
|
1851
|
+
--seed-exit-opacity: 0;
|
|
1852
|
+
--seed-exit-scale: 1;
|
|
1853
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) forwards seed-exit;
|
|
1854
|
+
}
|
|
1855
|
+
|
|
1856
|
+
[data-global-transition-state="exit-active"][data-top-activity-type="full-screen"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
1857
|
+
--seed-enter-translate-x: 0;
|
|
1858
|
+
--seed-enter-translate-y: 0;
|
|
1859
|
+
--seed-enter-opacity: calc(var(--swipe-back-displacement-ratio, 0));
|
|
1860
|
+
--seed-enter-scale: 1;
|
|
1861
|
+
opacity: 1;
|
|
1862
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
[data-global-transition-state="enter-done"][data-top-activity-type="full-screen"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
1866
|
+
opacity: calc(var(--swipe-back-displacement-ratio, 0));
|
|
1867
|
+
--seed-exit-translate-x: 0;
|
|
1868
|
+
--seed-exit-translate-y: 0;
|
|
1869
|
+
--seed-exit-opacity: 0;
|
|
1870
|
+
--seed-exit-scale: 1;
|
|
1871
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) forwards seed-exit;
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1874
|
+
[data-swipe-back-state="swiping"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
1875
|
+
opacity: calc(var(--swipe-back-displacement-ratio, 0));
|
|
1876
|
+
animation: none;
|
|
1877
|
+
}
|
|
1878
|
+
|
|
1879
|
+
[data-swipe-back-state="canceling"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
1880
|
+
opacity: 0;
|
|
1881
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1882
|
+
animation: none !important;
|
|
1883
|
+
}
|
|
1884
|
+
|
|
1885
|
+
[data-swipe-back-state="completing"] .seed-app-bar__custom--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
1886
|
+
opacity: 1;
|
|
1887
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1888
|
+
animation: none !important;
|
|
1889
|
+
}
|
|
1890
|
+
|
|
1801
1891
|
[data-global-transition-state="enter-active"] .seed-app-bar__root--transitionStyle_fadeFromBottomAndroid[data-activity-is-top] {
|
|
1802
1892
|
--seed-enter-translate-x: 0;
|
|
1803
1893
|
--seed-enter-translate-y: 8vh;
|
|
@@ -2515,6 +2605,18 @@
|
|
|
2515
2605
|
--badge-offset: 30px;
|
|
2516
2606
|
}
|
|
2517
2607
|
|
|
2608
|
+
.seed-avatar__root--size_56 {
|
|
2609
|
+
--avatar-size: 56px;
|
|
2610
|
+
--avatar-stroke-width: 1px;
|
|
2611
|
+
--badge-mask-size: 24px;
|
|
2612
|
+
--badge-mask-offset: 34px;
|
|
2613
|
+
}
|
|
2614
|
+
|
|
2615
|
+
.seed-avatar__badge--size_56 {
|
|
2616
|
+
--badge-size: 20px;
|
|
2617
|
+
--badge-offset: 36px;
|
|
2618
|
+
}
|
|
2619
|
+
|
|
2518
2620
|
.seed-avatar__root--size_64 {
|
|
2519
2621
|
--avatar-size: 64px;
|
|
2520
2622
|
--avatar-stroke-width: 1px;
|
|
@@ -2640,6 +2742,15 @@
|
|
|
2640
2742
|
box-shadow: 0 0 0 2px var(--seed-color-bg-layer-default);
|
|
2641
2743
|
}
|
|
2642
2744
|
|
|
2745
|
+
.seed-avatar-stack__item--size_56:not(:first-child) {
|
|
2746
|
+
margin-left: -13px;
|
|
2747
|
+
}
|
|
2748
|
+
|
|
2749
|
+
.seed-avatar-stack__item--size_56 {
|
|
2750
|
+
clip-path: inset(-3px);
|
|
2751
|
+
box-shadow: 0 0 0 3px var(--seed-color-bg-layer-default);
|
|
2752
|
+
}
|
|
2753
|
+
|
|
2643
2754
|
.seed-avatar-stack__item--size_64:not(:first-child) {
|
|
2644
2755
|
margin-left: -16px;
|
|
2645
2756
|
}
|
|
@@ -4083,6 +4194,32 @@
|
|
|
4083
4194
|
top: 0;
|
|
4084
4195
|
}
|
|
4085
4196
|
|
|
4197
|
+
.seed-content-placeholder__root {
|
|
4198
|
+
box-sizing: border-box;
|
|
4199
|
+
vertical-align: top;
|
|
4200
|
+
background-color: var(--seed-color-palette-gray-200);
|
|
4201
|
+
justify-content: center;
|
|
4202
|
+
align-items: center;
|
|
4203
|
+
width: 100%;
|
|
4204
|
+
height: 100%;
|
|
4205
|
+
display: inline-flex;
|
|
4206
|
+
position: relative;
|
|
4207
|
+
overflow: hidden;
|
|
4208
|
+
}
|
|
4209
|
+
|
|
4210
|
+
.seed-content-placeholder__asset {
|
|
4211
|
+
height: 50%;
|
|
4212
|
+
min-width: var(--seed-dimension-x4);
|
|
4213
|
+
aspect-ratio: 1;
|
|
4214
|
+
width: auto;
|
|
4215
|
+
max-width: 64px;
|
|
4216
|
+
color: var(--seed-color-palette-gray-400);
|
|
4217
|
+
fill: currentColor;
|
|
4218
|
+
stroke: currentColor;
|
|
4219
|
+
object-fit: contain;
|
|
4220
|
+
display: block;
|
|
4221
|
+
}
|
|
4222
|
+
|
|
4086
4223
|
.seed-contextual-floating-button {
|
|
4087
4224
|
box-sizing: border-box;
|
|
4088
4225
|
cursor: pointer;
|
|
@@ -5000,6 +5137,7 @@
|
|
|
5000
5137
|
margin-left: calc(var(--seed-dimension-x1) - ((38px - var(--seed-dimension-x3_5)) / 2));
|
|
5001
5138
|
margin-right: calc(-1 * ((38px - var(--seed-dimension-x3_5)) / 2));
|
|
5002
5139
|
margin-top: calc(-1 * ((38px - var(--seed-dimension-x3_5)) / 2) + var(--seed-dimension-x0_5));
|
|
5140
|
+
margin-bottom: calc(-1 * ((38px - var(--seed-dimension-x3_5)) / 2) + var(--seed-dimension-x0_5));
|
|
5003
5141
|
color: var(--seed-color-fg-neutral-inverted);
|
|
5004
5142
|
--seed-icon-size: var(--seed-dimension-x3_5);
|
|
5005
5143
|
--seed-icon-color: var(--seed-color-fg-neutral-inverted);
|
|
@@ -5040,13 +5178,13 @@
|
|
|
5040
5178
|
overflow: hidden;
|
|
5041
5179
|
}
|
|
5042
5180
|
|
|
5043
|
-
.seed-image-
|
|
5181
|
+
.seed-image-frame__root {
|
|
5044
5182
|
border-radius: inherit;
|
|
5045
5183
|
position: relative;
|
|
5046
5184
|
overflow: hidden;
|
|
5047
5185
|
}
|
|
5048
5186
|
|
|
5049
|
-
.seed-image-
|
|
5187
|
+
.seed-image-frame__content {
|
|
5050
5188
|
object-fit: cover;
|
|
5051
5189
|
border-radius: inherit;
|
|
5052
5190
|
width: 100%;
|
|
@@ -5054,7 +5192,12 @@
|
|
|
5054
5192
|
display: block;
|
|
5055
5193
|
}
|
|
5056
5194
|
|
|
5057
|
-
.seed-image-
|
|
5195
|
+
.seed-image-frame__fallback {
|
|
5196
|
+
width: 100%;
|
|
5197
|
+
height: 100%;
|
|
5198
|
+
}
|
|
5199
|
+
|
|
5200
|
+
.seed-image-frame__root--stroke_true:after {
|
|
5058
5201
|
content: "";
|
|
5059
5202
|
pointer-events: none;
|
|
5060
5203
|
border-radius: inherit;
|
|
@@ -5063,7 +5206,7 @@
|
|
|
5063
5206
|
inset: 0;
|
|
5064
5207
|
}
|
|
5065
5208
|
|
|
5066
|
-
.seed-image-
|
|
5209
|
+
.seed-image-frame__root--rounded_true {
|
|
5067
5210
|
border-radius: var(--seed-radius-r2);
|
|
5068
5211
|
}
|
|
5069
5212
|
|
|
@@ -5091,13 +5234,11 @@
|
|
|
5091
5234
|
display: inline-flex;
|
|
5092
5235
|
}
|
|
5093
5236
|
|
|
5094
|
-
.seed-image-frame-reaction-
|
|
5237
|
+
.seed-image-frame-reaction-button__root {
|
|
5095
5238
|
box-sizing: border-box;
|
|
5096
5239
|
cursor: pointer;
|
|
5097
5240
|
width: var(--seed-dimension-x6);
|
|
5098
5241
|
height: var(--seed-dimension-x6);
|
|
5099
|
-
--seed-icon-size: var(--seed-dimension-x6);
|
|
5100
|
-
--seed-icon-color: var(--seed-color-palette-static-white);
|
|
5101
5242
|
background: none;
|
|
5102
5243
|
border: none;
|
|
5103
5244
|
justify-content: center;
|
|
@@ -5107,7 +5248,7 @@
|
|
|
5107
5248
|
position: relative;
|
|
5108
5249
|
}
|
|
5109
5250
|
|
|
5110
|
-
.seed-image-frame-reaction-
|
|
5251
|
+
.seed-image-frame-reaction-button__root:before {
|
|
5111
5252
|
content: "";
|
|
5112
5253
|
top: calc((var(--seed-dimension-x10) - var(--seed-dimension-x6)) / 2 * -1);
|
|
5113
5254
|
right: calc((var(--seed-dimension-x10) - var(--seed-dimension-x6)) / 2 * -1);
|
|
@@ -5119,18 +5260,37 @@
|
|
|
5119
5260
|
position: absolute;
|
|
5120
5261
|
}
|
|
5121
5262
|
|
|
5122
|
-
.seed-image-frame-reaction-
|
|
5263
|
+
.seed-image-frame-reaction-button__root:is(:focus, [data-focus]) {
|
|
5123
5264
|
outline: none;
|
|
5124
5265
|
}
|
|
5125
5266
|
|
|
5126
|
-
.seed-image-frame-reaction-
|
|
5267
|
+
.seed-image-frame-reaction-button__root:is(:focus-visible, [data-focus-visible]):before {
|
|
5127
5268
|
border-radius: var(--seed-radius-r1);
|
|
5128
5269
|
outline: var(--seed-dimension-x0_5) solid var(--seed-color-stroke-focus-ring);
|
|
5129
5270
|
outline-offset: calc(var(--seed-dimension-x0_5) * -1);
|
|
5130
5271
|
}
|
|
5131
5272
|
|
|
5132
|
-
.seed-image-frame-reaction-
|
|
5133
|
-
|
|
5273
|
+
.seed-image-frame-reaction-button__fillIcon {
|
|
5274
|
+
width: var(--seed-dimension-x6);
|
|
5275
|
+
height: var(--seed-dimension-x6);
|
|
5276
|
+
pointer-events: none;
|
|
5277
|
+
margin: auto;
|
|
5278
|
+
position: absolute;
|
|
5279
|
+
inset: 0;
|
|
5280
|
+
}
|
|
5281
|
+
|
|
5282
|
+
.seed-image-frame-reaction-button__lineIcon {
|
|
5283
|
+
width: var(--seed-dimension-x6);
|
|
5284
|
+
height: var(--seed-dimension-x6);
|
|
5285
|
+
color: var(--seed-color-palette-static-white);
|
|
5286
|
+
pointer-events: none;
|
|
5287
|
+
margin: auto;
|
|
5288
|
+
position: absolute;
|
|
5289
|
+
inset: 0;
|
|
5290
|
+
}
|
|
5291
|
+
|
|
5292
|
+
.seed-image-frame-reaction-button__lineIcon:is([aria-pressed="true"], [data-pressed]) {
|
|
5293
|
+
color: var(--seed-color-bg-transparent);
|
|
5134
5294
|
}
|
|
5135
5295
|
|
|
5136
5296
|
.seed-inline-banner__root {
|