mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-08 10:40:16 +00:00
vertical_bookmarks_toolbar: make placesToolbarItems default to flex
-webkit-box doesn't work correctly in Firefox 112 and 113 so lets default to flex again and make webkit-box opt-in. It is required for Fx 114 though, but nightly users need to opt-in to using it.
This commit is contained in:
parent
97b9f5c3d8
commit
21750e272b
1 changed files with 10 additions and 3 deletions
|
@ -42,8 +42,8 @@ See the above repository for updates as well as full license text. */
|
||||||
}
|
}
|
||||||
|
|
||||||
#PersonalToolbar #PlacesToolbarItems{
|
#PersonalToolbar #PlacesToolbarItems{
|
||||||
display: -webkit-box !important;
|
display: flex !important;
|
||||||
-webkit-box-orient: vertical;
|
flex-direction: column;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
scrollbar-width: none;
|
scrollbar-width: none;
|
||||||
}
|
}
|
||||||
|
@ -74,4 +74,11 @@ See the above repository for updates as well as full license text. */
|
||||||
:root:is([chromehidden~="toolbar"],[sizemode="fullscreen"]) > body > #customization-container{
|
:root:is([chromehidden~="toolbar"],[sizemode="fullscreen"]) > body > #customization-container{
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
/* This must to be enabled for Fx 114 */
|
||||||
|
/*
|
||||||
|
#PersonalToolbar #PlacesToolbarItems{
|
||||||
|
display: -webkit-box !important;
|
||||||
|
-webkit-box-orient: vertical !important;
|
||||||
|
}
|
||||||
|
*/
|
||||||
}
|
}
|
Loading…
Reference in a new issue