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

@ -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;
}
}
}