Autohide expands behind window content #3649
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Autohide is not a feature of TST, it is a userChrome.css customization topic. Thus I move this from issues to discussions. |
Beta Was this translation helpful? Give feedback.
-
I fixed this issue by increasing the #sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"]:hover,
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"]
#sidebar {
min-width: var(--sidebar-visible-width) !important;
max-width: var(--sidebar-visible-width) !important;
transition-delay: 0s;
transition-duration: 0.15s;
z-index: 3;
} More infoI ran into this issue with 133.0b3 (Firefox Developer Edition). I noticed that the sidebar displayed over the browser viewport when it was animating, but then was covered by the viewport when it finished animating. After using the browser developer tools to inspect the user chrome styling, I noticed that the z-index for the browser This explained the behavior I observed, since the example userChrome.css styles set a higher z-index for the non- Increasing the z-index for the hovered state above Edit: I edited the example in the Wiki to fix this issue. |
Beta Was this translation helpful? Give feedback.
I fixed this issue by increasing the
z-index
in#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"]:hover
to 3 in myuserChrome.css
styles for the sidebar on hover.More info
I ran into this issue with 133.0b3 (Firefox Developer Edition).
I noticed that the sidebar displayed over the browser viewport when it was animat…