Fix: Converse bottom panel messages not visible on new Peertube v7 theme (for example for muted users)

This commit is contained in:
John Livingston 2025-05-20 12:46:09 +02:00 committed by John Livingston
parent 02fff14351
commit 42e589d397
2 changed files with 12 additions and 1 deletions

View File

@ -1,6 +1,6 @@
# Changelog # Changelog
## 12.0.5 ## ??? (Not Released Yet)
### Minor changes and fixes ### Minor changes and fixes
@ -9,6 +9,7 @@
* Fix #506: hide offline users by default in occupant list * Fix #506: hide offline users by default in occupant list
* Fix #547: add button to go to the end of the chat * 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 #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 ## 12.0.4

View File

@ -264,3 +264,13 @@ body.converse-embedded {
justify-content: normal !important; 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;
}
}
}