diff options
| author | Fuwn <[email protected]> | 2026-03-01 15:50:17 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-03-01 15:50:45 -0800 |
| commit | 87693d8b99fcbe9a0d64af51f1c786dc62dffd4a (patch) | |
| tree | 65ae6f17ce98af76de782ba7fb5ff3466861a618 /src/styles/input.css | |
| parent | chore(biome): enable formatting for sample media json (diff) | |
| download | due.moe-87693d8b99fcbe9a0d64af51f1c786dc62dffd4a.tar.xz due.moe-87693d8b99fcbe9a0d64af51f1c786dc62dffd4a.zip | |
chore(biome): enable css formatting
Diffstat (limited to 'src/styles/input.css')
| -rw-r--r-- | src/styles/input.css | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/styles/input.css b/src/styles/input.css index b8ae7574..a66eb009 100644 --- a/src/styles/input.css +++ b/src/styles/input.css @@ -35,26 +35,26 @@ button { /* color: var(--base05); */ } - input[type='number']::-webkit-inner-spin-button, - input[type='number']::-webkit-outer-spin-button { + input[type="number"]::-webkit-inner-spin-button, + input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; } - input[type='number'] { + input[type="number"] { appearance: textfield; } - input[type='file'] { + input[type="file"] { color: var(--base02); } } -input[type='text'], -input[type='number'], -input[type='date'], -input[type='time'], -input[type='file'], +input[type="text"], +input[type="number"], +input[type="date"], +input[type="time"], +input[type="file"], button { padding: 0.25em 0.5em; } @@ -69,7 +69,7 @@ select { padding: 0.25em 0.5em; } -input[type='checkbox'] { +input[type="checkbox"] { -webkit-appearance: none; appearance: none; margin: 0; @@ -80,23 +80,23 @@ input[type='checkbox'] { transform 0.15s ease-in-out; } -input[type='checkbox']:checked { +input[type="checkbox"]:checked { background-color: var(--base0C); } -input[type='checkbox']:checked:before { +input[type="checkbox"]:checked:before { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } -input[type='checkbox']:active { +input[type="checkbox"]:active { transform: scale(1); transition: transform 0.15s ease-in-out; } -input[type='checkbox']:hover { +input[type="checkbox"]:hover { background-color: var(--base0A); } |