diff options
author | Volpeon <git@volpeon.ink> | 2021-03-07 10:07:17 +0100 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2021-03-07 10:07:17 +0100 |
commit | 239e592dc93aacf8688d42f68cf0f5239e772b8a (patch) | |
tree | d78fa7183760562ca2b3ab9ecb54e6fa5352af16 | |
parent | Fix appearance of autocomplete popup items (diff) | |
download | thelounge-theme-vulpes-239e592dc93aacf8688d42f68cf0f5239e772b8a.tar.gz thelounge-theme-vulpes-239e592dc93aacf8688d42f68cf0f5239e772b8a.tar.bz2 thelounge-theme-vulpes-239e592dc93aacf8688d42f68cf0f5239e772b8a.zip |
Improved username appearance if colored usernames are disabled
-rw-r--r-- | theme.css | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -458,6 +458,12 @@ textarea.input { | |||
458 | margin-top: 0; | 458 | margin-top: 0; |
459 | } | 459 | } |
460 | 460 | ||
461 | /* CHAT GENERAL */ | ||
462 | |||
463 | #chat .user { | ||
464 | color: var(--fg-lo); | ||
465 | } | ||
466 | |||
461 | /* USERLIST */ | 467 | /* USERLIST */ |
462 | 468 | ||
463 | #chat .userlist { | 469 | #chat .userlist { |
@@ -570,6 +576,10 @@ textarea.input { | |||
570 | font-size: 15px; | 576 | font-size: 15px; |
571 | } | 577 | } |
572 | 578 | ||
579 | #chat:not(.colored-nicks) .msg[data-type="message"] .content .user { | ||
580 | color: var(--color--yellow); | ||
581 | } | ||
582 | |||
573 | #chat .msg[data-type="message"], | 583 | #chat .msg[data-type="message"], |
574 | #chat .msg[data-type="message"] + .msg { | 584 | #chat .msg[data-type="message"] + .msg { |
575 | margin-top: calc(var(--dim--spacing) * 1.5); | 585 | margin-top: calc(var(--dim--spacing) * 1.5); |