diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2025-05-06 02:33:49 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2025-05-06 02:43:31 -0400 |
| commit | a61a1031b0b55d07bae370e26ea4984a853bd513 (patch) | |
| tree | 550abe9f8c7ad6f83075d1a0e4a8625053ab3d21 /ui/styles/reset.css | |
| parent | faacbb2757ecbe947d6a6534d28da5c815f5b3ff (diff) | |
Split up link colours and use fewer wildcard patterns to re-style them.
This was causing problems with message colouring, as these rules had specificity similar to constructs like `.message.deleted`.
This approach removes their browser default styles, then adds styling specific to the channel sidebar, the app bar, and the message view.
Diffstat (limited to 'ui/styles/reset.css')
| -rw-r--r-- | ui/styles/reset.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ui/styles/reset.css b/ui/styles/reset.css index 5a17f02..c92a790 100644 --- a/ui/styles/reset.css +++ b/ui/styles/reset.css @@ -94,6 +94,14 @@ video { vertical-align: baseline; } +a, +a:hover, +a:visited, +a:active { + text-decoration: none; + color: inherit; +} + /* HTML5 display-role reset for older browsers */ article, aside, |
