-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix header inversion bug #42963
fix header inversion bug #42963
Conversation
af04af6
to
c2d7586
Compare
/backport to stable28 |
@@ -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 { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
> .header-menu__trigger { | |
> button { |
this should work for all I think
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I fear the assistant button is not a button but a link... (anker)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also I would rather not risk using the button tag here...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Then we should probably adjust the two other that do not use .header-menu__trigger
.
But for the moment your solution works fine!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also I would rather not risk using the button tag here...
button,
a {}
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Even more risky...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
or even better only apply to img
tag. Everything else should handle it correctly and we prevent future issues
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
works!
/compile amend / |
28ea962
to
80bb733
Compare
Signed-off-by: Simon L <[email protected]>
Signed-off-by: Ferdinand Thiessen <[email protected]> Signed-off-by: nextcloud-command <[email protected]>
80bb733
to
2dd05ab
Compare
manually rebased |
CI failure unrleated afaics |
Should fix #42962
I am not really satisfied with the solution but it is what it is...