Make inputs and buttons in table form equal height

Closes #38
This commit is contained in:
cryptogopher 2024-12-24 02:02:10 +01:00
parent a9307ad455
commit 7759021ba1

View File

@ -446,6 +446,11 @@ table.items input[type=submit] {
font-weight: normal;
padding: 0.3em;
}
table.items input:not([type=submit]):not([type=checkbox]),
table.items select,
table.items textarea {
padding-block: 0.375em;
}
/* TODO: find a way (layers?) to style inputs differently while making sure
* hover works properly without using :not(:hover) selectors here. */
table.items .button:not(:hover),