From: Roy-Orbison Date: Thu, 10 Jun 2021 06:28:52 +0000 (+0930) Subject: Fix misaligned inputs X-Git-Tag: v4.16.0~138 X-Git-Url: https://git.joonet.de/?a=commitdiff_plain;h=2c8dbf49cc7902b6f95f9dbf9c07f53cd84a1d77;p=adminer.git Fix misaligned inputs Signed-off-by: Roy-Orbison (cherry picked from commit 2717333789444b98fb35ffc12372b596c917492e) --- diff --git a/adminer/static/default.css b/adminer/static/default.css index e79e426f..b5904778 100644 --- a/adminer/static/default.css +++ b/adminer/static/default.css @@ -23,7 +23,7 @@ code { background: #eee; } tbody tr:hover td, tbody tr:hover th { background: #eee; } pre { margin: 1em 0 0; } pre, textarea { font: 100%/1.25 monospace; } -input { vertical-align: middle; } +input, select { vertical-align: middle; } input.default { box-shadow: 1px 1px 1px #777; } input.required { box-shadow: 1px 1px 1px red; } input.maxlength { box-shadow: 1px 1px 1px red; }