@cirthcss/cirth 0.8.0 → 0.8.1
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/README.md +1 -1
- package/dist/cirth.classless.css +66 -37
- package/dist/cirth.classless.min.css +1 -1
- package/dist/cirth.classless.scoped.css +66 -37
- package/dist/cirth.classless.scoped.min.css +1 -1
- package/dist/cirth.css +43 -39
- package/dist/cirth.min.css +1 -1
- package/dist/cirth.scoped.css +43 -39
- package/dist/cirth.scoped.min.css +1 -1
- package/package.json +1 -1
package/dist/cirth.css
CHANGED
|
@@ -487,6 +487,10 @@ button:focus-visible, button[aria-current]:not([aria-current="false"]):focus-vis
|
|
|
487
487
|
pointer-events: none;
|
|
488
488
|
}
|
|
489
489
|
|
|
490
|
+
form:invalid :is(button:not([type="button"], [type="reset"]), [type="submit"]) {
|
|
491
|
+
opacity: var(--cirth-opacity-disabled);
|
|
492
|
+
}
|
|
493
|
+
|
|
490
494
|
:where(table) {
|
|
491
495
|
border-collapse: collapse;
|
|
492
496
|
border-spacing: 0;
|
|
@@ -722,52 +726,52 @@ label[aria-disabled="true"] input[disabled] {
|
|
|
722
726
|
opacity: 1;
|
|
723
727
|
}
|
|
724
728
|
|
|
725
|
-
:where(input, select, textarea):not([type="checkbox"], [type="radio"], [type="date"], [type="datetime-local"], [type="month"], [type="time"], [type="week"], [type="range"])[aria-invalid] {
|
|
729
|
+
:where(input, select, textarea):not([type="checkbox"], [type="radio"], [type="date"], [type="datetime-local"], [type="month"], [type="time"], [type="week"], [type="range"]):is([aria-invalid], :user-invalid:not([aria-invalid]), :user-valid:not([aria-invalid])) {
|
|
726
730
|
padding-inline: var(--cirth-form-element-spacing-horizontal) calc(var(--cirth-form-element-spacing-horizontal) + var(--cirth-space-6));
|
|
727
731
|
background-position: center right var(--cirth-space-3);
|
|
728
732
|
background-size: var(--cirth-size-4) auto;
|
|
729
733
|
background-repeat: no-repeat;
|
|
730
734
|
}
|
|
731
735
|
|
|
732
|
-
:where(input, select, textarea):not([type="checkbox"], [type="radio"], [type="date"], [type="datetime-local"], [type="month"], [type="time"], [type="week"], [type="range"])[aria-invalid="false"]:not(select) {
|
|
736
|
+
:where(input, select, textarea):not([type="checkbox"], [type="radio"], [type="date"], [type="datetime-local"], [type="month"], [type="time"], [type="week"], [type="range"]):is([aria-invalid="false"], :user-valid:not([aria-invalid])):not(select) {
|
|
733
737
|
background-image: var(--cirth-icon-valid);
|
|
734
738
|
}
|
|
735
739
|
|
|
736
|
-
:where(input, select, textarea):not([type="checkbox"], [type="radio"], [type="date"], [type="datetime-local"], [type="month"], [type="time"], [type="week"], [type="range"])[aria-invalid="true"]:not(select) {
|
|
740
|
+
:where(input, select, textarea):not([type="checkbox"], [type="radio"], [type="date"], [type="datetime-local"], [type="month"], [type="time"], [type="week"], [type="range"]):is([aria-invalid="true"], :user-invalid:not([aria-invalid])):not(select) {
|
|
737
741
|
background-image: var(--cirth-icon-invalid);
|
|
738
742
|
}
|
|
739
743
|
|
|
740
|
-
:where(input, select, textarea)[aria-invalid="false"] {
|
|
744
|
+
:where(input, select, textarea):is([aria-invalid="false"], :user-valid:not([aria-invalid])) {
|
|
741
745
|
--cirth-border-color: var(--cirth-form-element-valid-border-color);
|
|
742
746
|
}
|
|
743
747
|
|
|
744
|
-
:where(input, select, textarea)[aria-invalid="false"]:is(:active, :focus) {
|
|
748
|
+
:where(input, select, textarea):is([aria-invalid="false"], :user-valid:not([aria-invalid])):is(:active, :focus) {
|
|
745
749
|
--cirth-border-color: var(--cirth-form-element-valid-active-border-color);
|
|
746
750
|
}
|
|
747
751
|
|
|
748
|
-
:where(input, select, textarea)[aria-invalid="false"]:is(:active, :focus):not([type="checkbox"], [type="radio"]) {
|
|
752
|
+
:where(input, select, textarea):is([aria-invalid="false"], :user-valid:not([aria-invalid])):is(:active, :focus):not([type="checkbox"], [type="radio"]) {
|
|
749
753
|
--cirth-box-shadow: 0 0 0 var(--cirth-outline-width)
|
|
750
754
|
var(--cirth-form-element-valid-focus-color);
|
|
751
755
|
}
|
|
752
756
|
|
|
753
|
-
:where(input, select, textarea)[aria-invalid="true"] {
|
|
757
|
+
:where(input, select, textarea):is([aria-invalid="true"], :user-invalid:not([aria-invalid])) {
|
|
754
758
|
--cirth-border-color: var(--cirth-form-element-invalid-border-color);
|
|
755
759
|
}
|
|
756
760
|
|
|
757
|
-
:where(input, select, textarea)[aria-invalid="true"]:is(:active, :focus) {
|
|
761
|
+
:where(input, select, textarea):is([aria-invalid="true"], :user-invalid:not([aria-invalid])):is(:active, :focus) {
|
|
758
762
|
--cirth-border-color: var(--cirth-form-element-invalid-active-border-color);
|
|
759
763
|
}
|
|
760
764
|
|
|
761
|
-
:where(input, select, textarea)[aria-invalid="true"]:is(:active, :focus):not([type="checkbox"], [type="radio"]) {
|
|
765
|
+
:where(input, select, textarea):is([aria-invalid="true"], :user-invalid:not([aria-invalid])):is(:active, :focus):not([type="checkbox"], [type="radio"]) {
|
|
762
766
|
--cirth-box-shadow: 0 0 0 var(--cirth-outline-width)
|
|
763
767
|
var(--cirth-form-element-invalid-focus-color);
|
|
764
768
|
}
|
|
765
769
|
|
|
766
|
-
[dir="rtl"] :where(input, select, textarea):not([type="checkbox"], [type="radio"]):is([aria-invalid], [aria-invalid
|
|
770
|
+
[dir="rtl"] :where(input, select, textarea):not([type="checkbox"], [type="radio"]):is([aria-invalid], :user-invalid:not([aria-invalid]), :user-valid:not([aria-invalid])) {
|
|
767
771
|
background-position: center left var(--cirth-space-3);
|
|
768
772
|
}
|
|
769
773
|
|
|
770
|
-
[dir="rtl"] textarea[aria-invalid] {
|
|
774
|
+
[dir="rtl"] textarea:is([aria-invalid], :user-invalid:not([aria-invalid]), :user-valid:not([aria-invalid])) {
|
|
771
775
|
background-position: top left var(--cirth-space-3);
|
|
772
776
|
}
|
|
773
777
|
|
|
@@ -802,7 +806,7 @@ textarea {
|
|
|
802
806
|
display: block;
|
|
803
807
|
}
|
|
804
808
|
|
|
805
|
-
textarea[aria-invalid] {
|
|
809
|
+
textarea:is([aria-invalid], :user-invalid:not([aria-invalid]), :user-valid:not([aria-invalid])) {
|
|
806
810
|
--cirth-icon-height: calc(var(--cirth-size-4) * var(--cirth-line-height) +
|
|
807
811
|
var(--cirth-form-element-spacing-vertical) * 2 +
|
|
808
812
|
var(--cirth-border-width) * 2);
|
|
@@ -818,11 +822,11 @@ textarea[aria-invalid] {
|
|
|
818
822
|
display: block;
|
|
819
823
|
}
|
|
820
824
|
|
|
821
|
-
:where(input, select, textarea, fieldset, .row)[aria-invalid="false"] + small {
|
|
825
|
+
:where(input, select, textarea, fieldset, .row):is([aria-invalid="false"], :user-valid:not([aria-invalid])) + small {
|
|
822
826
|
color: var(--cirth-ins-color);
|
|
823
827
|
}
|
|
824
828
|
|
|
825
|
-
:where(input, select, textarea, fieldset, .row)[aria-invalid="true"] + small {
|
|
829
|
+
:where(input, select, textarea, fieldset, .row):is([aria-invalid="true"], :user-invalid:not([aria-invalid])) + small {
|
|
826
830
|
color: var(--cirth-del-color);
|
|
827
831
|
}
|
|
828
832
|
|
|
@@ -1467,7 +1471,7 @@ label > details.dropdown {
|
|
|
1467
1471
|
transform: rotate(0) translateX(0);
|
|
1468
1472
|
}
|
|
1469
1473
|
|
|
1470
|
-
[role="search"],
|
|
1474
|
+
[role="search"], .group {
|
|
1471
1475
|
width: 100%;
|
|
1472
1476
|
margin-bottom: var(--cirth-spacing);
|
|
1473
1477
|
border-radius: var(--cirth-border-radius);
|
|
@@ -1479,61 +1483,61 @@ label > details.dropdown {
|
|
|
1479
1483
|
position: relative;
|
|
1480
1484
|
}
|
|
1481
1485
|
|
|
1482
|
-
[role="search"] > small,
|
|
1486
|
+
[role="search"] > small, .group > small {
|
|
1483
1487
|
margin-top: calc(var(--cirth-spacing) * .25);
|
|
1484
1488
|
flex: 0 0 100%;
|
|
1485
1489
|
order: 1;
|
|
1486
1490
|
margin-bottom: 0;
|
|
1487
1491
|
}
|
|
1488
1492
|
|
|
1489
|
-
[role="search"] > *, [role="search"] input:not([type="checkbox"], [type="radio"]), [role="search"] select,
|
|
1493
|
+
[role="search"] > *, [role="search"] input:not([type="checkbox"], [type="radio"]), [role="search"] select, .group > *, .group input:not([type="checkbox"], [type="radio"]), .group select {
|
|
1490
1494
|
flex: auto;
|
|
1491
1495
|
margin-bottom: 0;
|
|
1492
1496
|
position: relative;
|
|
1493
1497
|
}
|
|
1494
1498
|
|
|
1495
|
-
[role="search"] > :is(input, select, textarea), [role="search"] input:not([type="checkbox"], [type="radio"]):is(input, select, textarea), [role="search"] select:is(input, select, textarea),
|
|
1499
|
+
[role="search"] > :is(input, select, textarea), [role="search"] input:not([type="checkbox"], [type="radio"]):is(input, select, textarea), [role="search"] select:is(input, select, textarea), .group > :is(input, select, textarea), .group input:not([type="checkbox"], [type="radio"]):is(input, select, textarea), .group select:is(input, select, textarea) {
|
|
1496
1500
|
flex: 99;
|
|
1497
1501
|
}
|
|
1498
1502
|
|
|
1499
|
-
[role="search"] > :not(:first-child), [role="search"] input:not([type="checkbox"], [type="radio"]):not(:first-child), [role="search"] select:not(:first-child),
|
|
1503
|
+
[role="search"] > :not(:first-child), [role="search"] input:not([type="checkbox"], [type="radio"]):not(:first-child), [role="search"] select:not(:first-child), .group > :not(:first-child), .group input:not([type="checkbox"], [type="radio"]):not(:first-child), .group select:not(:first-child) {
|
|
1500
1504
|
border-start-start-radius: 0;
|
|
1501
1505
|
border-end-start-radius: 0;
|
|
1502
1506
|
margin-inline-start: 0;
|
|
1503
1507
|
}
|
|
1504
1508
|
|
|
1505
|
-
[role="search"] > :not(:last-child), [role="search"] input:not([type="checkbox"], [type="radio"]):not(:last-child), [role="search"] select:not(:last-child),
|
|
1509
|
+
[role="search"] > :not(:last-child), [role="search"] input:not([type="checkbox"], [type="radio"]):not(:last-child), [role="search"] select:not(:last-child), .group > :not(:last-child), .group input:not([type="checkbox"], [type="radio"]):not(:last-child), .group select:not(:last-child) {
|
|
1506
1510
|
border-start-end-radius: 0;
|
|
1507
1511
|
border-end-end-radius: 0;
|
|
1508
1512
|
}
|
|
1509
1513
|
|
|
1510
|
-
[role="search"] > :focus, [role="search"] input:not([type="checkbox"], [type="radio"]):focus, [role="search"] select:focus,
|
|
1514
|
+
[role="search"] > :focus, [role="search"] input:not([type="checkbox"], [type="radio"]):focus, [role="search"] select:focus, .group > :focus, .group input:not([type="checkbox"], [type="radio"]):focus, .group select:focus {
|
|
1511
1515
|
z-index: 2;
|
|
1512
1516
|
}
|
|
1513
1517
|
|
|
1514
|
-
:is([role="search"] > :has( + small:last-child),
|
|
1518
|
+
:is([role="search"] > :has( + small:last-child), .group > :has( + small:last-child)) {
|
|
1515
1519
|
border-start-end-radius: var(--cirth-border-radius);
|
|
1516
1520
|
border-end-end-radius: var(--cirth-border-radius);
|
|
1517
1521
|
}
|
|
1518
1522
|
|
|
1519
|
-
[role="search"] button:not(:first-child), [role="search"] [type="submit"]:not(:first-child), [role="search"] [type="reset"]:not(:first-child), [role="search"] [type="button"]:not(:first-child), [role="search"] [role="button"]:not(:first-child), [role="search"] input:not([type="checkbox"], [type="radio"]):not(:first-child), [role="search"] select:not(:first-child),
|
|
1523
|
+
[role="search"] button:not(:first-child), [role="search"] [type="submit"]:not(:first-child), [role="search"] [type="reset"]:not(:first-child), [role="search"] [type="button"]:not(:first-child), [role="search"] [role="button"]:not(:first-child), [role="search"] input:not([type="checkbox"], [type="radio"]):not(:first-child), [role="search"] select:not(:first-child), .group button:not(:first-child), .group [type="submit"]:not(:first-child), .group [type="reset"]:not(:first-child), .group [type="button"]:not(:first-child), .group [role="button"]:not(:first-child), .group input:not([type="checkbox"], [type="radio"]):not(:first-child), .group select:not(:first-child) {
|
|
1520
1524
|
margin-inline-start: calc(var(--cirth-border-width) * -1);
|
|
1521
1525
|
}
|
|
1522
1526
|
|
|
1523
|
-
[role="search"] button, [role="search"] [type="submit"], [role="search"] [type="reset"], [role="search"] [type="button"], [role="search"] [role="button"],
|
|
1527
|
+
[role="search"] button, [role="search"] [type="submit"], [role="search"] [type="reset"], [role="search"] [type="button"], [role="search"] [role="button"], .group button, .group [type="submit"], .group [type="reset"], .group [type="button"], .group [role="button"] {
|
|
1524
1528
|
width: auto;
|
|
1525
1529
|
}
|
|
1526
1530
|
|
|
1527
1531
|
@supports selector(:has(*)) {
|
|
1528
|
-
:is([role="search"]:has(button:focus, [type="submit"]:focus, [type="button"]:focus, [role="button"]:focus),
|
|
1532
|
+
:is([role="search"]:has(button:focus, [type="submit"]:focus, [type="button"]:focus, [role="button"]:focus), .group:has(button:focus, [type="submit"]:focus, [type="button"]:focus, [role="button"]:focus)) {
|
|
1529
1533
|
--cirth-group-box-shadow: var(--cirth-group-box-shadow-focus-with-button);
|
|
1530
1534
|
}
|
|
1531
1535
|
|
|
1532
|
-
:is([role="search"]:has(button:focus, [type="submit"]:focus, [type="button"]:focus, [role="button"]:focus) input:not([type="checkbox"], [type="radio"], [aria-invalid]), [role="search"]:has(button:focus, [type="submit"]:focus, [type="button"]:focus, [role="button"]:focus) select:not([aria-invalid]),
|
|
1536
|
+
:is([role="search"]:has(button:focus, [type="submit"]:focus, [type="button"]:focus, [role="button"]:focus) input:not([type="checkbox"], [type="radio"], [aria-invalid]), [role="search"]:has(button:focus, [type="submit"]:focus, [type="button"]:focus, [role="button"]:focus) select:not([aria-invalid]), .group:has(button:focus, [type="submit"]:focus, [type="button"]:focus, [role="button"]:focus) input:not([type="checkbox"], [type="radio"], [aria-invalid]), .group:has(button:focus, [type="submit"]:focus, [type="button"]:focus, [role="button"]:focus) select:not([aria-invalid])) {
|
|
1533
1537
|
border-color: #0000;
|
|
1534
1538
|
}
|
|
1535
1539
|
|
|
1536
|
-
:is([role="search"]:has(input:not([type="submit"], [type="button"]):focus, select:focus),
|
|
1540
|
+
:is([role="search"]:has(input:not([type="submit"], [type="button"]):focus, select:focus), .group:has(input:not([type="submit"], [type="button"]):focus, select:focus)) {
|
|
1537
1541
|
--cirth-group-box-shadow: var(--cirth-group-box-shadow-focus-with-input);
|
|
1538
1542
|
}
|
|
1539
1543
|
|
|
@@ -1565,35 +1569,35 @@ label > details.dropdown {
|
|
|
1565
1569
|
var(--cirth-primary-hover-border);
|
|
1566
1570
|
}
|
|
1567
1571
|
|
|
1568
|
-
|
|
1572
|
+
.group:has(input:not([type="submit"], [type="button"]):focus, select:focus) button {
|
|
1569
1573
|
--cirth-button-box-shadow: 0 0 0 var(--cirth-border-width)
|
|
1570
1574
|
var(--cirth-primary-border);
|
|
1571
1575
|
--cirth-button-hover-box-shadow: 0 0 0 var(--cirth-border-width)
|
|
1572
1576
|
var(--cirth-primary-hover-border);
|
|
1573
1577
|
}
|
|
1574
1578
|
|
|
1575
|
-
|
|
1579
|
+
.group:has(input:not([type="submit"], [type="button"]):focus, select:focus) [type="submit"] {
|
|
1576
1580
|
--cirth-button-box-shadow: 0 0 0 var(--cirth-border-width)
|
|
1577
1581
|
var(--cirth-primary-border);
|
|
1578
1582
|
--cirth-button-hover-box-shadow: 0 0 0 var(--cirth-border-width)
|
|
1579
1583
|
var(--cirth-primary-hover-border);
|
|
1580
1584
|
}
|
|
1581
1585
|
|
|
1582
|
-
|
|
1586
|
+
.group:has(input:not([type="submit"], [type="button"]):focus, select:focus) [type="button"] {
|
|
1583
1587
|
--cirth-button-box-shadow: 0 0 0 var(--cirth-border-width)
|
|
1584
1588
|
var(--cirth-primary-border);
|
|
1585
1589
|
--cirth-button-hover-box-shadow: 0 0 0 var(--cirth-border-width)
|
|
1586
1590
|
var(--cirth-primary-hover-border);
|
|
1587
1591
|
}
|
|
1588
1592
|
|
|
1589
|
-
|
|
1593
|
+
.group:has(input:not([type="submit"], [type="button"]):focus, select:focus) [role="button"] {
|
|
1590
1594
|
--cirth-button-box-shadow: 0 0 0 var(--cirth-border-width)
|
|
1591
1595
|
var(--cirth-primary-border);
|
|
1592
1596
|
--cirth-button-hover-box-shadow: 0 0 0 var(--cirth-border-width)
|
|
1593
1597
|
var(--cirth-primary-hover-border);
|
|
1594
1598
|
}
|
|
1595
1599
|
|
|
1596
|
-
[role="search"] button:focus, [role="search"] [type="submit"]:focus, [role="search"] [type="reset"]:focus, [role="search"] [type="button"]:focus, [role="search"] [role="button"]:focus,
|
|
1600
|
+
[role="search"] button:focus, [role="search"] [type="submit"]:focus, [role="search"] [type="reset"]:focus, [role="search"] [type="button"]:focus, [role="search"] [role="button"]:focus, .group button:focus, .group [type="submit"]:focus, .group [type="reset"]:focus, .group [type="button"]:focus, .group [role="button"]:focus {
|
|
1597
1601
|
box-shadow: none;
|
|
1598
1602
|
}
|
|
1599
1603
|
}
|
|
@@ -1851,7 +1855,7 @@ nav li :where(a:not([role="button"]), [role="link"]):not(:hover) {
|
|
|
1851
1855
|
text-decoration: none;
|
|
1852
1856
|
}
|
|
1853
1857
|
|
|
1854
|
-
nav li
|
|
1858
|
+
nav li .group, nav li [role="search"] {
|
|
1855
1859
|
width: auto;
|
|
1856
1860
|
margin-bottom: 0;
|
|
1857
1861
|
}
|
|
@@ -2446,7 +2450,7 @@ nav details.dropdown summary:focus-visible {
|
|
|
2446
2450
|
--cirth-border-radius: var(--cirth-radius-pill);
|
|
2447
2451
|
}
|
|
2448
2452
|
|
|
2449
|
-
:is([role="search"]:has(button.secondary:focus, [type="submit"].secondary:focus, [type="button"].secondary:focus, [role="button"].secondary:focus),
|
|
2453
|
+
:is([role="search"]:has(button.secondary:focus, [type="submit"].secondary:focus, [type="button"].secondary:focus, [role="button"].secondary:focus), .group:has(button.secondary:focus, [type="submit"].secondary:focus, [type="button"].secondary:focus, [role="button"].secondary:focus)) {
|
|
2450
2454
|
--cirth-group-box-shadow-focus-with-button: 0
|
|
2451
2455
|
0
|
|
2452
2456
|
0
|
|
@@ -2454,7 +2458,7 @@ nav details.dropdown summary:focus-visible {
|
|
|
2454
2458
|
var(--cirth-secondary-focus);
|
|
2455
2459
|
}
|
|
2456
2460
|
|
|
2457
|
-
:is([role="search"]:has(button.contrast:focus, [type="submit"].contrast:focus, [type="button"].contrast:focus, [role="button"].contrast:focus),
|
|
2461
|
+
:is([role="search"]:has(button.contrast:focus, [type="submit"].contrast:focus, [type="button"].contrast:focus, [role="button"].contrast:focus), .group:has(button.contrast:focus, [type="submit"].contrast:focus, [type="button"].contrast:focus, [role="button"].contrast:focus)) {
|
|
2458
2462
|
--cirth-group-box-shadow-focus-with-button: 0
|
|
2459
2463
|
0
|
|
2460
2464
|
0
|
|
@@ -2462,7 +2466,7 @@ nav details.dropdown summary:focus-visible {
|
|
|
2462
2466
|
var(--cirth-contrast-focus);
|
|
2463
2467
|
}
|
|
2464
2468
|
|
|
2465
|
-
[role="search"] button, [role="search"] [type="submit"], [role="search"] [type="button"], [role="search"] [role="button"],
|
|
2469
|
+
[role="search"] button, [role="search"] [type="submit"], [role="search"] [type="button"], [role="search"] [role="button"], .group button, .group [type="submit"], .group [type="button"], .group [role="button"] {
|
|
2466
2470
|
--cirth-form-element-spacing-horizontal: var(--cirth-space-8);
|
|
2467
2471
|
}
|
|
2468
2472
|
|
|
@@ -2547,7 +2551,7 @@ details summary[role="button"]:not(.outline):after {
|
|
|
2547
2551
|
--cirth-form-element-valid-focus-color: var(--cirth-form-element-valid-active-border-color);
|
|
2548
2552
|
--cirth-switch-background-color: oklch(61.3% .032 264);
|
|
2549
2553
|
--cirth-switch-checked-background-color: var(--cirth-primary-background);
|
|
2550
|
-
--cirth-switch-color:
|
|
2554
|
+
--cirth-switch-color: var(--cirth-primary-inverse);
|
|
2551
2555
|
--cirth-switch-thumb-box-shadow: 0 0 0 #0000;
|
|
2552
2556
|
--cirth-range-border-color: oklch(91.7% .006 264);
|
|
2553
2557
|
--cirth-range-active-border-color: oklch(83% .016 264);
|
|
@@ -2660,7 +2664,7 @@ details summary[role="button"]:not(.outline):after {
|
|
|
2660
2664
|
--cirth-form-element-valid-focus-color: var(--cirth-form-element-valid-active-border-color);
|
|
2661
2665
|
--cirth-switch-background-color: oklch(52.7% .032 264);
|
|
2662
2666
|
--cirth-switch-checked-background-color: var(--cirth-primary-background);
|
|
2663
|
-
--cirth-switch-color:
|
|
2667
|
+
--cirth-switch-color: var(--cirth-primary-inverse);
|
|
2664
2668
|
--cirth-switch-thumb-box-shadow: 0 0 0 #0000;
|
|
2665
2669
|
--cirth-range-border-color: oklch(26.7% .011 264);
|
|
2666
2670
|
--cirth-range-active-border-color: oklch(31% .016 264);
|
|
@@ -2777,7 +2781,7 @@ details summary[role="button"]:not(.outline):after {
|
|
|
2777
2781
|
--cirth-form-element-valid-focus-color: var(--cirth-form-element-valid-active-border-color);
|
|
2778
2782
|
--cirth-switch-background-color: oklch(52.7% .032 264);
|
|
2779
2783
|
--cirth-switch-checked-background-color: var(--cirth-primary-background);
|
|
2780
|
-
--cirth-switch-color:
|
|
2784
|
+
--cirth-switch-color: var(--cirth-primary-inverse);
|
|
2781
2785
|
--cirth-switch-thumb-box-shadow: 0 0 0 #0000;
|
|
2782
2786
|
--cirth-range-border-color: oklch(26.7% .011 264);
|
|
2783
2787
|
--cirth-range-active-border-color: oklch(31% .016 264);
|