diff options
author | Andrew Godwin | 2022-11-28 22:14:52 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-28 22:14:52 -0700 |
commit | 0bced8fe174de24ebd3823c93997cb2d2347dfe9 (patch) | |
tree | ddc86664e442810b37dcb4835fa17ed0a139a9c3 /static | |
parent | 1ad9bfcb06aec3678c345fd97103f2c73396cd44 (diff) | |
download | takahe-0bced8fe174de24ebd3823c93997cb2d2347dfe9.tar.gz takahe-0bced8fe174de24ebd3823c93997cb2d2347dfe9.tar.bz2 takahe-0bced8fe174de24ebd3823c93997cb2d2347dfe9.zip |
A few hashtag fixups
Diffstat (limited to 'static')
-rw-r--r-- | static/css/style.css | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/static/css/style.css b/static/css/style.css index ebbedb0..fb41646 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -92,6 +92,7 @@ td a { --color-text-duller: #5f6983; --color-text-dull: #99a; --color-text-main: #fff; + --color-text-link: rgb(176, 194, 206); --color-input-border: #000; --color-input-border-active: #444b5d; @@ -451,6 +452,7 @@ form .field .label-input { form .field.stats { width: 100%; } + form .field.stats table { width: 50%; } @@ -907,11 +909,14 @@ table.metadata td.name { width: 16px; } -.post a.hashtag, .post.mini a.hashtag { +.post a.hashtag, +.post.mini a.hashtag { text-decoration: none; + color: var(--color-text-link); } -.post a.hashtag:hover, .post.mini a.hashtag:hover { +.post a.hashtag:hover, +.post.mini a.hashtag:hover { text-decoration: underline; } |