From b438bd66d6f95113d52f25c25bfef0e963c8ce8d Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Tue, 9 Jan 2024 16:27:55 +0100 Subject: dashboard: introduce an emergency stop mode Add an emergency stop button that can be used by any admin. After it's clicked two times, syzbot stops all reporting and recoding of new bugs. It's assumed that the stop mode is revoked by manually deleting an entry from the database. --- pkg/html/pages/style.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'pkg/html/pages/style.css') diff --git a/pkg/html/pages/style.css b/pkg/html/pages/style.css index 9dd1bca7f..156bf61ba 100644 --- a/pkg/html/pages/style.css +++ b/pkg/html/pages/style.css @@ -409,3 +409,15 @@ aside { .collapsible-show .show-icon { display: none; } + +.emergency-stop { + background-color: yellow; + padding: 5pt; + margin-bottom: 5pt; +} + +.emergency-stopped { + background-color: coral; + padding: 5pt; + margin-bottom: 5pt; +} -- cgit mrf-deployment