aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/html/pages
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2023-05-15 12:25:41 +0200
committerAleksandr Nogikh <wp32pw@gmail.com>2023-05-15 13:09:56 +0200
commitc21db32085ac574c19fe0cd1b27aaffd781ea671 (patch)
treebad9a6cc51e9ec8e7dd71a0f489bfb8b6933f898 /pkg/html/pages
parent42cd95d93561db6d07e4dc74b05dc1a8299ab45e (diff)
pkg/html: add hover styles for tree origin table rows
Diffstat (limited to 'pkg/html/pages')
-rw-r--r--pkg/html/pages/style.css18
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 {