From 9453b4ce2f72e65945dc3f3a222e1e81c58ed048 Mon Sep 17 00:00:00 2001 From: Wirlaburla Date: Tue, 14 Jan 2025 18:47:14 -0600 Subject: [PATCH] add banned usertag styling --- core/css/theme.css | 2 ++ core/style.css | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/core/css/theme.css b/core/css/theme.css index ed3b2b6..53fa263 100755 --- a/core/css/theme.css +++ b/core/css/theme.css @@ -17,6 +17,8 @@ --secondary-container-background: #cacaca; --secondary-container-border: 2px outset #c1c1c1; + --user-banned: #8b0000; + --table-alternate: #dbdbdb; --header-bg: #ffffff; diff --git a/core/style.css b/core/style.css index 41324ff..0d6ea18 100644 --- a/core/style.css +++ b/core/style.css @@ -1803,6 +1803,10 @@ heading .button { margin-right: 4px; } +.userlink a.banned { + color: var(--user-banned); +} + .message-container { background-color: var(--main-background); border: var(--primary-container-border);