Skip to content

Commit

Permalink
Merge pull request #42963 from nextcloud/szaimen-patch-1
Browse files Browse the repository at this point in the history
fix header inversion bug
  • Loading branch information
szaimen authored Jan 22, 2024
2 parents d515227 + 2dd05ab commit 93db067
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/css/header.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/css/header.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 14 additions & 1 deletion core/css/header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,20 @@
/* Right header standard */
.header-right {
> .header-menu:not(.user-menu) {
filter: var(--background-image-invert-if-bright);
// For general
> .header-menu__trigger {
filter: var(--background-image-invert-if-bright) !important;
}

// For assistant button
> .trigger {
filter: var(--background-image-invert-if-bright) !important;
}

// For unified search button
.unified-search__trigger {
filter: var(--background-image-invert-if-bright) !important;
}
}
> div,
> form {
Expand Down

0 comments on commit 93db067

Please sign in to comment.