From: Jakub Vrana Date: Wed, 12 Mar 2025 16:34:53 +0000 (+0100) Subject: CSS: Fix highlighting checked odd rows X-Git-Tag: v5.0.5~42 X-Git-Url: https://git.joonet.de/?a=commitdiff_plain;h=eb0f280776bbaae8661cbf7f41b3ecc65232dd84;p=adminer.git CSS: Fix highlighting checked odd rows --- diff --git a/adminer/static/default.css b/adminer/static/default.css index 928760b7..3ecc8cb4 100644 --- a/adminer/static/default.css +++ b/adminer/static/default.css @@ -46,7 +46,7 @@ input.wayoff { left: -1000px; position: absolute; } .date { color: #7F007F; } .enum { color: #007F7F; } .binary { color: red; } -.odds tbody tr:nth-child(2n):not(:hover) td { background: #F5F5F5; } +.odds tbody tr:nth-child(2n):not(.checked, :hover) td { background: #F5F5F5; } .js .checkable .checked td, .js .checkable .checked th { background: #ddf; } .time { color: silver; font-size: 70%; } .function, .number, .datetime { text-align: right; }