From 68e8b5bf691b60431ac104972a569a10b0284500 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Sun, 1 Feb 2026 03:11:54 +0100 Subject: [PATCH] Highlight odd rows in nested tables --- adminer/static/default.css | 1 + 1 file changed, 1 insertion(+) diff --git a/adminer/static/default.css b/adminer/static/default.css index 7f082393..7f51e743 100644 --- a/adminer/static/default.css +++ b/adminer/static/default.css @@ -57,6 +57,7 @@ input.wayoff { left: -1000px; position: absolute; } .date { color: #7F007F; } .enum { color: #007F7F; } .binary { color: red; } +.odds tbody tr { background: var(--bg); } .odds tbody tr:nth-child(2n) { background: #F5F5F5; } .js .checkable .checked td, .js .checkable .checked th { background: var(--lit); } .time { color: silver; font-size: 70%; }