From be5d174dd76be4270f5798dbfe2660b1b0667583 Mon Sep 17 00:00:00 2001 From: Lionel Laffineur Date: Sun, 24 Mar 2024 14:01:16 +0100 Subject: [PATCH] Minor cosmetics around input and select --- adminer/static/default.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/adminer/static/default.css b/adminer/static/default.css index 56e5ae1f..51661146 100644 --- a/adminer/static/default.css +++ b/adminer/static/default.css @@ -24,13 +24,14 @@ 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, button { vertical-align: middle; border-radius: 5px; padding: 2px; } +input, button { vertical-align: middle; border-radius: 5px; padding: 2px; border-width: 1px; } input.default { box-shadow: 1px 1px 1px #777; } input.required { box-shadow: 1px 1px 1px red; } input.maxlength { box-shadow: 1px 1px 1px red; } input.wayoff { left: -1000px; position: absolute; } input[type='submit'] { padding-left: 10px; padding-right: 10px; } -select { border-radius: 5px; padding: 2px; vertical-align: middle;; } +select { border-radius: 5px; padding: 2px; vertical-align: middle; } +table select { width: 100%; } fieldset label input[type='checkbox'] { margin-bottom: 6px; } fieldset a { line-height: 20px; } #fieldset-select .icon, #fieldset-search .icon, #fieldset-sort .icon { cursor: pointer; }