Make multi-row_bookmarks.css compatibility rules work in Firefox 107
In 107 (but not in 108) you also need to set layout.css.moz-box-flexbox-emulation.enabled to true for things to work
This commit is contained in:
parent
22a42117d0
commit
b958b75f2c
2 changed files with 28 additions and 8 deletions
|
@ -115,8 +115,18 @@ See the above repository for updates as well as full license text. */
|
|||
/*
|
||||
#navigator-toolbox{ margin-bottom: var(--uc-navbar-height) !important; }
|
||||
#PersonalToolbar:not([customizing]){
|
||||
position: fixed !important;
|
||||
display: block;
|
||||
margin-bottom: 0px !important;
|
||||
min-height: 0 !important;
|
||||
margin-bottom: 0;
|
||||
height: 0;
|
||||
overflow-y: visible !important;
|
||||
z-index: 2;
|
||||
padding-inline: 0 !important;
|
||||
}
|
||||
#personal-bookmarks{
|
||||
background: inherit;
|
||||
height: min-content;
|
||||
}
|
||||
#PlacesToolbarDropIndicatorHolder{
|
||||
pointer-events: none !important;
|
||||
}
|
||||
*/
|
|
@ -54,8 +54,18 @@ See the above repository for updates as well as full license text. */
|
|||
/* This would break buttons placed in the toolbar but that is likely not happening if you are using multi-row setup */
|
||||
/*
|
||||
#PersonalToolbar:not([customizing]){
|
||||
position: fixed;
|
||||
display: block;
|
||||
margin-bottom: 0px !important;
|
||||
min-height: 0 !important;
|
||||
margin-bottom: 0;
|
||||
height: 0;
|
||||
overflow-y: visible !important;
|
||||
z-index: 2;
|
||||
padding-inline: 0 !important;
|
||||
}
|
||||
#personal-bookmarks{
|
||||
background: inherit;
|
||||
height: min-content;
|
||||
}
|
||||
#PlacesToolbarDropIndicatorHolder{
|
||||
pointer-events: none !important;
|
||||
}
|
||||
*/
|
Loading…
Reference in a new issue