From ecca8a243762a781257ba0b65291bca940e13e9c Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Wed, 10 May 2023 19:38:27 +0200 Subject: dashboard: display bug origin tree testing results Display them as a collapsible block on the bug info page. Use colors to distinguish results. --- pkg/html/pages/style.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'pkg/html') diff --git a/pkg/html/pages/style.css b/pkg/html/pages/style.css index 3bff3a9ed..8ced887ba 100644 --- a/pkg/html/pages/style.css +++ b/pkg/html/pages/style.css @@ -207,6 +207,18 @@ table td, table th { font-size: 75%; } +.list_table .status-crashed { + background-color: #FF8674; +} + +.list_table .status-ok { + background-color: lightgreen; +} + +.list_table .status-error { + background-color: lightgray; +} + .bug-label { background: white; border: 1pt solid black; -- cgit mrf-deployment