mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-09 19:30:15 +00:00
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; }
|
#navigator-toolbox{ margin-bottom: var(--uc-navbar-height) !important; }
|
||||||
#PersonalToolbar:not([customizing]){
|
#PersonalToolbar:not([customizing]){
|
||||||
position: fixed !important;
|
min-height: 0 !important;
|
||||||
display: block;
|
margin-bottom: 0;
|
||||||
margin-bottom: 0px !important;
|
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 */
|
/* This would break buttons placed in the toolbar but that is likely not happening if you are using multi-row setup */
|
||||||
/*
|
/*
|
||||||
#PersonalToolbar:not([customizing]){
|
#PersonalToolbar:not([customizing]){
|
||||||
position: fixed;
|
min-height: 0 !important;
|
||||||
display: block;
|
margin-bottom: 0;
|
||||||
margin-bottom: 0px !important;
|
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