diff options
| author | ilotterytea <iltsu@alright.party> | 2025-10-26 19:05:59 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-10-26 19:05:59 +0500 |
| commit | c3465bddcbb1da935160b0f0612e6616ab927279 (patch) | |
| tree | 15e4efe33647e57aebba8fcd050f1d90aecfb469 /style.css | |
| parent | 7659da266be73503c578a4ffe8dda9bc3b63fba3 (diff) | |
feat: display joined/parted chatters
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -18,11 +18,15 @@ .message { background: var(--message-background); text-shadow: 1px 1px 2px var(--message-shadow-color); - color: var(--message-color); padding: 4px; border-bottom: 1px solid var(--message-shadow-color); font-family: Arial, Helvetica, sans-serif; font-size: 16px; + color: gray; +} + +.message:has(.author) { + color: var(--message-color); } .message .author { |
