Skip to content

Commit

Permalink
Merge pull request #15575 from vector-im/t3chguy/fix/jitsi
Browse files Browse the repository at this point in the history
Fix Jitsi regressions with custom themes
  • Loading branch information
t3chguy authored Oct 27, 2020
2 parents 90d5c20 + 0bdf979 commit dda3779
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/vector/jitsi/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/vector/jitsi/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit dda3779

Please sign in to comment.