From ad165389f05fa1fd5b5eacce9bd6318f28e396fb Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Sun, 10 Nov 2024 21:04:28 +0100 Subject: [PATCH] Fix nick colors in members list Closes: https://todo.sr.ht/~emersion/gamja/164 --- style.css | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/style.css b/style.css index b5b364e..aceb653 100644 --- a/style.css +++ b/style.css @@ -364,9 +364,15 @@ a { color: var(--green); } #buffer-list li a, a.timestamp, a.nick { - color: var(--gray); text-decoration: none; } +#buffer-list li a, +a.nick { + color: var(--main-color); +} +a.timestamp { + color: var(--gray); +} #buffer-list li a:hover, #buffer-list li a:active, a.timestamp:hover, a.timestamp:active, a.nick:hover, a.nick:active { @@ -630,11 +636,6 @@ ul.switcher-list .server { border-color: #3897ff; } - #buffer-list li a, - a.nick { - color: var(--main-color); - } - #buffer { background: var(--main-background); }