-
-
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 svg icons disapearing in app navigation when text overflows #27936
Fix svg icons disapearing in app navigation when text overflows #27936
Conversation
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.
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.
You are right. I've overlooked that this only happens with Firefox.
Tested the PR successfully with Firefox and Chromium
Failing drone is unrelated |
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.
Yup, tested with Firefox 89.
I think this can be backported to stable20, stable21 and stable22 as the issue seems to be the same. I didn't try to apply this commit in those branches though.
@CarlSchwan do you mind signing off your commits to pass the DCO check? |
e44082a
to
99e845d
Compare
The issue is caused by the icon being positionned with negative margins and the `overflow: hidden` rule when hide the icon when the text overflows. Remove positioning with negative margins. This was only happening in Firefox. This fix nextcloud#23849 Signed-off-by: Carl Schwan <[email protected]>
99e845d
to
d0afc49
Compare
Done :) and added |
Great! Thanks a lot! :) |
Thanks for your first pull request and welcome to the community! Feel free to keep them coming! If you are looking for issues to tackle then have a look at this selection: https://github.com/nextcloud/server/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22 |
/backport to stable22 |
/backport to stable21 |
/backport to stable20 |
Damn, yes I can see it too. We couldn't see it because of the style caching... |
Hmm I can't reproduce with firefox but I can with chromium. On it |
I can reproduce with both FF and Chromium. Did you try to reload without using the cache (just in case: CTRL+F5)? |
I created a patch that hopefully fix the issue (it does for me): https://github.com/nextcloud/server/pull/27973/files |
See #27936 Signed-off-by: Carl Schwan <[email protected]>
See #27936 Signed-off-by: Carl Schwan <[email protected]>
See #27936 Signed-off-by: Carl Schwan <[email protected]>
See #27936 Signed-off-by: Carl Schwan <[email protected]>
The issue is caused by the icon being positionned with negative margins
and the
overflow: hidden
rule when hide the icon when the textoverflows. Remove positioning with negative margins.
This fix #23849
Closes #24378