Also hide separators when readonly=noscroll.

This commit is contained in:
John Livingston 2022-01-07 02:15:39 +01:00
parent 7e13f61aa7
commit 8f42dd6c28
No known key found for this signature in database
GPG Key ID: B17B5640CE66CDBC
2 changed files with 10 additions and 3 deletions

View File

@ -4,7 +4,7 @@
### Features
* Builtin Prosody, Share chat url: ability to show/hide the scrollbar in readonly mode.
* Builtin Prosody, Share chat url: ability to show/hide the scrollbar in readonly mode. Note: new messages and new day separators will also be hidden if scollbars are.
* Builtin Prosody: display Peertube users avatars.
* Builtin Prosody: display random avatars for anonymous users.

View File

@ -26,6 +26,13 @@ body.livechat-readonly #conversejs {
}
}
body.livechat-readonly.livechat-noscroll converse-chat-content {
overflow-y: hidden !important;
body.livechat-readonly.livechat-noscroll {
converse-chat-content {
overflow-y: hidden !important;
}
.message.separator {
// also hide separators (new day, new message)
display: none;
}
}