From e5b30d6e635af2a707c7af19ad5d0c13021a9c2c Mon Sep 17 00:00:00 2001 From: BoulderBadgeDad Date: Wed, 10 Jun 2026 14:10:58 -0700 Subject: [PATCH] Profiles: restore hand cursor on the clickable Service Status section The cursor:pointer + hover rules were collateral damage when the dead credential-set CSS block was removed. Re-added them (admin = pointer on the section + its rows; non-admin stays default). --- webui/static/style.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/webui/static/style.css b/webui/static/style.css index 42584cb2..0476eb6a 100644 --- a/webui/static/style.css +++ b/webui/static/style.css @@ -67674,8 +67674,12 @@ body.em-scroll-lock { overflow: hidden; } .ss-hybrid-logo { width: 26px; height: 26px; object-fit: contain; } .ss-hybrid-name { font-size: 0.9rem; } -/* Service Status is admin-only — non-admins get no clickable affordance. */ -.status-section--locked { cursor: default; } +/* Service Status quick-switch (admin only) — show the hand cursor so it's + clearly clickable; non-admins get no clickable affordance. */ +.status-section--clickable { cursor: pointer; border-radius: 10px; transition: background 0.15s; } +.status-section--clickable:hover { background: rgba(255, 255, 255, 0.04); } +.status-section--clickable .status-indicator { cursor: pointer; } +.status-section--locked, .status-section--locked .status-indicator { cursor: default; } .status-section--locked:hover { background: transparent; } /* ── My Accounts (per-profile self-auth for playlist services) ── */