Skip to content

Commit

Permalink
Add exit fullscreen icon
Browse files Browse the repository at this point in the history
  • Loading branch information
flachware committed Jul 3, 2023
1 parent 1cfcc37 commit fc125fc
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
6 changes: 6 additions & 0 deletions res/icons/window/linux/dark/exit-fullscreen.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions res/icons/window/linux/light/exit-fullscreen.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions src/stylesheets/partials/_window-controls.scss
Expand Up @@ -136,6 +136,23 @@
.close {
background-image: icon-url("window/linux/#{$theme}/close.svg");

.is-full-screen & {
display: none;
}

.window-controls-right & {
order: 3;
}
}

.fullscreen {
background-image: icon-url("window/linux/#{$theme}/exit-fullscreen.svg");
display: none;

.is-full-screen & {
display: flex;
}

.window-controls-right & {
order: 3;
}
Expand Down

0 comments on commit fc125fc

Please sign in to comment.