@seed-design/css 1.2.2 → 1.2.3
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 -23
- package/all.min.css +1 -1
- package/package.json +1 -1
- package/recipes/app-bar.css +1 -1
- package/recipes/aspect-ratio.css +0 -2
- package/recipes/bottom-sheet.css +3 -3
- package/recipes/segmented-control.css +3 -1
- package/recipes/slider.css +16 -15
- package/vars/component/action-button.d.ts +61 -61
- package/vars/component/bottom-sheet.d.ts +3 -3
- package/vars/component/bottom-sheet.mjs +3 -3
- package/vars/component/callout.d.ts +7 -7
- package/vars/component/chip-tab.d.ts +2 -1
- package/vars/component/chip-tab.mjs +2 -1
- package/vars/component/contextual-floating-button.d.ts +2 -2
- package/vars/component/input-button.d.ts +1 -1
- package/vars/component/select-box.d.ts +1 -1
- package/vars/component/slider.d.ts +11 -9
- package/vars/component/slider.mjs +8 -9
- package/vars/component/text-input.d.ts +1 -1
package/all.css
CHANGED
|
@@ -1373,8 +1373,6 @@
|
|
|
1373
1373
|
|
|
1374
1374
|
.seed-aspect-ratio {
|
|
1375
1375
|
--seed-aspect-ratio-padding: 75%;
|
|
1376
|
-
position: relative;
|
|
1377
|
-
overflow: hidden;
|
|
1378
1376
|
}
|
|
1379
1377
|
|
|
1380
1378
|
.seed-aspect-ratio:before {
|
|
@@ -1671,7 +1669,7 @@
|
|
|
1671
1669
|
}
|
|
1672
1670
|
|
|
1673
1671
|
.seed-app-bar__root--tone_layer:before {
|
|
1674
|
-
background
|
|
1672
|
+
background: var(--seed-box-background, var(--seed-color-bg-layer-default));
|
|
1675
1673
|
}
|
|
1676
1674
|
|
|
1677
1675
|
.seed-app-bar__icon--tone_layer {
|
|
@@ -2800,7 +2798,7 @@
|
|
|
2800
2798
|
|
|
2801
2799
|
.seed-bottom-sheet__title--headerAlign_left[data-show-close-button] {
|
|
2802
2800
|
padding-left: var(--seed-dimension-spacing-x-global-gutter);
|
|
2803
|
-
padding-right:
|
|
2801
|
+
padding-right: 56px;
|
|
2804
2802
|
}
|
|
2805
2803
|
|
|
2806
2804
|
.seed-bottom-sheet__header--headerAlign_center {
|
|
@@ -2814,8 +2812,8 @@
|
|
|
2814
2812
|
}
|
|
2815
2813
|
|
|
2816
2814
|
.seed-bottom-sheet__title--headerAlign_center[data-show-close-button] {
|
|
2817
|
-
padding-left:
|
|
2818
|
-
padding-right:
|
|
2815
|
+
padding-left: 56px;
|
|
2816
|
+
padding-right: 56px;
|
|
2819
2817
|
}
|
|
2820
2818
|
|
|
2821
2819
|
.seed-bottom-sheet__backdrop--skipAnimation_false:is([data-state="open"], [data-open])[data-snap-points="false"]:not([data-animation-done="true"]) {
|
|
@@ -6230,7 +6228,7 @@
|
|
|
6230
6228
|
font-size: var(--seed-font-size-t5);
|
|
6231
6229
|
line-height: var(--seed-line-height-t5);
|
|
6232
6230
|
color: var(--seed-color-fg-neutral-subtle);
|
|
6233
|
-
transition: background-color var(--seed-duration-color-transition) var(--seed-timing-function-easing), color var(--seed-duration-color-transition) var(--seed-timing-function-easing);
|
|
6231
|
+
transition: background-color var(--seed-duration-color-transition) var(--seed-timing-function-easing), color var(--seed-duration-color-transition) var(--seed-timing-function-easing), box-shadow var(--seed-duration-color-transition) var(--seed-timing-function-easing);
|
|
6234
6232
|
display: flex;
|
|
6235
6233
|
}
|
|
6236
6234
|
|
|
@@ -6250,10 +6248,12 @@
|
|
|
6250
6248
|
|
|
6251
6249
|
.seed-segmented-control__item:not(:is(:disabled, [disabled], [data-disabled])):is(:checked, [data-checked]):is(:active, [data-active]) {
|
|
6252
6250
|
background-color: var(--seed-color-palette-gray-100);
|
|
6251
|
+
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-neutral-muted);
|
|
6253
6252
|
}
|
|
6254
6253
|
|
|
6255
6254
|
.seed-segmented-control__item:not(:is(:disabled, [disabled], [data-disabled])):not(:is(:checked, [data-checked])):is(:active, [data-active]) {
|
|
6256
6255
|
background-color: var(--seed-color-bg-neutral-weak-pressed);
|
|
6256
|
+
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-neutral-muted);
|
|
6257
6257
|
}
|
|
6258
6258
|
|
|
6259
6259
|
.seed-select-box__root {
|
|
@@ -6592,20 +6592,21 @@
|
|
|
6592
6592
|
.seed-slider__valueIndicatorRoot {
|
|
6593
6593
|
box-sizing: border-box;
|
|
6594
6594
|
background: var(--seed-color-bg-neutral-inverted);
|
|
6595
|
-
padding-left: var(--seed-dimension-
|
|
6596
|
-
padding-right: var(--seed-dimension-
|
|
6597
|
-
padding-top: var(--seed-dimension-
|
|
6598
|
-
padding-bottom: var(--seed-dimension-
|
|
6599
|
-
border-radius: var(--seed-radius-
|
|
6595
|
+
padding-left: var(--seed-dimension-x2);
|
|
6596
|
+
padding-right: var(--seed-dimension-x2);
|
|
6597
|
+
padding-top: var(--seed-dimension-x1);
|
|
6598
|
+
padding-bottom: var(--seed-dimension-x1);
|
|
6599
|
+
border-radius: var(--seed-radius-r1_5);
|
|
6600
6600
|
color: var(--seed-color-fg-neutral-inverted);
|
|
6601
|
-
font-size: var(--seed-font-size-
|
|
6602
|
-
line-height: var(--seed-line-height-
|
|
6601
|
+
font-size: var(--seed-font-size-t3);
|
|
6602
|
+
line-height: var(--seed-line-height-t3);
|
|
6603
6603
|
font-weight: var(--seed-font-weight-medium);
|
|
6604
6604
|
white-space: pre-wrap;
|
|
6605
6605
|
text-align: center;
|
|
6606
|
+
width: max-content;
|
|
6607
|
+
min-width: calc(var(--seed-dimension-x2) * 2 + var(--seed-dimension-x2));
|
|
6606
6608
|
flex-direction: column;
|
|
6607
6609
|
align-items: center;
|
|
6608
|
-
width: max-content;
|
|
6609
6610
|
display: flex;
|
|
6610
6611
|
position: absolute;
|
|
6611
6612
|
top: 50%;
|
|
@@ -6626,7 +6627,7 @@
|
|
|
6626
6627
|
animation-timing-function: var(--seed-timing-function-enter);
|
|
6627
6628
|
animation-duration: var(--seed-duration-d4);
|
|
6628
6629
|
--seed-enter-translate-x: -50%;
|
|
6629
|
-
--seed-enter-translate-y: calc(-100% - var(--seed-dimension-x5) / 2);
|
|
6630
|
+
--seed-enter-translate-y: calc(-100% - var(--seed-dimension-x5) / 2 - .3125rem);
|
|
6630
6631
|
--seed-enter-opacity: 0;
|
|
6631
6632
|
--seed-enter-scale: .9;
|
|
6632
6633
|
}
|
|
@@ -6636,7 +6637,7 @@
|
|
|
6636
6637
|
animation-timing-function: var(--seed-timing-function-enter);
|
|
6637
6638
|
animation-duration: var(--seed-duration-d4);
|
|
6638
6639
|
--seed-enter-translate-x: 50%;
|
|
6639
|
-
--seed-enter-translate-y: calc(-100% - var(--seed-dimension-x5) / 2);
|
|
6640
|
+
--seed-enter-translate-y: calc(-100% - var(--seed-dimension-x5) / 2 - .3125rem);
|
|
6640
6641
|
--seed-enter-opacity: 0;
|
|
6641
6642
|
--seed-enter-scale: .9;
|
|
6642
6643
|
}
|
|
@@ -6646,7 +6647,7 @@
|
|
|
6646
6647
|
animation-timing-function: var(--seed-timing-function-easing);
|
|
6647
6648
|
animation-duration: var(--seed-duration-d4);
|
|
6648
6649
|
--seed-exit-translate-x: -50%;
|
|
6649
|
-
--seed-exit-translate-y: calc(-100% - var(--seed-dimension-x5) / 2);
|
|
6650
|
+
--seed-exit-translate-y: calc(-100% - var(--seed-dimension-x5) / 2 - .3125rem);
|
|
6650
6651
|
--seed-exit-opacity: 0;
|
|
6651
6652
|
--seed-exit-scale: 1;
|
|
6652
6653
|
animation-fill-mode: forwards;
|
|
@@ -6657,7 +6658,7 @@
|
|
|
6657
6658
|
animation-timing-function: var(--seed-timing-function-easing);
|
|
6658
6659
|
animation-duration: var(--seed-duration-d4);
|
|
6659
6660
|
--seed-exit-translate-x: 50%;
|
|
6660
|
-
--seed-exit-translate-y: calc(-100% - var(--seed-dimension-x5) / 2);
|
|
6661
|
+
--seed-exit-translate-y: calc(-100% - var(--seed-dimension-x5) / 2 - .3125rem);
|
|
6661
6662
|
--seed-exit-opacity: 0;
|
|
6662
6663
|
--seed-exit-scale: 1;
|
|
6663
6664
|
animation-fill-mode: forwards;
|
|
@@ -6668,8 +6669,8 @@
|
|
|
6668
6669
|
}
|
|
6669
6670
|
|
|
6670
6671
|
.seed-slider__valueIndicatorArrow {
|
|
6671
|
-
width: var(--seed-dimension-
|
|
6672
|
-
height: var(--seed-dimension-
|
|
6672
|
+
width: var(--seed-dimension-x2);
|
|
6673
|
+
height: var(--seed-dimension-x2);
|
|
6673
6674
|
position: absolute;
|
|
6674
6675
|
top: 100%;
|
|
6675
6676
|
}
|
|
@@ -6686,8 +6687,8 @@
|
|
|
6686
6687
|
|
|
6687
6688
|
.seed-slider__valueIndicatorArrowTip {
|
|
6688
6689
|
fill: var(--seed-color-bg-neutral-inverted);
|
|
6689
|
-
width: var(--seed-dimension-
|
|
6690
|
-
height:
|
|
6690
|
+
width: var(--seed-dimension-x2);
|
|
6691
|
+
height: var(--seed-dimension-x1_5);
|
|
6691
6692
|
display: block;
|
|
6692
6693
|
}
|
|
6693
6694
|
|