mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-14 10:55:06 -05:00
Fix nick colors in members list
Closes: https://todo.sr.ht/~emersion/gamja/164
This commit is contained in:
parent
daef362931
commit
ad165389f0
1 changed files with 7 additions and 6 deletions
13
style.css
13
style.css
|
@ -364,9 +364,15 @@ a {
|
||||||
color: var(--green);
|
color: var(--green);
|
||||||
}
|
}
|
||||||
#buffer-list li a, a.timestamp, a.nick {
|
#buffer-list li a, a.timestamp, a.nick {
|
||||||
color: var(--gray);
|
|
||||||
text-decoration: none;
|
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,
|
#buffer-list li a:hover, #buffer-list li a:active,
|
||||||
a.timestamp:hover, a.timestamp:active,
|
a.timestamp:hover, a.timestamp:active,
|
||||||
a.nick:hover, a.nick:active {
|
a.nick:hover, a.nick:active {
|
||||||
|
@ -630,11 +636,6 @@ ul.switcher-list .server {
|
||||||
border-color: #3897ff;
|
border-color: #3897ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
#buffer-list li a,
|
|
||||||
a.nick {
|
|
||||||
color: var(--main-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
#buffer {
|
#buffer {
|
||||||
background: var(--main-background);
|
background: var(--main-background);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue