diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2023-05-15 12:25:41 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2023-05-15 13:09:56 +0200 |
| commit | c21db32085ac574c19fe0cd1b27aaffd781ea671 (patch) | |
| tree | bad9a6cc51e9ec8e7dd71a0f489bfb8b6933f898 /pkg | |
| parent | 42cd95d93561db6d07e4dc74b05dc1a8299ab45e (diff) | |
pkg/html: add hover styles for tree origin table rows
Diffstat (limited to 'pkg')
| -rw-r--r-- | pkg/html/pages/style.css | 18 |
1 files changed, 15 insertions, 3 deletions
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 { |
