Run prettier
All checks were successful
/ build (push) Successful in 12s

This commit is contained in:
kritzl 2025-03-03 16:46:05 +01:00
commit 155d47222e
Signed by: kritzl
SSH key fingerprint: SHA256:5BmINP9VjZWaUk5Z+2CTut1KFhwLtd0ZynMekKbtViM
20 changed files with 5172 additions and 4003 deletions

View file

@ -86,13 +86,13 @@ table td.val:not(.empty).hover {
table td.val:not(.empty):hover {
background-color: var(--color-shade-3);
}
table td.val.highlighted[data-dim=A] {
table td.val.highlighted[data-dim="A"] {
background-color: rgb(96, 165, 249);
}
table td.val.highlighted[data-dim=B] {
table td.val.highlighted[data-dim="B"] {
background-color: rgb(211, 129, 247);
}
table td.val.highlighted[data-dim=C] {
table td.val.highlighted[data-dim="C"] {
background-color: rgb(255, 121, 117);
}
table td.val.currentDimension:not(.hover) {
@ -165,7 +165,7 @@ div.filterBox > div label {
align-items: center;
gap: 0.5rem;
}
div.filterBox > div label input[type=checkbox] {
div.filterBox > div label input[type="checkbox"] {
appearance: none;
background-color: var(--color-shade-1);
margin: 0;
@ -178,7 +178,7 @@ div.filterBox > div label input[type=checkbox] {
position: relative;
font-family: inherit;
}
div.filterBox > div label input[type=checkbox]::before {
div.filterBox > div label input[type="checkbox"]::before {
position: absolute;
inset: 0;
content: "x";
@ -188,7 +188,7 @@ div.filterBox > div label input[type=checkbox]::before {
transform: scale(0);
transition: 120ms transform ease-in-out;
}
div.filterBox > div label input[type=checkbox]:checked::before {
div.filterBox > div label input[type="checkbox"]:checked::before {
transform: scale(1);
}