From 3f6136205d0fbb70e7a16f0e4bcb493852b2d33a Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Thu, 3 Apr 2025 23:17:02 +0200 Subject: [PATCH] CSS: Add border-radius to fieldset (fix #980) --- adminer/static/default.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adminer/static/default.css b/adminer/static/default.css index 1d9d4dd4..62906f30 100644 --- a/adminer/static/default.css +++ b/adminer/static/default.css @@ -23,7 +23,7 @@ th { background: #eee; text-align: left; } thead { position: sticky; top: 0; } thead th { text-align: center; padding: .2em .5em; } thead td, thead th { background: #ddf; } -fieldset { display: inline; vertical-align: top; padding: .5em .8em; margin: .8em .5em 0 0; border: 1px solid #999; } +fieldset { display: inline; vertical-align: top; padding: .5em .8em; margin: .8em .5em 0 0; border: 1px solid #999; border-radius: 5px; } p { margin: .8em 20px 0 0; } img { vertical-align: middle; border: 0; } td img { max-width: 200px; max-height: 200px; }