-
AbstractAfter upgrade of Firefox from 132.0.2 to 133.0 Shrink sidebar until hovered does not work Steps to reproduce
Expected resultTree is properly shrinking Actual resultTree is not visible at all (only tool tips of cards can be seen) WorkaroundChanging alt least shows tab, but works hard :/ Environment
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
userChrome.css compatibility issue is Firefox side problem and out of purpose of the issue tracker, so I've moved this to the discussions. |
Beta Was this translation helpful? Give feedback.
-
Thanks for the hint, I was very confused. For me the problem was that the z-index was changed, so even though sidebar was expanding, I was not able to see the parts which was expanding. Adding |
Beta Was this translation helpful? Give feedback.
-
Check out the code snippets from the Wiki, the recommended Auto hide theme seems to be working fine with Firefox 133.0, it looks like the issue is indeed a change with the |
Beta Was this translation helpful? Give feedback.
Thanks for the hint, I was very confused.
For me the problem was that the z-index was changed, so even though sidebar was expanding, I was not able to see the parts which was expanding. Adding
z-index: 999 !important;
into#sidebar-box
section solved it.