From c8878d165221dc67f3bd595cfe0ca3c6d2947f1a Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Mon, 7 Apr 2025 19:24:33 +0200 Subject: [PATCH] CSS: Avoid footer shadow over text --- 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 c10ff401..9178e127 100644 --- a/adminer/static/default.css +++ b/adminer/static/default.css @@ -72,7 +72,7 @@ input.wayoff { left: -1000px; position: absolute; } .icon:hover { background-color: red; } .size { width: 7ex; } .help { cursor: help; } -.footer { position: sticky; bottom: 0; margin: 1em -20px .5em 0; box-shadow: 0 -5px 10px 10px var(--bg); } +.footer { position: sticky; bottom: 0; margin: 23px -20px .5em 0; box-shadow: 0 -5px 10px 10px var(--bg); } .footer > div { background: var(--bg); padding: 0 0 .5em; } .footer fieldset { margin-top: 0; } .links a { white-space: nowrap; margin-right: 20px; }