Skip to content

Commit

Permalink
Adding CSS that resolves the problem
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Glombik committed Oct 24, 2023
1 parent 71ab36f commit 5761ea1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/webapp/content/scss/themes/theme-dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ html {
.mat-mdc-menu-trigger.mat-mdc-button:hover {
background-color: $neutral-dark-l-5;
}

.mat-mdc-option.mdc-list-item {
background-color: $neutral-dark-l-5;

&:hover {
background-color: $neutral-dark-l-10;
}
}
}

@import '../global';
Expand Down
8 changes: 8 additions & 0 deletions src/main/webapp/content/scss/themes/theme-default.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ html {
.mat-mdc-menu-trigger.mat-mdc-button:hover {
background-color: $gray-200;
}

.mat-mdc-option.mdc-list-item {
background-color: $gray-100;

&:hover {
background-color: $white;
}
}
}

@import '../global';
Expand Down

0 comments on commit 5761ea1

Please sign in to comment.