@seed-design/css 1.1.7 → 1.1.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 +18 -9
- package/all.min.css +1 -1
- package/package.json +1 -1
- 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
|
@@ -4275,6 +4275,11 @@
|
|
|
4275
4275
|
opacity: 0;
|
|
4276
4276
|
}
|
|
4277
4277
|
|
|
4278
|
+
.seed-help-bubble__positioner {
|
|
4279
|
+
--popover-z-index: 99;
|
|
4280
|
+
z-index: calc(var(--popover-z-index) + var(--z-index-offset, 0));
|
|
4281
|
+
}
|
|
4282
|
+
|
|
4278
4283
|
.seed-help-bubble__content {
|
|
4279
4284
|
background: var(--seed-color-bg-neutral-inverted);
|
|
4280
4285
|
padding-left: var(--seed-dimension-x3);
|
|
@@ -4746,7 +4751,7 @@
|
|
|
4746
4751
|
box-sizing: border-box;
|
|
4747
4752
|
-webkit-font-smoothing: antialiased;
|
|
4748
4753
|
-moz-osx-font-smoothing: grayscale;
|
|
4749
|
-
|
|
4754
|
+
isolation: isolate;
|
|
4750
4755
|
width: 100%;
|
|
4751
4756
|
padding-left: var(--seed-dimension-spacing-x-global-gutter);
|
|
4752
4757
|
padding-right: var(--seed-dimension-spacing-x-global-gutter);
|
|
@@ -4754,9 +4759,6 @@
|
|
|
4754
4759
|
padding-bottom: var(--seed-dimension-x3);
|
|
4755
4760
|
--seed-box-align-items: center;
|
|
4756
4761
|
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
4762
|
border: none;
|
|
4761
4763
|
font-family: inherit;
|
|
4762
4764
|
display: flex;
|
|
@@ -4800,12 +4802,12 @@
|
|
|
4800
4802
|
.seed-list-item__content {
|
|
4801
4803
|
box-sizing: border-box;
|
|
4802
4804
|
text-align: start;
|
|
4803
|
-
background-color: var(--seed-color-bg-transparent);
|
|
4804
4805
|
--seed-box-gap: var(--seed-dimension-x0_5);
|
|
4805
4806
|
align-items: flex-start;
|
|
4806
4807
|
gap: var(--seed-box-gap);
|
|
4807
4808
|
--seed-box-padding-right: var(--seed-dimension-x2_5);
|
|
4808
4809
|
padding: 0 var(--seed-box-padding-right) 0 0;
|
|
4810
|
+
background-color: #0000;
|
|
4809
4811
|
border: none;
|
|
4810
4812
|
flex-direction: column;
|
|
4811
4813
|
flex-grow: 1;
|
|
@@ -4823,7 +4825,7 @@
|
|
|
4823
4825
|
.seed-list-item__content:before {
|
|
4824
4826
|
content: "";
|
|
4825
4827
|
z-index: -1;
|
|
4826
|
-
transition-property: background-color;
|
|
4828
|
+
transition-property: background-color, left, right, border-radius;
|
|
4827
4829
|
transition-duration: var(--seed-duration-color-transition);
|
|
4828
4830
|
transition-timing-function: var(--seed-timing-function-easing);
|
|
4829
4831
|
position: absolute;
|
|
@@ -4832,6 +4834,9 @@
|
|
|
4832
4834
|
|
|
4833
4835
|
.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
4836
|
background-color: var(--seed-color-bg-transparent-pressed);
|
|
4837
|
+
left: var(--seed-dimension-x1_5);
|
|
4838
|
+
right: var(--seed-dimension-x1_5);
|
|
4839
|
+
border-radius: var(--list-item-border-radius, var(--seed-dimension-x2_5));
|
|
4835
4840
|
}
|
|
4836
4841
|
|
|
4837
4842
|
.seed-list-item__title {
|
|
@@ -4854,11 +4859,15 @@
|
|
|
4854
4859
|
}
|
|
4855
4860
|
|
|
4856
4861
|
.seed-list-item__detail:is(:disabled, [disabled], [data-disabled]) {
|
|
4857
|
-
color: var(--seed-color-fg-
|
|
4862
|
+
color: var(--seed-color-fg-disabled);
|
|
4863
|
+
}
|
|
4864
|
+
|
|
4865
|
+
.seed-list-item__content--highlighted_true:before {
|
|
4866
|
+
background-color: var(--seed-color-bg-brand-weak);
|
|
4858
4867
|
}
|
|
4859
4868
|
|
|
4860
|
-
.seed-list-
|
|
4861
|
-
background-color: var(--seed-color-
|
|
4869
|
+
.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 {
|
|
4870
|
+
background-color: var(--seed-color-bg-brand-weak-pressed);
|
|
4862
4871
|
}
|
|
4863
4872
|
|
|
4864
4873
|
.seed-manner-temp {
|