@@ -957,7 +957,7 @@ input[type="color"]:enabled:hover,
957957input[type="button"] :enabled:hover,
958958input[type="submit"] :enabled:hover,
959959input[type="file"] :enabled::files-selector-button:hover {
960- background-color: color-mix(in lab, currentColor 10%, transparent);
960+ background-color: color-mix(currentColor 10%, transparent);
961961}
962962
963963button:enabled:active,
@@ -966,7 +966,7 @@ input[type="color"]:enabled:active,
966966input[type="button"] :enabled:active,
967967input[type="submit"] :enabled:active,
968968input[type="file"] :enabled::files-selector-button:active {
969- background-color: color-mix(in lab, currentColor 20%, transparent);
969+ background-color: color-mix(currentColor 20%, transparent);
970970}
971971
972972button:disabled,
@@ -975,7 +975,7 @@ input[type="color"]:disabled,
975975input[type="button"] :disabled,
976976input[type="submit"] :disabled,
977977input[type="file"] :disabled::files-selector-button {
978- color: color-mix(in srgb, currentColor 50%, transparent);
978+ color: color-mix(currentColor 50%, transparent);
979979}
980980```
981981
@@ -1006,13 +1006,13 @@ select option {
10061006 white-space: nowrap;
10071007}
10081008select option:enabled:hover {
1009- background-color: color-mix(in lab, currentColor 10%, transparent);
1009+ background-color: color-mix(currentColor 10%, transparent);
10101010}
10111011select option:enabled:active {
1012- background-color: color-mix(in lab, currentColor 20%, transparent);
1012+ background-color: color-mix(currentColor 20%, transparent);
10131013}
10141014select option:disabled {
1015- color: color-mix(in lab, currentColor 50%, transparent);
1015+ color: color-mix(currentColor 50%, transparent);
10161016}
10171017select option::checkmark {
10181018 content: '\2713' / '';
0 commit comments