diff --git a/changelog.md b/changelog.md index c01786c87..840dfc5de 100644 --- a/changelog.md +++ b/changelog.md @@ -5,6 +5,7 @@ - **Fixed:** - Preferences: Fix color changing erroring when colors have never been set - Fix focus and resize issues with new KDE 6 + - Reduce resize white border on resize for linux - **Changed:** - Update electron 28.2.4 to 29.3.0 - Update tmp 0.2.1 to 0.2.3 diff --git a/src/css/window.scss b/src/css/window.scss index 95d55be84..7cc18d0de 100644 --- a/src/css/window.scss +++ b/src/css/window.scss @@ -4,7 +4,7 @@ $color: #333; $tabBackground: menu; $tabHeight: 26; -body { +html, body { background-color: initial; } diff --git a/src/themes/clean-extra-large.scss b/src/themes/clean-extra-large.scss index 1c9a75efc..512bd8213 100644 --- a/src/themes/clean-extra-large.scss +++ b/src/themes/clean-extra-large.scss @@ -2,7 +2,7 @@ $images: "./../../assets"; $borderColor: "#908271"; $color: "wheat"; -body { +html, body { background-color: black; } diff --git a/src/themes/clean-large.scss b/src/themes/clean-large.scss index f418b839e..06967fdfb 100644 --- a/src/themes/clean-large.scss +++ b/src/themes/clean-large.scss @@ -2,7 +2,7 @@ $images: "./../../assets"; $borderColor: "#908271"; $color: "wheat"; -body { +html, body { background-color: black; } diff --git a/src/themes/clean.scss b/src/themes/clean.scss index e8b518b0b..9df321bdf 100644 --- a/src/themes/clean.scss +++ b/src/themes/clean.scss @@ -2,7 +2,7 @@ $images: "./../../assets"; $borderColor: "#908271"; $color: "wheat"; -body { +html, body { background-color: black; } diff --git a/src/themes/dark.scss b/src/themes/dark.scss index 1802e47d7..17083fa18 100644 --- a/src/themes/dark.scss +++ b/src/themes/dark.scss @@ -4,7 +4,7 @@ $color: "#d4d4d4"; $panelBackground: "#1e1e1e"; $panelInsetBackground: "#252526"; -body { +html, body { background-color: #{$panelBackground}; } diff --git a/src/themes/default.scss b/src/themes/default.scss index ee2d4ce1a..b77fcd924 100644 --- a/src/themes/default.scss +++ b/src/themes/default.scss @@ -2,7 +2,7 @@ $images: "./../../assets"; $borderColor: "#655B4D"; $color: "wheat"; -body { +html, body { background-color: black; } diff --git a/src/themes/lightgray.scss b/src/themes/lightgray.scss index d087ce534..66af88fa1 100644 --- a/src/themes/lightgray.scss +++ b/src/themes/lightgray.scss @@ -4,7 +4,7 @@ $color: "#333"; $panelBackground: "rgb(240, 240, 240)"; $panelInsetBackground: "rgb(240, 240, 240)"; -body { +html, body { background-color: #{$panelBackground}; } diff --git a/src/themes/zen.scss b/src/themes/zen.scss index a19a41b6a..e4749eb50 100644 --- a/src/themes/zen.scss +++ b/src/themes/zen.scss @@ -20,7 +20,7 @@ $panelInsetBorder: #445942; $progressText: #445942; $progressBack: #a1b88d; -body { +html, body { background-color: #{$background}; }