Auto-hide sidebar user style stopped working in Firefox 72
Categories
(Firefox :: Bookmarks & History, defect)
Tracking
()
People
(Reporter: mipeli, Unassigned)
Details
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:72.0) Gecko/20100101 Firefox/72.0
Steps to reproduce:
Updates to Firefox 72.0.1
Actual results:
Does not work this script:
/*
- Description: Auto-hide sidebar.
*/
/* To right-align the sidebar, replace all occurrences of "left" with "right", and "margin-right" with "margin-left" */
:root {
--sidebar-hover-width: 10px;
--sidebar-visible-width: 200px;
}
#sidebar-box {
position: relative !important;
overflow-x: hidden !important;
margin-right: calc(var(--sidebar-hover-width) * -1) !important;
left: var(--sidebar-hover-width) !important;
min-width: var(--sidebar-hover-width) !important;
max-width: var(--sidebar-hover-width) !important;
border-right: 1px solid var(--sidebar-border-color);
}
#sidebar-box:hover {
margin-right: calc(var(--sidebar-visible-width) * -1) !important;
left: var(--sidebar-visible-width) !important;
min-width: var(--sidebar-visible-width) !important;
max-width: var(--sidebar-visible-width) !important;
}
#sidebar {
opacity: 0 !important;
}
#sidebar-box:hover #sidebar {
opacity: 1 !important;
}
/* #sidebar-header is hidden by default, change "none" to "inherit" to restore it. */
#sidebar-header {
display: none !important;
}
/* #sidebar-splitter styles the divider between the sidebar and the rest of the browser. */
#sidebar-splitter {
display: none;
}
Expected results:
Work script.
You can me script fix so, to functioned in version 72.0.1 anyhow in version 71.0.0 and older?
Thank you Mipeli
Comment 2•5 years ago
|
||
Such customizations are not supported. Refer to the user style's author for help, or a forum like https://www.reddit.com/r/FirefoxCSS/
Comment 3•5 years ago
|
||
Please don't re-open bugs without specifying a reason. Although Firefox allows a userChrome.css, we don't provide support for modifications via userChrome.css, it is the user's responsibility to maintain those modifications as they are not part of the Firefox source code. As has already been mentioned there are plenty of help forums around where you can get help.
Description
•