From 42e589d397e9807840f44842c1864abff02c3791 Mon Sep 17 00:00:00 2001 From: John Livingston Date: Tue, 20 May 2025 12:46:09 +0200 Subject: [PATCH] Fix: Converse bottom panel messages not visible on new Peertube v7 theme (for example for muted users) --- CHANGELOG.md | 3 ++- conversejs/custom/shared/styles/livechat.scss | 10 ++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64b4a582..f9e0d322 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 12.0.5 +## ??? (Not Released Yet) ### Minor changes and fixes @@ -9,6 +9,7 @@ * Fix #506: hide offline users by default in occupant list * Fix #547: add button to go to the end of the chat * Fix #503: set custom emojis max height to text height + bigger when posted alone +* Fix: Converse bottom panel messages not visible on new Peertube v7 theme (for example for muted users) ## 12.0.4 diff --git a/conversejs/custom/shared/styles/livechat.scss b/conversejs/custom/shared/styles/livechat.scss index d023e5c1..5c4b5cc0 100644 --- a/conversejs/custom/shared/styles/livechat.scss +++ b/conversejs/custom/shared/styles/livechat.scss @@ -264,3 +264,13 @@ body.converse-embedded { justify-content: normal !important; } } + +/* stylelint-disable-next-line no-duplicate-selectors */ +.conversejs { + converse-muc { + .muc-bottom-panel, converse-muc-bottom-panel { + // Fixing a color (Converse use a hardcoded "white", which does not work with Peertube v7 new theme) + color: var(--peertube-menu-foreground) !important; + } + } +}