diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2023-05-10 19:38:27 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2023-05-12 13:24:58 +0200 |
| commit | ecca8a243762a781257ba0b65291bca940e13e9c (patch) | |
| tree | 6a3ae8f113f81af4f43b9f9eae0ff21256496c97 /pkg/html | |
| parent | 76821f5baf47294314823eb4df0e05ceb8242d74 (diff) | |
dashboard: display bug origin tree testing results
Display them as a collapsible block on the bug info page. Use colors to
distinguish results.
Diffstat (limited to 'pkg/html')
| -rw-r--r-- | pkg/html/pages/style.css | 12 |
1 files changed, 12 insertions, 0 deletions
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; |
