Skip to content

Commit

Permalink
Change background colour of popup menus for better readability
Browse files Browse the repository at this point in the history
  • Loading branch information
damiankorcz committed Aug 12, 2023
1 parent bd7aaf7 commit 86caed9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/scss/User Interface/popups.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,16 @@
// [UI] Menu Popup
.menu {
padding: var(--size-4-1);
background: var(--background-secondary);
border-color: var(--window-border-color);
box-shadow: var(--shadow-l);

.theme-light & {
background-color: var(--background-primary);
}

.theme-dark & {
background-color: var(--background-secondary-alt);
}
}

.menu-item.selected:not(.is-disabled):not(.is-label):not(.is-warning) {
Expand Down

0 comments on commit 86caed9

Please sign in to comment.