diff options
author | Ollie H <renahlee@outlook.com> | 2023-05-03 22:54:22 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-04 00:54:22 -0500 |
commit | 4ef853ef6cd649af12f0810b8c38911cd639e033 (patch) | |
tree | 71a626ca099014b3c3fd6eec7d65857e7a805d2c | |
parent | 011baa78c10cc38d98795fb87a0e54c14a657791 (diff) | |
download | voidsky-4ef853ef6cd649af12f0810b8c38911cd639e033.tar.zst |
Remove text underline from lists (#574)
-rw-r--r-- | bskyweb/templates/base.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bskyweb/templates/base.html b/bskyweb/templates/base.html index d3d76ad0a..dfeae02c7 100644 --- a/bskyweb/templates/base.html +++ b/bskyweb/templates/base.html @@ -69,6 +69,9 @@ a[role="link"]:hover { text-decoration: underline; } + a[role="link"][data-no-underline="1"]:hover { + text-decoration: none; + } /* Styling hacks */ *[data-word-wrap] { |