@seed-design/css 1.1.7 → 1.1.9-alpha-20251124091756
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 +24 -9
- package/all.min.css +1 -1
- package/package.json +1 -1
- package/recipes/avatar.css +6 -0
- package/recipes/help-bubble.css +4 -0
- package/recipes/list-item.css +22 -13
- package/vars/component/list-item.d.ts +17 -6
- package/vars/component/list-item.mjs +17 -6
package/all.css
CHANGED
|
@@ -2071,8 +2071,10 @@
|
|
|
2071
2071
|
mask-image: url("data:image/svg+xml;utf8,<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"16\" cy=\"16\" r=\"16\" fill=\"white\"/></svg>"), var(--svg-mask-uri);
|
|
2072
2072
|
mask-size: 100% 100%, var(--badge-mask-size) var(--badge-mask-size);
|
|
2073
2073
|
mask-position: 0 0, var(--badge-mask-offset) var(--badge-mask-offset);
|
|
2074
|
+
will-change: transform;
|
|
2074
2075
|
position: absolute;
|
|
2075
2076
|
inset: 0;
|
|
2077
|
+
transform: translateZ(0);
|
|
2076
2078
|
mask-repeat: no-repeat;
|
|
2077
2079
|
mask-composite: subtract;
|
|
2078
2080
|
}
|
|
@@ -2089,8 +2091,10 @@
|
|
|
2089
2091
|
mask-image: url("data:image/svg+xml;utf8,<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"16\" cy=\"16\" r=\"16\" fill=\"white\"/></svg>"), var(--svg-mask-uri);
|
|
2090
2092
|
mask-size: 100% 100%, var(--badge-mask-size) var(--badge-mask-size);
|
|
2091
2093
|
mask-position: 0 0, var(--badge-mask-offset) var(--badge-mask-offset);
|
|
2094
|
+
will-change: transform;
|
|
2092
2095
|
display: block;
|
|
2093
2096
|
overflow: hidden;
|
|
2097
|
+
transform: translateZ(0);
|
|
2094
2098
|
mask-repeat: no-repeat;
|
|
2095
2099
|
mask-composite: subtract;
|
|
2096
2100
|
}
|
|
@@ -2112,10 +2116,12 @@
|
|
|
2112
2116
|
mask-image: url("data:image/svg+xml;utf8,<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"16\" cy=\"16\" r=\"16\" fill=\"white\"/></svg>"), var(--svg-mask-uri);
|
|
2113
2117
|
mask-size: 100% 100%, var(--badge-mask-size) var(--badge-mask-size);
|
|
2114
2118
|
mask-position: 0 0, var(--badge-mask-offset) var(--badge-mask-offset);
|
|
2119
|
+
will-change: transform;
|
|
2115
2120
|
justify-content: center;
|
|
2116
2121
|
align-items: center;
|
|
2117
2122
|
display: flex;
|
|
2118
2123
|
overflow: hidden;
|
|
2124
|
+
transform: translateZ(0);
|
|
2119
2125
|
mask-repeat: no-repeat;
|
|
2120
2126
|
mask-composite: subtract;
|
|
2121
2127
|
}
|
|
@@ -4275,6 +4281,11 @@
|
|
|
4275
4281
|
opacity: 0;
|
|
4276
4282
|
}
|
|
4277
4283
|
|
|
4284
|
+
.seed-help-bubble__positioner {
|
|
4285
|
+
--popover-z-index: 99;
|
|
4286
|
+
z-index: calc(var(--popover-z-index) + var(--z-index-offset, 0));
|
|
4287
|
+
}
|
|
4288
|
+
|
|
4278
4289
|
.seed-help-bubble__content {
|
|
4279
4290
|
background: var(--seed-color-bg-neutral-inverted);
|
|
4280
4291
|
padding-left: var(--seed-dimension-x3);
|
|
@@ -4746,7 +4757,7 @@
|
|
|
4746
4757
|
box-sizing: border-box;
|
|
4747
4758
|
-webkit-font-smoothing: antialiased;
|
|
4748
4759
|
-moz-osx-font-smoothing: grayscale;
|
|
4749
|
-
|
|
4760
|
+
isolation: isolate;
|
|
4750
4761
|
width: 100%;
|
|
4751
4762
|
padding-left: var(--seed-dimension-spacing-x-global-gutter);
|
|
4752
4763
|
padding-right: var(--seed-dimension-spacing-x-global-gutter);
|
|
@@ -4754,9 +4765,6 @@
|
|
|
4754
4765
|
padding-bottom: var(--seed-dimension-x3);
|
|
4755
4766
|
--seed-box-align-items: center;
|
|
4756
4767
|
align-items: var(--seed-box-align-items);
|
|
4757
|
-
transition-property: background-color;
|
|
4758
|
-
transition-duration: var(--seed-duration-color-transition);
|
|
4759
|
-
transition-timing-function: var(--seed-timing-function-easing);
|
|
4760
4768
|
border: none;
|
|
4761
4769
|
font-family: inherit;
|
|
4762
4770
|
display: flex;
|
|
@@ -4800,12 +4808,12 @@
|
|
|
4800
4808
|
.seed-list-item__content {
|
|
4801
4809
|
box-sizing: border-box;
|
|
4802
4810
|
text-align: start;
|
|
4803
|
-
background-color: var(--seed-color-bg-transparent);
|
|
4804
4811
|
--seed-box-gap: var(--seed-dimension-x0_5);
|
|
4805
4812
|
align-items: flex-start;
|
|
4806
4813
|
gap: var(--seed-box-gap);
|
|
4807
4814
|
--seed-box-padding-right: var(--seed-dimension-x2_5);
|
|
4808
4815
|
padding: 0 var(--seed-box-padding-right) 0 0;
|
|
4816
|
+
background-color: #0000;
|
|
4809
4817
|
border: none;
|
|
4810
4818
|
flex-direction: column;
|
|
4811
4819
|
flex-grow: 1;
|
|
@@ -4823,7 +4831,7 @@
|
|
|
4823
4831
|
.seed-list-item__content:before {
|
|
4824
4832
|
content: "";
|
|
4825
4833
|
z-index: -1;
|
|
4826
|
-
transition-property: background-color;
|
|
4834
|
+
transition-property: background-color, left, right, border-radius;
|
|
4827
4835
|
transition-duration: var(--seed-duration-color-transition);
|
|
4828
4836
|
transition-timing-function: var(--seed-timing-function-easing);
|
|
4829
4837
|
position: absolute;
|
|
@@ -4832,6 +4840,9 @@
|
|
|
4832
4840
|
|
|
4833
4841
|
.seed-list-item__content:is(button, a):not(:is(:disabled, [disabled], [data-disabled])):is(:active, [data-active]):before, .seed-list-item__content:not(:is(:disabled, [disabled], [data-disabled]))[data-active]:before {
|
|
4834
4842
|
background-color: var(--seed-color-bg-transparent-pressed);
|
|
4843
|
+
left: var(--seed-dimension-x1_5);
|
|
4844
|
+
right: var(--seed-dimension-x1_5);
|
|
4845
|
+
border-radius: var(--list-item-border-radius, var(--seed-dimension-x2_5));
|
|
4835
4846
|
}
|
|
4836
4847
|
|
|
4837
4848
|
.seed-list-item__title {
|
|
@@ -4854,11 +4865,15 @@
|
|
|
4854
4865
|
}
|
|
4855
4866
|
|
|
4856
4867
|
.seed-list-item__detail:is(:disabled, [disabled], [data-disabled]) {
|
|
4857
|
-
color: var(--seed-color-fg-
|
|
4868
|
+
color: var(--seed-color-fg-disabled);
|
|
4869
|
+
}
|
|
4870
|
+
|
|
4871
|
+
.seed-list-item__content--highlighted_true:before {
|
|
4872
|
+
background-color: var(--seed-color-bg-brand-weak);
|
|
4858
4873
|
}
|
|
4859
4874
|
|
|
4860
|
-
.seed-list-
|
|
4861
|
-
background-color: var(--seed-color-
|
|
4875
|
+
.seed-list-item__content--highlighted_true:is(button, a):not(:is(:disabled, [disabled], [data-disabled])):is(:active, [data-active]):before, .seed-list-item__content--highlighted_true:not(:is(:disabled, [disabled], [data-disabled]))[data-active]:before {
|
|
4876
|
+
background-color: var(--seed-color-bg-brand-weak-pressed);
|
|
4862
4877
|
}
|
|
4863
4878
|
|
|
4864
4879
|
.seed-manner-temp {
|