Merge pull request #15577 from vector-im/t3chguy/fix/jitsi-cherry-pick

[Release] Fix Jitsi regressions with custom themes
release-v1.7.11
Michael Telatynski 2020-10-27 12:05:09 +00:00 committed by GitHub
commit ce44cbb2dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ limitations under the License.
}
$dark-fg: #edf3ff;
$dark-bg: rgba(141, 151, 165, 0.2);
$dark-bg: #363c43;
$light-fg: #2e2f32;
$light-bg: #fff;
body {

View File

@ -70,7 +70,7 @@ let meetApi: any; // JitsiMeetExternalAPI
const theme = qsParam('theme', true);
if (theme) {
document.body.classList.add(`theme-${theme}`);
document.body.classList.add(`theme-${theme.replace(" ", "_")}`);
}
// Set this up as early as possible because Element will be hitting it almost immediately.