From 3bdc716021d5447176c9ff277b3af1921e7f07a4 Mon Sep 17 00:00:00 2001 From: Gary Wang Date: Mon, 14 Jul 2025 15:39:56 +0800 Subject: [PATCH] chore: add hover background to table rows in admin pages This is a small QoL change to make the admin easier to do their management job. This makes knowing which row is the correct row to operate easier by simply checking the hover background. --- web_src/css/admin.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web_src/css/admin.css b/web_src/css/admin.css index e6866b27a6881..64692fc13e089 100644 --- a/web_src/css/admin.css +++ b/web_src/css/admin.css @@ -43,6 +43,10 @@ white-space: nowrap; } +.admin .table>tbody>tr:hover { + background-color: var(--color-hover)!important; +} + .admin-responsive-columns { display: flex; flex-wrap: wrap;