Fix colors in old fullpage mode (#139)
This commit is contained in:
parent
8518292900
commit
5f4ac233af
@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## ??? (Not Released Yet)
|
||||||
|
|
||||||
|
### Minor changes and fixes
|
||||||
|
|
||||||
|
* #139: Fix colors in old fullpage mode (used for OBS integration for example).
|
||||||
|
|
||||||
## 10.0.0
|
## 10.0.0
|
||||||
|
|
||||||
### New features
|
### New features
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
:root {
|
||||||
|
// we add --livechat-transparent variable, so that users can customize transparent background in OBS (for example).
|
||||||
|
--livechat-transparent: rgba(0 0 0 / 0%);
|
||||||
|
}
|
||||||
|
|
||||||
body.converse-fullscreen,
|
body.converse-fullscreen,
|
||||||
body.converse-embedded {
|
body.converse-embedded {
|
||||||
--peertube-main-foreground: #000;
|
--peertube-main-foreground: #000;
|
||||||
@ -12,9 +17,6 @@ body.converse-embedded {
|
|||||||
--peertube-button-background: #f2690d;
|
--peertube-button-background: #f2690d;
|
||||||
--peertube-link: #000;
|
--peertube-link: #000;
|
||||||
--peertube-link-hover: #000;
|
--peertube-link-hover: #000;
|
||||||
|
|
||||||
// we add --livechat-transparent variable, so that users can customize transparent background in OBS (for example).
|
|
||||||
--livechat-transparent: rgba(0 0 0 / 0%);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.conversejs.theme-peertube,
|
.conversejs.theme-peertube,
|
||||||
|
@ -103,9 +103,10 @@ async function initWebchatRouter (options: RegisterServerOptionsV5): Promise<Rou
|
|||||||
} else {
|
} else {
|
||||||
const autoColorsTest = areAutoColorsValid(autocolors)
|
const autoColorsTest = areAutoColorsValid(autocolors)
|
||||||
if (autoColorsTest === true) {
|
if (autoColorsTest === true) {
|
||||||
|
// Note: we use body.converse-fullscreen.theme-peertube to be more specific than code in _variable.scss.
|
||||||
autocolorsStyles = `
|
autocolorsStyles = `
|
||||||
<style>
|
<style>
|
||||||
:root {
|
body.converse-fullscreen.theme-peertube {
|
||||||
--peertube-main-foreground: ${autocolors.mainForeground};
|
--peertube-main-foreground: ${autocolors.mainForeground};
|
||||||
--peertube-main-background: ${autocolors.mainBackground};
|
--peertube-main-background: ${autocolors.mainBackground};
|
||||||
--peertube-grey-foreground: ${autocolors.greyForeground};
|
--peertube-grey-foreground: ${autocolors.greyForeground};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user