diff options
author | 2024-07-13 12:26:16 +0200 | |
---|---|---|
committer | 2024-07-13 12:26:16 +0200 | |
commit | c83e96b8a740a44f565068d06c4f12eef486b7e5 (patch) | |
tree | a49ff113cb373953dfbe85e3406971a4d1a6779b /web/source/css | |
parent | [bugfix] Fix panic in `isStatusHomeTimelineable` (#3096) (diff) | |
download | gotosocial-c83e96b8a740a44f565068d06c4f12eef486b7e5.tar.xz |
[chore/frontend] Tweak threading a bit, inform about hidden replies (#3097)
* [chore/frontend] Tweak threading a bit, inform about hidden replies
* whoops
* round off bottom of replies col-header if no replies visible
Diffstat (limited to 'web/source/css')
-rw-r--r-- | web/source/css/thread.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/web/source/css/thread.css b/web/source/css/thread.css index 4f4e3e938..e2e6ae6b7 100644 --- a/web/source/css/thread.css +++ b/web/source/css/thread.css @@ -42,6 +42,15 @@ h2 { margin-right: auto; } + + &.replies.hidden-only { + /* + No visible replies below this column + header, so round off the bottom. + */ + border-bottom-left-radius: $br; + border-bottom-right-radius: $br; + } } .status { |