Skip to content

Commit

Permalink
Updated window titlebar icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphiiko committed Jul 13, 2024
1 parent 076c2a5 commit f48cc8b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Battery level based power automations turning off devices above the threshold
- Certain types of selection in input fields (e.g. Ctrl+A) being blocked

### Changed
- Window titlebar icons

## [1.13.2]

### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
</div>
<div class="action-area">
<button class="titlebar-button btn-minimize" (click)="minimize()">
<i class="material-symbols-outlined">minimize</i>
<i class="material-symbols-outlined">remove</i>
</button>
<button class="titlebar-button btn-maximize" (click)="maximize()">
<i class="material-symbols-outlined">maximize</i>
<i class="material-symbols-outlined">check_box_outline_blank</i>
</button>
<button class="titlebar-button btn-close" (click)="close()">
<i class="material-symbols-outlined">close</i>
<i class="material-icons">close</i>
</button>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@
}
}

i.material-symbols-outlined {
font-size: 1.1em !important;
i.material-symbols-outlined,
i.material-icons {
font-size: 1.2em !important;
}
}

0 comments on commit f48cc8b

Please sign in to comment.