From eade2ef0c7122bc7cb9904840080ffccaf8557c4 Mon Sep 17 00:00:00 2001 From: squid Date: Sun, 19 Jul 2026 21:14:17 +0200 Subject: [PATCH] Highlight sudo actions in red and show a pointer cursor on expandable log rows. --- webui/src/App.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/webui/src/App.css b/webui/src/App.css index 82dfa82..d94fbbb 100644 --- a/webui/src/App.css +++ b/webui/src/App.css @@ -728,6 +728,10 @@ padding: 0.1rem 0.4rem; } +.action-requires-sudo { + color: var(--ctp-red); +} + .groups-li-meta { font-size: 0.85rem; color: var(--ctp-subtext0); @@ -1572,6 +1576,10 @@ margin-bottom: 0.65rem; } +.action-log-run > summary { + cursor: pointer; +} + button.danger { color: var(--ctp-red); }