From 434a8f7705c0370a5ff5b2128221addb1fd9b96e Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Wed, 12 Mar 2025 13:58:20 +0100 Subject: [PATCH] CSS: Disable odd on hover --- 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 98bfe9c0..928760b7 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) td { background: #F5F5F5; } +.odds tbody tr:nth-child(2n):not(: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; }