We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
You can continue the conversation there. Go to discussion →
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
After upgrade of Firefox from 132.0.2 to 133.0 Shrink sidebar until hovered does not work
Tree is properly shrinking
Tree is not visible at all (only tool tips of cards can be seen)
Changing margin-left: calc((var(--wide-tab-width) - var(--thin-tab-width)) * -1) !important; to margin-left: -1px !important;
alt least shows tab, but works hard :/
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Abstract
After upgrade of Firefox from 132.0.2 to 133.0 Shrink sidebar until hovered does not work
Steps to reproduce
/* Shrink sidebar until hovered, when using Tree Style Tab. */
:root {
--thin-tab-width: 1px;
--wide-tab-width: 100px;
}
#sidebar-box:not([sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"]) {
min-width: var(--wide-tab-width) !important;
max-width: none !important;
}
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] {
position: relative !important;
transition: all 100ms !important;
min-width: var(--thin-tab-width) !important;
max-width: var(--thin-tab-width) !important;
}
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"]:hover {
transition: all 200ms !important;
min-width: var(--wide-tab-width) !important;
max-width: var(--wide-tab-width) !important;
margin-left: calc((var(--wide-tab-width) - var(--thin-tab-width)) * -1) !important;
}
Expected result
Tree is properly shrinking
Actual result
Tree is not visible at all (only tool tips of cards can be seen)
Workaround
Changing
margin-left: calc((var(--wide-tab-width) - var(--thin-tab-width)) * -1) !important;
to
margin-left: -1px !important;
alt least shows tab, but works hard :/
Environment
The text was updated successfully, but these errors were encountered: