From c21db32085ac574c19fe0cd1b27aaffd781ea671 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Mon, 15 May 2023 12:25:41 +0200 Subject: pkg/html: add hover styles for tree origin table rows --- pkg/html/pages/style.css | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'pkg/html/pages') diff --git a/pkg/html/pages/style.css b/pkg/html/pages/style.css index 8ced887ba..4331f4396 100644 --- a/pkg/html/pages/style.css +++ b/pkg/html/pages/style.css @@ -208,15 +208,27 @@ table td, table th { } .list_table .status-crashed { - background-color: #FF8674; + background-color: #FF8674; +} + +.list_table tr:hover .status-crashed { + background-color: #ffa397; } .list_table .status-ok { - background-color: lightgreen; + background-color: lightgreen; +} + +.list_table tr:hover .status-ok { + background-color: palegreen; } .list_table .status-error { - background-color: lightgray; + background-color: lightgray; +} + +.list_table tr:hover .status-error { + background-color: gainsboro; } .bug-label { -- cgit mrf-deployment