Skip to content

Commit

Permalink
Reduce resize white border on resize for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
icewolfz committed Apr 15, 2024
1 parent a6d5334 commit 764cda4
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/css/window.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $color: #333;
$tabBackground: menu;
$tabHeight: 26;

body {
html, body {
background-color: initial;
}

Expand Down
2 changes: 1 addition & 1 deletion src/themes/clean-extra-large.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ $images: "./../../assets";
$borderColor: "#908271";
$color: "wheat";

body {
html, body {
background-color: black;
}

Expand Down
2 changes: 1 addition & 1 deletion src/themes/clean-large.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ $images: "./../../assets";
$borderColor: "#908271";
$color: "wheat";

body {
html, body {
background-color: black;
}

Expand Down
2 changes: 1 addition & 1 deletion src/themes/clean.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ $images: "./../../assets";
$borderColor: "#908271";
$color: "wheat";

body {
html, body {
background-color: black;
}

Expand Down
2 changes: 1 addition & 1 deletion src/themes/dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $color: "#d4d4d4";
$panelBackground: "#1e1e1e";
$panelInsetBackground: "#252526";

body {
html, body {
background-color: #{$panelBackground};
}

Expand Down
2 changes: 1 addition & 1 deletion src/themes/default.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ $images: "./../../assets";
$borderColor: "#655B4D";
$color: "wheat";

body {
html, body {
background-color: black;
}

Expand Down
2 changes: 1 addition & 1 deletion src/themes/lightgray.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $color: "#333";
$panelBackground: "rgb(240, 240, 240)";
$panelInsetBackground: "rgb(240, 240, 240)";

body {
html, body {
background-color: #{$panelBackground};
}

Expand Down
2 changes: 1 addition & 1 deletion src/themes/zen.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $panelInsetBorder: #445942;
$progressText: #445942;
$progressBack: #a1b88d;

body {
html, body {
background-color: #{$background};
}

Expand Down

0 comments on commit 764cda4

Please sign in to comment.