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:
MrOtherGuy 2023-04-16 12:07:16 +03:00
parent 97b9f5c3d8
commit 21750e272b

View file

@ -42,8 +42,8 @@ See the above repository for updates as well as full license text. */
}
#PersonalToolbar #PlacesToolbarItems{
display: -webkit-box !important;
-webkit-box-orient: vertical;
display: flex !important;
flex-direction: column;
overflow-y: auto;
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{
margin-left: 0;
}
/* This must to be enabled for Fx 114 */
/*
#PersonalToolbar #PlacesToolbarItems{
display: -webkit-box !important;
-webkit-box-orient: vertical !important;
}
*/
}