vertical_bookmarks_toolbar: Add workaround for flexbox changes
This commit is contained in:
parent
0ff12e01fe
commit
b393f711a8
1 changed files with 11 additions and 3 deletions
|
@ -32,9 +32,10 @@ See the above repository for updates as well as full license text. */
|
||||||
}
|
}
|
||||||
|
|
||||||
#PlacesToolbar,
|
#PlacesToolbar,
|
||||||
#PersonalToolbar > #personal-bookmarks > #PlacesToolbar > hbox{
|
#PlacesToolbarDropIndicatorHolder{
|
||||||
-moz-box-orient: vertical !important;
|
-moz-box-orient: vertical !important; /* Can be removed with Firefox 112 */
|
||||||
}
|
}
|
||||||
|
|
||||||
#PersonalToolbar #PlacesToolbarItems{
|
#PersonalToolbar #PlacesToolbarItems{
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
@ -65,4 +66,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;
|
||||||
}
|
}
|
||||||
}
|
/* Workaround for Firefox > 112 */
|
||||||
|
/*
|
||||||
|
#PersonalToolbar #PlacesToolbarItems{
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-box-orient: vertical !important;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
}
|
Loading…
Reference in a new issue