@seed-design/css 1.0.3 → 1.0.5
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 +138 -24
- package/all.min.css +1 -1
- package/base.css +2 -2
- package/base.min.css +1 -1
- package/package.json +1 -1
- package/recipes/app-bar-main.css +36 -12
- package/recipes/app-bar.css +43 -7
- package/recipes/app-screen.css +30 -0
- package/recipes/switch-mark.css +6 -0
- package/recipes/switch.css +1 -1
- package/recipes/text-field.css +1 -2
- package/vars/component/switch-mark.d.ts +10 -0
- package/vars/component/switch-mark.mjs +10 -0
- package/vars/component/switch.d.ts +1 -1
- package/vars/component/switch.mjs +1 -1
- package/vars/component/text-field.d.ts +1 -2
- package/vars/component/text-field.mjs +1 -2
package/all.css
CHANGED
|
@@ -489,9 +489,9 @@
|
|
|
489
489
|
--seed-color-manner-temp-l7-text: #ff5100;
|
|
490
490
|
--seed-color-manner-temp-l7-bg: #ffefe5;
|
|
491
491
|
--seed-color-manner-temp-l8-text: #f30;
|
|
492
|
-
--seed-color-manner-temp-l9-text: #
|
|
492
|
+
--seed-color-manner-temp-l9-text: #e82c45;
|
|
493
493
|
--seed-color-manner-temp-l8-bg: #ffeee5;
|
|
494
|
-
--seed-color-manner-temp-l9-bg: #
|
|
494
|
+
--seed-color-manner-temp-l9-bg: #fdeded;
|
|
495
495
|
--seed-color-manner-temp-l10-text: #cb0123;
|
|
496
496
|
--seed-color-manner-temp-l10-bg: #ffebee;
|
|
497
497
|
--seed-gradient-fade-layer-floating: #fff0 0%, #000 100%;
|
|
@@ -1425,6 +1425,23 @@
|
|
|
1425
1425
|
transform: translate3d(0, 0, 0);
|
|
1426
1426
|
}
|
|
1427
1427
|
|
|
1428
|
+
[data-swipe-back-state="swiping"] .seed-app-bar__root--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#):before {
|
|
1429
|
+
transform: translate3d(var(--swipe-back-displacement, 0), 0, 0);
|
|
1430
|
+
animation: none;
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
[data-swipe-back-state="canceling"] .seed-app-bar__root--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#):before {
|
|
1434
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1435
|
+
transform: translate3d(0, 0, 0);
|
|
1436
|
+
animation: none !important;
|
|
1437
|
+
}
|
|
1438
|
+
|
|
1439
|
+
[data-swipe-back-state="completing"] .seed-app-bar__root--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#):before {
|
|
1440
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1441
|
+
transform: translate3d(100%, 0, 0);
|
|
1442
|
+
animation: none !important;
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1428
1445
|
[data-global-transition-state="enter-active"] .seed-app-bar__icon--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
1429
1446
|
--seed-enter-translate-x: 0;
|
|
1430
1447
|
--seed-enter-translate-y: 0;
|
|
@@ -1435,7 +1452,8 @@
|
|
|
1435
1452
|
}
|
|
1436
1453
|
|
|
1437
1454
|
[data-global-transition-state="exit-active"] .seed-app-bar__icon--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
1438
|
-
|
|
1455
|
+
transform: translate3d(calc(var(--swipe-back-displacement, 0) * .15), 0, 0);
|
|
1456
|
+
opacity: calc(1 - var(--swipe-back-displacement-ratio, 0) * 3);
|
|
1439
1457
|
--seed-exit-translate-x: 0;
|
|
1440
1458
|
--seed-exit-translate-y: 0;
|
|
1441
1459
|
--seed-exit-opacity: 0;
|
|
@@ -1444,19 +1462,32 @@
|
|
|
1444
1462
|
}
|
|
1445
1463
|
|
|
1446
1464
|
[data-global-transition-state="enter-done"] .seed-app-bar__icon--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
1447
|
-
--seed-enter-translate-x: 0;
|
|
1465
|
+
--seed-enter-translate-x: calc(var(--swipe-back-displacement, 0) * .15);
|
|
1448
1466
|
--seed-enter-translate-y: 0;
|
|
1449
|
-
--seed-enter-opacity: calc(1 - var(--swipe-back-displacement-ratio, 0));
|
|
1467
|
+
--seed-enter-opacity: calc(1 - var(--swipe-back-displacement-ratio, 0) * 3);
|
|
1450
1468
|
--seed-enter-scale: 1;
|
|
1451
1469
|
opacity: 1;
|
|
1452
1470
|
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
1453
1471
|
}
|
|
1454
1472
|
|
|
1455
1473
|
[data-swipe-back-state="swiping"] .seed-app-bar__icon--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
1456
|
-
|
|
1474
|
+
transform: translate3d(calc(var(--swipe-back-displacement, 0) * .15), 0, 0);
|
|
1475
|
+
opacity: calc(1 - var(--swipe-back-displacement-ratio, 0) * 3);
|
|
1457
1476
|
animation: none;
|
|
1458
1477
|
}
|
|
1459
1478
|
|
|
1479
|
+
[data-swipe-back-state="canceling"] .seed-app-bar__icon--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
1480
|
+
opacity: 1;
|
|
1481
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1482
|
+
animation: none !important;
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
[data-swipe-back-state="completing"] .seed-app-bar__icon--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
1486
|
+
opacity: 0;
|
|
1487
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1488
|
+
animation: none !important;
|
|
1489
|
+
}
|
|
1490
|
+
|
|
1460
1491
|
[data-global-transition-state="enter-active"][data-top-activity-type="full-screen"] .seed-app-bar__icon--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
1461
1492
|
opacity: 1;
|
|
1462
1493
|
--seed-exit-translate-x: 0;
|
|
@@ -1469,14 +1500,14 @@
|
|
|
1469
1500
|
[data-global-transition-state="exit-active"][data-top-activity-type="full-screen"] .seed-app-bar__icon--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
1470
1501
|
--seed-enter-translate-x: 0;
|
|
1471
1502
|
--seed-enter-translate-y: 0;
|
|
1472
|
-
--seed-enter-opacity: calc(
|
|
1503
|
+
--seed-enter-opacity: calc(var(--swipe-back-displacement-ratio, 0));
|
|
1473
1504
|
--seed-enter-scale: 1;
|
|
1474
1505
|
opacity: 1;
|
|
1475
1506
|
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
1476
1507
|
}
|
|
1477
1508
|
|
|
1478
1509
|
[data-global-transition-state="enter-done"][data-top-activity-type="full-screen"] .seed-app-bar__icon--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
1479
|
-
opacity: calc(
|
|
1510
|
+
opacity: calc(var(--swipe-back-displacement-ratio, 0));
|
|
1480
1511
|
--seed-exit-translate-x: 0;
|
|
1481
1512
|
--seed-exit-translate-y: 0;
|
|
1482
1513
|
--seed-exit-opacity: 0;
|
|
@@ -1485,10 +1516,22 @@
|
|
|
1485
1516
|
}
|
|
1486
1517
|
|
|
1487
1518
|
[data-swipe-back-state="swiping"] .seed-app-bar__icon--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
1488
|
-
opacity: calc(
|
|
1519
|
+
opacity: calc(var(--swipe-back-displacement-ratio, 0));
|
|
1489
1520
|
animation: none;
|
|
1490
1521
|
}
|
|
1491
1522
|
|
|
1523
|
+
[data-swipe-back-state="canceling"] .seed-app-bar__icon--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
1524
|
+
opacity: 0;
|
|
1525
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1526
|
+
animation: none !important;
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
[data-swipe-back-state="completing"] .seed-app-bar__icon--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
1530
|
+
opacity: 1;
|
|
1531
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1532
|
+
animation: none !important;
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1492
1535
|
[data-global-transition-state="enter-active"] .seed-app-bar__root--transitionStyle_fadeFromBottomAndroid[data-activity-is-top] {
|
|
1493
1536
|
--seed-enter-translate-x: 0;
|
|
1494
1537
|
--seed-enter-translate-y: 8vh;
|
|
@@ -1587,8 +1630,8 @@
|
|
|
1587
1630
|
}
|
|
1588
1631
|
|
|
1589
1632
|
[data-global-transition-state="exit-active"] .seed-app-bar-main__root--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
1590
|
-
transform: translate3d(calc(var(--swipe-back-displacement, 0) * .
|
|
1591
|
-
opacity: calc(1 - var(--swipe-back-displacement-ratio, 0));
|
|
1633
|
+
transform: translate3d(calc(var(--swipe-back-displacement, 0) * .15), 0, 0);
|
|
1634
|
+
opacity: calc(1 - var(--swipe-back-displacement-ratio, 0) * 3);
|
|
1592
1635
|
--seed-exit-translate-x: 25%;
|
|
1593
1636
|
--seed-exit-translate-y: 0;
|
|
1594
1637
|
--seed-exit-opacity: 0;
|
|
@@ -1597,9 +1640,9 @@
|
|
|
1597
1640
|
}
|
|
1598
1641
|
|
|
1599
1642
|
[data-global-transition-state="enter-done"] .seed-app-bar-main__root--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
1600
|
-
--seed-enter-translate-x: calc(var(--swipe-back-displacement, 0) * .
|
|
1643
|
+
--seed-enter-translate-x: calc(var(--swipe-back-displacement, 0) * .15);
|
|
1601
1644
|
--seed-enter-translate-y: 0;
|
|
1602
|
-
--seed-enter-opacity: calc(1 - var(--swipe-back-displacement-ratio, 0));
|
|
1645
|
+
--seed-enter-opacity: calc(1 - var(--swipe-back-displacement-ratio, 0) * 3);
|
|
1603
1646
|
--seed-enter-scale: 1;
|
|
1604
1647
|
opacity: 1;
|
|
1605
1648
|
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
@@ -1607,11 +1650,25 @@
|
|
|
1607
1650
|
}
|
|
1608
1651
|
|
|
1609
1652
|
[data-swipe-back-state="swiping"] .seed-app-bar-main__root--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
1610
|
-
transform: translate3d(calc(var(--swipe-back-displacement, 0) * .
|
|
1611
|
-
opacity: calc(1 - var(--swipe-back-displacement-ratio, 0));
|
|
1653
|
+
transform: translate3d(calc(var(--swipe-back-displacement, 0) * .15), 0, 0);
|
|
1654
|
+
opacity: calc(1 - var(--swipe-back-displacement-ratio, 0) * 3);
|
|
1612
1655
|
animation: none;
|
|
1613
1656
|
}
|
|
1614
1657
|
|
|
1658
|
+
[data-swipe-back-state="canceling"] .seed-app-bar-main__root--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
1659
|
+
opacity: 1;
|
|
1660
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1661
|
+
transform: translate3d(0, 0, 0);
|
|
1662
|
+
animation: none !important;
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
[data-swipe-back-state="completing"] .seed-app-bar-main__root--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
1666
|
+
opacity: 0;
|
|
1667
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1668
|
+
transform: translate3d(25%, 0, 0);
|
|
1669
|
+
animation: none !important;
|
|
1670
|
+
}
|
|
1671
|
+
|
|
1615
1672
|
[data-global-transition-state="enter-active"][data-top-activity-type="full-screen"] .seed-app-bar-main__root--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
1616
1673
|
opacity: 1;
|
|
1617
1674
|
--seed-exit-translate-x: -25%;
|
|
@@ -1623,9 +1680,9 @@
|
|
|
1623
1680
|
}
|
|
1624
1681
|
|
|
1625
1682
|
[data-global-transition-state="exit-active"][data-top-activity-type="full-screen"] .seed-app-bar-main__root--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
1626
|
-
--seed-enter-translate-x: calc(-25% + var(--swipe-back-displacement, 0) * .
|
|
1683
|
+
--seed-enter-translate-x: calc(-25% + var(--swipe-back-displacement, 0) * .15);
|
|
1627
1684
|
--seed-enter-translate-y: 0;
|
|
1628
|
-
--seed-enter-opacity: calc(
|
|
1685
|
+
--seed-enter-opacity: calc(var(--swipe-back-displacement-ratio, 0));
|
|
1629
1686
|
--seed-enter-scale: 1;
|
|
1630
1687
|
opacity: 1;
|
|
1631
1688
|
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
@@ -1633,8 +1690,8 @@
|
|
|
1633
1690
|
}
|
|
1634
1691
|
|
|
1635
1692
|
[data-global-transition-state="enter-done"][data-top-activity-type="full-screen"] .seed-app-bar-main__root--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
1636
|
-
transform: translate3d(calc(-25% + var(--swipe-back-displacement, 0) * .
|
|
1637
|
-
opacity: calc(
|
|
1693
|
+
transform: translate3d(calc(-25% + var(--swipe-back-displacement, 0) * .15), 0, 0);
|
|
1694
|
+
opacity: calc(var(--swipe-back-displacement-ratio, 0));
|
|
1638
1695
|
--seed-exit-translate-x: -25%;
|
|
1639
1696
|
--seed-exit-translate-y: 0;
|
|
1640
1697
|
--seed-exit-opacity: 0;
|
|
@@ -1643,11 +1700,25 @@
|
|
|
1643
1700
|
}
|
|
1644
1701
|
|
|
1645
1702
|
[data-swipe-back-state="swiping"] .seed-app-bar-main__root--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
1646
|
-
transform: translate3d(calc(-25% + var(--swipe-back-displacement, 0) * .
|
|
1647
|
-
opacity: calc(
|
|
1703
|
+
transform: translate3d(calc(-25% + var(--swipe-back-displacement, 0) * .15), 0, 0);
|
|
1704
|
+
opacity: calc(var(--swipe-back-displacement-ratio, 0));
|
|
1648
1705
|
animation: none;
|
|
1649
1706
|
}
|
|
1650
1707
|
|
|
1708
|
+
[data-swipe-back-state="canceling"] .seed-app-bar-main__root--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
1709
|
+
opacity: 0;
|
|
1710
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1711
|
+
transform: translate3d(-25%, 0, 0);
|
|
1712
|
+
animation: none !important;
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1715
|
+
[data-swipe-back-state="completing"] .seed-app-bar-main__root--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
1716
|
+
opacity: 1;
|
|
1717
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1718
|
+
transform: translate3d(0, 0, 0);
|
|
1719
|
+
animation: none !important;
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1651
1722
|
.seed-app-bar-main__root--tone_layer, .seed-app-bar-main__title--tone_layer {
|
|
1652
1723
|
color: var(--seed-color-fg-neutral);
|
|
1653
1724
|
}
|
|
@@ -1768,6 +1839,18 @@
|
|
|
1768
1839
|
animation: none;
|
|
1769
1840
|
}
|
|
1770
1841
|
|
|
1842
|
+
[data-swipe-back-state="canceling"] .seed-app-screen__layer--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
1843
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1844
|
+
transform: translate3d(0, 0, 0);
|
|
1845
|
+
animation: none !important;
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
[data-swipe-back-state="completing"] .seed-app-screen__layer--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
1849
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1850
|
+
transform: translate3d(100%, 0, 0);
|
|
1851
|
+
animation: none !important;
|
|
1852
|
+
}
|
|
1853
|
+
|
|
1771
1854
|
[data-global-transition-state="enter-active"][data-top-activity-type="full-screen"] .seed-app-screen__layer--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
1772
1855
|
--seed-exit-translate-x: -30%;
|
|
1773
1856
|
--seed-exit-translate-y: 0;
|
|
@@ -1800,6 +1883,18 @@
|
|
|
1800
1883
|
animation: none;
|
|
1801
1884
|
}
|
|
1802
1885
|
|
|
1886
|
+
[data-swipe-back-state="canceling"] .seed-app-screen__layer--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
1887
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1888
|
+
transform: translate3d(-30%, 0, 0);
|
|
1889
|
+
animation: none !important;
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1892
|
+
[data-swipe-back-state="completing"] .seed-app-screen__layer--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
1893
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1894
|
+
transform: translate3d(0, 0, 0);
|
|
1895
|
+
animation: none !important;
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1803
1898
|
[data-global-transition-state="enter-active"] .seed-app-screen__dim--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
1804
1899
|
--seed-enter-translate-x: 0;
|
|
1805
1900
|
--seed-enter-translate-y: 0;
|
|
@@ -1832,6 +1927,18 @@
|
|
|
1832
1927
|
animation: none;
|
|
1833
1928
|
}
|
|
1834
1929
|
|
|
1930
|
+
[data-swipe-back-state="canceling"] .seed-app-screen__dim--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
1931
|
+
opacity: calc(1 - var(--swipe-back-displacement-ratio, 0));
|
|
1932
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1933
|
+
animation: none !important;
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1936
|
+
[data-swipe-back-state="completing"] .seed-app-screen__dim--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
1937
|
+
opacity: 0;
|
|
1938
|
+
transition: transform .35s cubic-bezier(.2, .1, .21, .99), opacity .35s cubic-bezier(.2, .1, .21, .99);
|
|
1939
|
+
animation: none !important;
|
|
1940
|
+
}
|
|
1941
|
+
|
|
1835
1942
|
.seed-app-screen__root--transitionStyle_fadeFromBottomAndroid {
|
|
1836
1943
|
--z-index-dim: calc(var(--z-index-base) + 0);
|
|
1837
1944
|
--z-index-layer: calc(var(--z-index-base) + 3);
|
|
@@ -5613,7 +5720,7 @@
|
|
|
5613
5720
|
}
|
|
5614
5721
|
|
|
5615
5722
|
.seed-switch__label:is(:disabled, [disabled], [data-disabled]) {
|
|
5616
|
-
|
|
5723
|
+
opacity: .58;
|
|
5617
5724
|
}
|
|
5618
5725
|
|
|
5619
5726
|
.seed-switch__root--size_16 {
|
|
@@ -5675,10 +5782,18 @@
|
|
|
5675
5782
|
background: var(--seed-color-bg-neutral-inverted);
|
|
5676
5783
|
}
|
|
5677
5784
|
|
|
5785
|
+
.seed-switch-mark__root--tone_neutral:is(:disabled, [disabled], [data-disabled]):is(:checked, [data-checked]) {
|
|
5786
|
+
background: var(--seed-color-palette-gray-600);
|
|
5787
|
+
}
|
|
5788
|
+
|
|
5678
5789
|
.seed-switch-mark__thumb--tone_neutral {
|
|
5679
5790
|
background: var(--seed-color-fg-neutral-inverted);
|
|
5680
5791
|
}
|
|
5681
5792
|
|
|
5793
|
+
.seed-switch-mark__thumb--tone_neutral:is(:disabled, [disabled], [data-disabled]) {
|
|
5794
|
+
background: var(--seed-color-palette-static-black-alpha-700);
|
|
5795
|
+
}
|
|
5796
|
+
|
|
5682
5797
|
.seed-switch-mark__root--tone_brand:is(:checked, [data-checked]) {
|
|
5683
5798
|
background: var(--seed-color-bg-brand-solid);
|
|
5684
5799
|
}
|
|
@@ -6150,7 +6265,6 @@
|
|
|
6150
6265
|
}
|
|
6151
6266
|
|
|
6152
6267
|
.seed-text-field__field {
|
|
6153
|
-
background-color: var(--seed-color-bg-layer-default);
|
|
6154
6268
|
border-style: solid;
|
|
6155
6269
|
border-width: 1px;
|
|
6156
6270
|
border-color: var(--seed-color-stroke-neutral-weak);
|
|
@@ -6169,7 +6283,7 @@
|
|
|
6169
6283
|
}
|
|
6170
6284
|
|
|
6171
6285
|
.seed-text-field__field:is(:invalid, [data-invalid]):is(:focus, [data-focus]) {
|
|
6172
|
-
background-color:
|
|
6286
|
+
background-color: #0000;
|
|
6173
6287
|
}
|
|
6174
6288
|
|
|
6175
6289
|
.seed-text-field__field:is(:disabled, [disabled], [data-disabled]), .seed-text-field__field[data-readonly] {
|