@seed-design/css 1.1.10 → 1.1.13
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 +154 -143
- package/all.min.css +1 -1
- package/base.css +12 -4
- package/base.min.css +1 -1
- package/package.json +1 -1
- package/recipes/action-button.css +6 -6
- package/recipes/badge.css +2 -2
- package/recipes/bottom-sheet.css +34 -32
- package/recipes/bottom-sheet.d.ts +4 -0
- package/recipes/bottom-sheet.mjs +5 -1
- package/recipes/contextual-floating-button.css +1 -1
- package/recipes/dialog.css +45 -45
- package/recipes/dialog.d.ts +4 -1
- package/recipes/dialog.mjs +8 -2
- package/recipes/field-label.css +5 -5
- package/recipes/floating-action-button.css +1 -1
- package/recipes/menu-sheet.css +38 -38
- package/recipes/menu-sheet.d.ts +4 -1
- package/recipes/menu-sheet.mjs +8 -2
- package/recipes/toggle-button.css +2 -2
- package/theming/index.cjs +29 -2
- package/theming/index.mjs +29 -2
- package/vars/component/action-button.d.ts +2 -2
- package/vars/component/action-button.mjs +2 -2
- package/vars/component/contextual-floating-button.d.ts +1 -1
- package/vars/component/contextual-floating-button.mjs +1 -1
- package/vars/component/floating-action-button.d.ts +1 -1
- package/vars/component/floating-action-button.mjs +1 -1
- package/vars/component/radiomark.d.ts +30 -14
- package/vars/component/radiomark.mjs +30 -14
- package/vars/component/toggle-button.d.ts +2 -2
- package/vars/component/toggle-button.mjs +2 -2
- package/vars/index.d.ts +2 -0
- package/vars/shadow.d.ts +3 -0
- package/vars/shadow.mjs +3 -0
- package/vars/vars.d.ts +2 -1
- package/vars/vars.mjs +2 -1
package/all.css
CHANGED
|
@@ -115,10 +115,10 @@
|
|
|
115
115
|
padding-bottom: var(--seed-box-padding-bottom);
|
|
116
116
|
padding-left: var(--seed-box-padding-left);
|
|
117
117
|
padding-right: var(--seed-box-padding-right);
|
|
118
|
-
--seed-box-bleed-bottom:
|
|
119
|
-
--seed-box-bleed-top:
|
|
120
|
-
--seed-box-bleed-left:
|
|
121
|
-
--seed-box-bleed-right:
|
|
118
|
+
--seed-box-bleed-bottom: 0px;
|
|
119
|
+
--seed-box-bleed-top: 0px;
|
|
120
|
+
--seed-box-bleed-left: 0px;
|
|
121
|
+
--seed-box-bleed-right: 0px;
|
|
122
122
|
margin-top: calc(var(--seed-box-bleed-top) * -1);
|
|
123
123
|
margin-bottom: calc(var(--seed-box-bleed-bottom) * -1);
|
|
124
124
|
margin-left: calc(var(--seed-box-bleed-left) * -1);
|
|
@@ -152,6 +152,8 @@
|
|
|
152
152
|
border-bottom-right-radius: var(--seed-box-border-bottom-right-radius);
|
|
153
153
|
border-top-left-radius: var(--seed-box-border-top-left-radius);
|
|
154
154
|
border-top-right-radius: var(--seed-box-border-top-right-radius);
|
|
155
|
+
--seed-box-box-shadow: initial;
|
|
156
|
+
box-shadow: var(--seed-box-box-shadow);
|
|
155
157
|
--seed-box-display: block;
|
|
156
158
|
--seed-box-position: initial;
|
|
157
159
|
display: var(--seed-box-display);
|
|
@@ -505,6 +507,9 @@
|
|
|
505
507
|
--seed-gradient-shimmer-magic: #fff9f500 0%, #fff9f58a 46%, #fff9f58a 54%, #fff9f500 100%;
|
|
506
508
|
--seed-gradient-highlight-magic-pressed: #e14f00 20%, #ae58bf 100%;
|
|
507
509
|
--seed-gradient-highlight-magic: #f60 20%, #d25aca 100%;
|
|
510
|
+
--seed-shadow-s1: 0px 1px 4px 0px #00000014;
|
|
511
|
+
--seed-shadow-s2: 0px 2px 10px 0px #0000001a;
|
|
512
|
+
--seed-shadow-s3: 0px 4px 16px 0px #0000001f;
|
|
508
513
|
}
|
|
509
514
|
|
|
510
515
|
:root[data-seed-color-mode="system"][data-seed-user-color-scheme="dark"], :root[data-seed-color-mode="dark-only"], :root [data-seed-color-mode="dark-only"] {
|
|
@@ -700,6 +705,9 @@
|
|
|
700
705
|
--seed-gradient-shimmer-magic: #fff9f500 0%, #fff9f51a 46%, #fff9f51a 54%, #fff9f500 100%;
|
|
701
706
|
--seed-gradient-highlight-magic-pressed: #ff9e65 20%, #e89bee 100%;
|
|
702
707
|
--seed-gradient-highlight-magic: #f60 20%, #d25aca 100%;
|
|
708
|
+
--seed-shadow-s1: 0px 1px 4px 0px #00000080;
|
|
709
|
+
--seed-shadow-s2: 0px 2px 10px 0px #000000ad;
|
|
710
|
+
--seed-shadow-s3: 0px 4px 16px 0px #000c;
|
|
703
711
|
}
|
|
704
712
|
|
|
705
713
|
.seed-action-button {
|
|
@@ -723,10 +731,10 @@
|
|
|
723
731
|
padding-bottom: var(--seed-box-padding-bottom);
|
|
724
732
|
padding-left: var(--seed-box-padding-left);
|
|
725
733
|
padding-right: var(--seed-box-padding-right);
|
|
726
|
-
--seed-box-bleed-bottom:
|
|
727
|
-
--seed-box-bleed-top:
|
|
728
|
-
--seed-box-bleed-left:
|
|
729
|
-
--seed-box-bleed-right:
|
|
734
|
+
--seed-box-bleed-bottom: 0px;
|
|
735
|
+
--seed-box-bleed-top: 0px;
|
|
736
|
+
--seed-box-bleed-left: 0px;
|
|
737
|
+
--seed-box-bleed-right: 0px;
|
|
730
738
|
margin-top: calc(var(--seed-box-bleed-top) * -1);
|
|
731
739
|
margin-bottom: calc(var(--seed-box-bleed-bottom) * -1);
|
|
732
740
|
margin-left: calc(var(--seed-box-bleed-left) * -1);
|
|
@@ -997,8 +1005,8 @@
|
|
|
997
1005
|
--seed-box-padding-right: var(--seed-dimension-x3_5);
|
|
998
1006
|
--seed-box-padding-top: var(--seed-dimension-x1_5);
|
|
999
1007
|
--seed-box-padding-bottom: var(--seed-dimension-x1_5);
|
|
1000
|
-
font-size: var(--seed-font-size-
|
|
1001
|
-
line-height: var(--seed-line-height-
|
|
1008
|
+
font-size: var(--seed-font-size-t3);
|
|
1009
|
+
line-height: var(--seed-line-height-t3);
|
|
1002
1010
|
}
|
|
1003
1011
|
|
|
1004
1012
|
.seed-action-button--size_xsmall-layout_iconOnly {
|
|
@@ -2398,7 +2406,7 @@
|
|
|
2398
2406
|
}
|
|
2399
2407
|
|
|
2400
2408
|
.seed-badge__root--size_medium {
|
|
2401
|
-
max-width: 7.5rem;
|
|
2409
|
+
max-width: clamp(calc(108px * var(--seed-font-size-limit-min)), 7.5rem, calc(108px * var(--seed-font-size-limit-max)));
|
|
2402
2410
|
min-height: var(--seed-dimension-x5);
|
|
2403
2411
|
padding-left: var(--seed-dimension-x1_5);
|
|
2404
2412
|
padding-right: var(--seed-dimension-x1_5);
|
|
@@ -2410,7 +2418,7 @@
|
|
|
2410
2418
|
}
|
|
2411
2419
|
|
|
2412
2420
|
.seed-badge__root--size_large {
|
|
2413
|
-
max-width: 6.75rem;
|
|
2421
|
+
max-width: clamp(calc(120px * var(--seed-font-size-limit-min)), 6.75rem, calc(120px * var(--seed-font-size-limit-max)));
|
|
2414
2422
|
min-height: var(--seed-dimension-x6);
|
|
2415
2423
|
padding-left: var(--seed-dimension-x2);
|
|
2416
2424
|
padding-right: var(--seed-dimension-x2);
|
|
@@ -2537,18 +2545,6 @@
|
|
|
2537
2545
|
inset: 0;
|
|
2538
2546
|
}
|
|
2539
2547
|
|
|
2540
|
-
.seed-bottom-sheet__backdrop:is([data-state="open"], [data-open])[data-snap-points="false"] {
|
|
2541
|
-
animation-name: fade-in;
|
|
2542
|
-
animation-duration: var(--seed-duration-d6);
|
|
2543
|
-
animation-timing-function: var(--seed-timing-function-enter);
|
|
2544
|
-
}
|
|
2545
|
-
|
|
2546
|
-
.seed-bottom-sheet__backdrop:not(:is([data-state="open"], [data-open]))[data-snap-points="false"] {
|
|
2547
|
-
animation-name: fade-out;
|
|
2548
|
-
animation-duration: var(--seed-duration-d4);
|
|
2549
|
-
animation-timing-function: var(--seed-timing-function-exit);
|
|
2550
|
-
}
|
|
2551
|
-
|
|
2552
2548
|
.seed-bottom-sheet__backdrop[data-snap-points="true"], .seed-bottom-sheet__backdrop:not(:is([data-state="open"], [data-open]))[data-snap-points="true"]:not([data-snap-points-overlay="true"]) {
|
|
2553
2549
|
opacity: 0;
|
|
2554
2550
|
}
|
|
@@ -2557,12 +2553,6 @@
|
|
|
2557
2553
|
opacity: 1;
|
|
2558
2554
|
}
|
|
2559
2555
|
|
|
2560
|
-
.seed-bottom-sheet__backdrop:is([data-state="open"], [data-open])[data-snap-points="true"][data-should-overlay-animate="true"] {
|
|
2561
|
-
animation-name: fade-in;
|
|
2562
|
-
animation-duration: var(--seed-duration-d6);
|
|
2563
|
-
animation-timing-function: var(--seed-timing-function-enter);
|
|
2564
|
-
}
|
|
2565
|
-
|
|
2566
2556
|
.seed-bottom-sheet__content {
|
|
2567
2557
|
box-sizing: border-box;
|
|
2568
2558
|
word-break: break-all;
|
|
@@ -2573,36 +2563,16 @@
|
|
|
2573
2563
|
touch-action: none;
|
|
2574
2564
|
will-change: transform;
|
|
2575
2565
|
transition: transform var(--seed-duration-d6) var(--seed-timing-function-enter-expressive);
|
|
2576
|
-
animation-duration: var(--seed-duration-d6);
|
|
2577
|
-
animation-timing-function: var(--seed-timing-function-enter-expressive);
|
|
2578
2566
|
flex-direction: column;
|
|
2579
2567
|
flex: 1;
|
|
2580
2568
|
display: flex;
|
|
2581
2569
|
position: relative;
|
|
2582
2570
|
}
|
|
2583
2571
|
|
|
2584
|
-
.seed-bottom-sheet__content:is([data-state="open"], [data-open])[data-snap-points="false"] {
|
|
2585
|
-
animation-name: drawer-slide-from-bottom;
|
|
2586
|
-
animation-duration: var(--seed-duration-d6);
|
|
2587
|
-
animation-timing-function: var(--seed-timing-function-enter-expressive);
|
|
2588
|
-
}
|
|
2589
|
-
|
|
2590
|
-
.seed-bottom-sheet__content:not(:is([data-state="open"], [data-open]))[data-snap-points="false"] {
|
|
2591
|
-
animation-name: drawer-slide-to-bottom;
|
|
2592
|
-
animation-duration: var(--seed-duration-d4);
|
|
2593
|
-
animation-timing-function: var(--seed-timing-function-exit);
|
|
2594
|
-
}
|
|
2595
|
-
|
|
2596
2572
|
.seed-bottom-sheet__content[data-snap-points="true"] {
|
|
2597
2573
|
transform: translate3d(0, var(--initial-transform, 100%), 0);
|
|
2598
2574
|
}
|
|
2599
2575
|
|
|
2600
|
-
.seed-bottom-sheet__content:is([data-state="open"], [data-open])[data-delayed-snap-points="true"] {
|
|
2601
|
-
animation-name: drawer-slide-from-bottom;
|
|
2602
|
-
animation-duration: var(--seed-duration-d6);
|
|
2603
|
-
animation-timing-function: var(--seed-timing-function-enter-expressive);
|
|
2604
|
-
}
|
|
2605
|
-
|
|
2606
2576
|
.seed-bottom-sheet__content[data-delayed-snap-points="true"] {
|
|
2607
2577
|
transform: translate3d(0, var(--snap-point-height, 0), 0);
|
|
2608
2578
|
}
|
|
@@ -2705,6 +2675,47 @@
|
|
|
2705
2675
|
padding-right: 50px;
|
|
2706
2676
|
}
|
|
2707
2677
|
|
|
2678
|
+
.seed-bottom-sheet__backdrop--skipAnimation_false:is([data-state="open"], [data-open])[data-snap-points="false"] {
|
|
2679
|
+
animation-name: fade-in;
|
|
2680
|
+
animation-duration: var(--seed-duration-d6);
|
|
2681
|
+
animation-timing-function: var(--seed-timing-function-enter);
|
|
2682
|
+
}
|
|
2683
|
+
|
|
2684
|
+
.seed-bottom-sheet__backdrop--skipAnimation_false:not(:is([data-state="open"], [data-open]))[data-snap-points="false"] {
|
|
2685
|
+
animation-name: fade-out;
|
|
2686
|
+
animation-duration: var(--seed-duration-d4);
|
|
2687
|
+
animation-timing-function: var(--seed-timing-function-exit);
|
|
2688
|
+
}
|
|
2689
|
+
|
|
2690
|
+
.seed-bottom-sheet__backdrop--skipAnimation_false:is([data-state="open"], [data-open])[data-snap-points="true"][data-should-overlay-animate="true"] {
|
|
2691
|
+
animation-name: fade-in;
|
|
2692
|
+
animation-duration: var(--seed-duration-d6);
|
|
2693
|
+
animation-timing-function: var(--seed-timing-function-enter);
|
|
2694
|
+
}
|
|
2695
|
+
|
|
2696
|
+
.seed-bottom-sheet__content--skipAnimation_false {
|
|
2697
|
+
animation-duration: var(--seed-duration-d6);
|
|
2698
|
+
animation-timing-function: var(--seed-timing-function-enter-expressive);
|
|
2699
|
+
}
|
|
2700
|
+
|
|
2701
|
+
.seed-bottom-sheet__content--skipAnimation_false:is([data-state="open"], [data-open])[data-snap-points="false"] {
|
|
2702
|
+
animation-name: drawer-slide-from-bottom;
|
|
2703
|
+
animation-duration: var(--seed-duration-d6);
|
|
2704
|
+
animation-timing-function: var(--seed-timing-function-enter-expressive);
|
|
2705
|
+
}
|
|
2706
|
+
|
|
2707
|
+
.seed-bottom-sheet__content--skipAnimation_false:not(:is([data-state="open"], [data-open]))[data-snap-points="false"] {
|
|
2708
|
+
animation-name: drawer-slide-to-bottom;
|
|
2709
|
+
animation-duration: var(--seed-duration-d4);
|
|
2710
|
+
animation-timing-function: var(--seed-timing-function-exit);
|
|
2711
|
+
}
|
|
2712
|
+
|
|
2713
|
+
.seed-bottom-sheet__content--skipAnimation_false:is([data-state="open"], [data-open])[data-delayed-snap-points="true"] {
|
|
2714
|
+
animation-name: drawer-slide-from-bottom;
|
|
2715
|
+
animation-duration: var(--seed-duration-d6);
|
|
2716
|
+
animation-timing-function: var(--seed-timing-function-enter-expressive);
|
|
2717
|
+
}
|
|
2718
|
+
|
|
2708
2719
|
.seed-bottom-sheet-handle__root {
|
|
2709
2720
|
background-color: var(--seed-color-palette-gray-400);
|
|
2710
2721
|
width: 36px;
|
|
@@ -3524,6 +3535,7 @@
|
|
|
3524
3535
|
|
|
3525
3536
|
.seed-contextual-floating-button {
|
|
3526
3537
|
border-radius: var(--seed-radius-full);
|
|
3538
|
+
box-shadow: var(--seed-shadow-s3);
|
|
3527
3539
|
font-size: var(--seed-font-size-t4);
|
|
3528
3540
|
line-height: var(--seed-line-height-t4);
|
|
3529
3541
|
font-weight: var(--seed-font-weight-medium);
|
|
@@ -3543,7 +3555,6 @@
|
|
|
3543
3555
|
--size: 16px;
|
|
3544
3556
|
--thickness: 2px;
|
|
3545
3557
|
transition: background-color var(--seed-duration-color-transition) var(--seed-timing-function-easing);
|
|
3546
|
-
box-shadow: 0 2px 6px #00000026;
|
|
3547
3558
|
}
|
|
3548
3559
|
|
|
3549
3560
|
.seed-contextual-floating-button--variant_solid {
|
|
@@ -3726,27 +3737,6 @@
|
|
|
3726
3737
|
inset: 0;
|
|
3727
3738
|
}
|
|
3728
3739
|
|
|
3729
|
-
.seed-dialog__backdrop:is([data-state="open"], [data-open]) {
|
|
3730
|
-
animation: seed-enter;
|
|
3731
|
-
animation-timing-function: var(--seed-timing-function-enter);
|
|
3732
|
-
animation-duration: var(--seed-duration-d2);
|
|
3733
|
-
--seed-enter-translate-x: 0;
|
|
3734
|
-
--seed-enter-translate-y: 0;
|
|
3735
|
-
--seed-enter-opacity: 0;
|
|
3736
|
-
--seed-enter-scale: 1;
|
|
3737
|
-
}
|
|
3738
|
-
|
|
3739
|
-
.seed-dialog__backdrop:not(:is([data-state="open"], [data-open])) {
|
|
3740
|
-
animation: seed-exit;
|
|
3741
|
-
animation-timing-function: var(--seed-timing-function-exit);
|
|
3742
|
-
animation-duration: var(--seed-duration-d2);
|
|
3743
|
-
--seed-exit-translate-x: 0;
|
|
3744
|
-
--seed-exit-translate-y: 0;
|
|
3745
|
-
--seed-exit-opacity: 0;
|
|
3746
|
-
--seed-exit-scale: 1;
|
|
3747
|
-
animation-fill-mode: forwards;
|
|
3748
|
-
}
|
|
3749
|
-
|
|
3750
3740
|
.seed-dialog__content {
|
|
3751
3741
|
box-sizing: border-box;
|
|
3752
3742
|
word-break: break-all;
|
|
@@ -3761,27 +3751,6 @@
|
|
|
3761
3751
|
position: relative;
|
|
3762
3752
|
}
|
|
3763
3753
|
|
|
3764
|
-
.seed-dialog__content:is([data-state="open"], [data-open]) {
|
|
3765
|
-
animation: seed-enter;
|
|
3766
|
-
animation-timing-function: var(--seed-timing-function-enter-expressive);
|
|
3767
|
-
animation-duration: var(--seed-duration-d4);
|
|
3768
|
-
--seed-enter-translate-x: 0;
|
|
3769
|
-
--seed-enter-translate-y: 0;
|
|
3770
|
-
--seed-enter-opacity: 0;
|
|
3771
|
-
--seed-enter-scale: 1.3;
|
|
3772
|
-
}
|
|
3773
|
-
|
|
3774
|
-
.seed-dialog__content:not(:is([data-state="open"], [data-open])) {
|
|
3775
|
-
animation: seed-exit;
|
|
3776
|
-
animation-timing-function: var(--seed-timing-function-exit);
|
|
3777
|
-
animation-duration: var(--seed-duration-d2);
|
|
3778
|
-
--seed-exit-translate-x: 0;
|
|
3779
|
-
--seed-exit-translate-y: 0;
|
|
3780
|
-
--seed-exit-opacity: 0;
|
|
3781
|
-
--seed-exit-scale: 1;
|
|
3782
|
-
animation-fill-mode: forwards;
|
|
3783
|
-
}
|
|
3784
|
-
|
|
3785
3754
|
.seed-dialog__header {
|
|
3786
3755
|
padding-left: var(--seed-dimension-x5);
|
|
3787
3756
|
padding-right: var(--seed-dimension-x5);
|
|
@@ -3818,6 +3787,48 @@
|
|
|
3818
3787
|
display: flex;
|
|
3819
3788
|
}
|
|
3820
3789
|
|
|
3790
|
+
.seed-dialog__backdrop--skipAnimation_false:is([data-state="open"], [data-open]) {
|
|
3791
|
+
animation: seed-enter;
|
|
3792
|
+
animation-timing-function: var(--seed-timing-function-enter);
|
|
3793
|
+
animation-duration: var(--seed-duration-d2);
|
|
3794
|
+
--seed-enter-translate-x: 0;
|
|
3795
|
+
--seed-enter-translate-y: 0;
|
|
3796
|
+
--seed-enter-opacity: 0;
|
|
3797
|
+
--seed-enter-scale: 1;
|
|
3798
|
+
}
|
|
3799
|
+
|
|
3800
|
+
.seed-dialog__backdrop--skipAnimation_false:not(:is([data-state="open"], [data-open])) {
|
|
3801
|
+
animation: seed-exit;
|
|
3802
|
+
animation-timing-function: var(--seed-timing-function-exit);
|
|
3803
|
+
animation-duration: var(--seed-duration-d2);
|
|
3804
|
+
--seed-exit-translate-x: 0;
|
|
3805
|
+
--seed-exit-translate-y: 0;
|
|
3806
|
+
--seed-exit-opacity: 0;
|
|
3807
|
+
--seed-exit-scale: 1;
|
|
3808
|
+
animation-fill-mode: forwards;
|
|
3809
|
+
}
|
|
3810
|
+
|
|
3811
|
+
.seed-dialog__content--skipAnimation_false:is([data-state="open"], [data-open]) {
|
|
3812
|
+
animation: seed-enter;
|
|
3813
|
+
animation-timing-function: var(--seed-timing-function-enter-expressive);
|
|
3814
|
+
animation-duration: var(--seed-duration-d4);
|
|
3815
|
+
--seed-enter-translate-x: 0;
|
|
3816
|
+
--seed-enter-translate-y: 0;
|
|
3817
|
+
--seed-enter-opacity: 0;
|
|
3818
|
+
--seed-enter-scale: 1.3;
|
|
3819
|
+
}
|
|
3820
|
+
|
|
3821
|
+
.seed-dialog__content--skipAnimation_false:not(:is([data-state="open"], [data-open])) {
|
|
3822
|
+
animation: seed-exit;
|
|
3823
|
+
animation-timing-function: var(--seed-timing-function-exit);
|
|
3824
|
+
animation-duration: var(--seed-duration-d2);
|
|
3825
|
+
--seed-exit-translate-x: 0;
|
|
3826
|
+
--seed-exit-translate-y: 0;
|
|
3827
|
+
--seed-exit-opacity: 0;
|
|
3828
|
+
--seed-exit-scale: 1;
|
|
3829
|
+
animation-fill-mode: forwards;
|
|
3830
|
+
}
|
|
3831
|
+
|
|
3821
3832
|
.seed-extended-action-sheet__positioner {
|
|
3822
3833
|
overscroll-behavior-y: none;
|
|
3823
3834
|
--sheet-z-index: 2;
|
|
@@ -4188,21 +4199,21 @@
|
|
|
4188
4199
|
|
|
4189
4200
|
.seed-field-label__indicatorText {
|
|
4190
4201
|
vertical-align: bottom;
|
|
4202
|
+
padding-left: clamp(calc(4px * var(--seed-font-size-limit-min)), .25rem, calc(4px * var(--seed-font-size-limit-max)));
|
|
4191
4203
|
color: var(--seed-color-fg-neutral-subtle);
|
|
4192
4204
|
font-size: var(--seed-font-size-t4);
|
|
4193
4205
|
line-height: var(--seed-line-height-t5);
|
|
4194
4206
|
font-weight: var(--seed-font-weight-regular);
|
|
4195
|
-
padding-left: .25rem;
|
|
4196
4207
|
display: inline;
|
|
4197
4208
|
}
|
|
4198
4209
|
|
|
4199
4210
|
.seed-field-label__indicatorIcon {
|
|
4200
4211
|
vertical-align: top;
|
|
4201
|
-
width: .375rem;
|
|
4202
|
-
height: .375rem;
|
|
4212
|
+
width: clamp(calc(6px * var(--seed-font-size-limit-min)), .375rem, calc(6px * var(--seed-font-size-limit-max)));
|
|
4213
|
+
height: clamp(calc(6px * var(--seed-font-size-limit-min)), .375rem, calc(6px * var(--seed-font-size-limit-max)));
|
|
4214
|
+
margin-top: clamp(calc(4px * var(--seed-font-size-limit-min)), .25rem, calc(4px * var(--seed-font-size-limit-max)));
|
|
4215
|
+
margin-left: clamp(calc(2px * var(--seed-font-size-limit-min)), .125rem, calc(2px * var(--seed-font-size-limit-max)));
|
|
4203
4216
|
color: var(--seed-color-fg-critical);
|
|
4204
|
-
margin-top: .25rem;
|
|
4205
|
-
margin-left: .125rem;
|
|
4206
4217
|
display: inline;
|
|
4207
4218
|
}
|
|
4208
4219
|
|
|
@@ -4239,6 +4250,7 @@
|
|
|
4239
4250
|
.seed-floating-action-button__root {
|
|
4240
4251
|
background: var(--seed-color-bg-brand-solid);
|
|
4241
4252
|
border-radius: var(--seed-radius-full);
|
|
4253
|
+
box-shadow: var(--seed-shadow-s3);
|
|
4242
4254
|
color: var(--seed-color-palette-static-white);
|
|
4243
4255
|
font-size: var(--seed-font-size-t5);
|
|
4244
4256
|
line-height: var(--seed-line-height-t5);
|
|
@@ -4246,7 +4258,6 @@
|
|
|
4246
4258
|
transition: background-color var(--seed-duration-color-transition) var(--seed-timing-function-easing), max-width var(--seed-duration-d4) var(--seed-timing-function-easing), height var(--seed-duration-d4) var(--seed-timing-function-easing), padding var(--seed-duration-d4) var(--seed-timing-function-easing);
|
|
4247
4259
|
position: relative;
|
|
4248
4260
|
overflow: hidden;
|
|
4249
|
-
box-shadow: 0 2px 6px #00000026;
|
|
4250
4261
|
}
|
|
4251
4262
|
|
|
4252
4263
|
.seed-floating-action-button__root:is(:active, [data-active]) {
|
|
@@ -5043,27 +5054,6 @@
|
|
|
5043
5054
|
inset: 0;
|
|
5044
5055
|
}
|
|
5045
5056
|
|
|
5046
|
-
.seed-menu-sheet__backdrop:not(:is([data-state="open"], [data-open])) {
|
|
5047
|
-
animation: seed-exit;
|
|
5048
|
-
animation-timing-function: var(--seed-timing-function-exit);
|
|
5049
|
-
animation-duration: var(--seed-duration-d2);
|
|
5050
|
-
--seed-exit-translate-x: 0;
|
|
5051
|
-
--seed-exit-translate-y: 0;
|
|
5052
|
-
--seed-exit-opacity: 0;
|
|
5053
|
-
--seed-exit-scale: 1;
|
|
5054
|
-
animation-fill-mode: forwards;
|
|
5055
|
-
}
|
|
5056
|
-
|
|
5057
|
-
.seed-menu-sheet__backdrop:is([data-state="open"], [data-open]) {
|
|
5058
|
-
animation: seed-enter;
|
|
5059
|
-
animation-timing-function: var(--seed-timing-function-enter);
|
|
5060
|
-
animation-duration: var(--seed-duration-d2);
|
|
5061
|
-
--seed-enter-translate-x: 0;
|
|
5062
|
-
--seed-enter-translate-y: 0;
|
|
5063
|
-
--seed-enter-opacity: 0;
|
|
5064
|
-
--seed-enter-scale: 1;
|
|
5065
|
-
}
|
|
5066
|
-
|
|
5067
5057
|
.seed-menu-sheet__content {
|
|
5068
5058
|
box-sizing: border-box;
|
|
5069
5059
|
word-break: break-all;
|
|
@@ -5081,27 +5071,6 @@
|
|
|
5081
5071
|
position: relative;
|
|
5082
5072
|
}
|
|
5083
5073
|
|
|
5084
|
-
.seed-menu-sheet__content:not(:is([data-state="open"], [data-open])) {
|
|
5085
|
-
animation: seed-exit;
|
|
5086
|
-
animation-timing-function: var(--seed-timing-function-exit);
|
|
5087
|
-
animation-duration: var(--seed-duration-d4);
|
|
5088
|
-
--seed-exit-translate-x: 0;
|
|
5089
|
-
--seed-exit-translate-y: 100%;
|
|
5090
|
-
--seed-exit-opacity: 1;
|
|
5091
|
-
--seed-exit-scale: 1;
|
|
5092
|
-
animation-fill-mode: forwards;
|
|
5093
|
-
}
|
|
5094
|
-
|
|
5095
|
-
.seed-menu-sheet__content:is([data-state="open"], [data-open]) {
|
|
5096
|
-
animation: seed-enter;
|
|
5097
|
-
animation-timing-function: var(--seed-timing-function-enter-expressive);
|
|
5098
|
-
animation-duration: var(--seed-duration-d6);
|
|
5099
|
-
--seed-enter-translate-x: 0;
|
|
5100
|
-
--seed-enter-translate-y: 100%;
|
|
5101
|
-
--seed-enter-opacity: 1;
|
|
5102
|
-
--seed-enter-scale: 1;
|
|
5103
|
-
}
|
|
5104
|
-
|
|
5105
5074
|
.seed-menu-sheet__header {
|
|
5106
5075
|
align-items: center;
|
|
5107
5076
|
gap: var(--seed-dimension-x1);
|
|
@@ -5164,6 +5133,48 @@
|
|
|
5164
5133
|
background-color: var(--seed-color-bg-neutral-weak-pressed);
|
|
5165
5134
|
}
|
|
5166
5135
|
|
|
5136
|
+
.seed-menu-sheet__backdrop--skipAnimation_false:is([data-state="open"], [data-open]) {
|
|
5137
|
+
animation: seed-enter;
|
|
5138
|
+
animation-timing-function: var(--seed-timing-function-enter);
|
|
5139
|
+
animation-duration: var(--seed-duration-d2);
|
|
5140
|
+
--seed-enter-translate-x: 0;
|
|
5141
|
+
--seed-enter-translate-y: 0;
|
|
5142
|
+
--seed-enter-opacity: 0;
|
|
5143
|
+
--seed-enter-scale: 1;
|
|
5144
|
+
}
|
|
5145
|
+
|
|
5146
|
+
.seed-menu-sheet__backdrop--skipAnimation_false:not(:is([data-state="open"], [data-open])) {
|
|
5147
|
+
animation: seed-exit;
|
|
5148
|
+
animation-timing-function: var(--seed-timing-function-exit);
|
|
5149
|
+
animation-duration: var(--seed-duration-d2);
|
|
5150
|
+
--seed-exit-translate-x: 0;
|
|
5151
|
+
--seed-exit-translate-y: 0;
|
|
5152
|
+
--seed-exit-opacity: 0;
|
|
5153
|
+
--seed-exit-scale: 1;
|
|
5154
|
+
animation-fill-mode: forwards;
|
|
5155
|
+
}
|
|
5156
|
+
|
|
5157
|
+
.seed-menu-sheet__content--skipAnimation_false:is([data-state="open"], [data-open]) {
|
|
5158
|
+
animation: seed-enter;
|
|
5159
|
+
animation-timing-function: var(--seed-timing-function-enter-expressive);
|
|
5160
|
+
animation-duration: var(--seed-duration-d6);
|
|
5161
|
+
--seed-enter-translate-x: 0;
|
|
5162
|
+
--seed-enter-translate-y: 100%;
|
|
5163
|
+
--seed-enter-opacity: 1;
|
|
5164
|
+
--seed-enter-scale: 1;
|
|
5165
|
+
}
|
|
5166
|
+
|
|
5167
|
+
.seed-menu-sheet__content--skipAnimation_false:not(:is([data-state="open"], [data-open])) {
|
|
5168
|
+
animation: seed-exit;
|
|
5169
|
+
animation-timing-function: var(--seed-timing-function-exit);
|
|
5170
|
+
animation-duration: var(--seed-duration-d4);
|
|
5171
|
+
--seed-exit-translate-x: 0;
|
|
5172
|
+
--seed-exit-translate-y: 100%;
|
|
5173
|
+
--seed-exit-opacity: 1;
|
|
5174
|
+
--seed-exit-scale: 1;
|
|
5175
|
+
animation-fill-mode: forwards;
|
|
5176
|
+
}
|
|
5177
|
+
|
|
5167
5178
|
.seed-menu-sheet-item {
|
|
5168
5179
|
background-color: var(--seed-color-bg-neutral-weak);
|
|
5169
5180
|
min-height: 52px;
|
|
@@ -7445,8 +7456,8 @@
|
|
|
7445
7456
|
padding-right: var(--seed-dimension-x3_5);
|
|
7446
7457
|
padding-top: var(--seed-dimension-x1_5);
|
|
7447
7458
|
padding-bottom: var(--seed-dimension-x1_5);
|
|
7448
|
-
font-size: var(--seed-font-size-
|
|
7449
|
-
line-height: var(--seed-line-height-
|
|
7459
|
+
font-size: var(--seed-font-size-t3);
|
|
7460
|
+
line-height: var(--seed-line-height-t3);
|
|
7450
7461
|
--size: 14px;
|
|
7451
7462
|
--thickness: 2px;
|
|
7452
7463
|
--seed-prefix-icon-size: var(--seed-dimension-x3_5);
|