From b393f711a826cc2e442255d1c36690998f4a5349 Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Wed, 22 Mar 2023 07:03:15 +0200 Subject: [PATCH] vertical_bookmarks_toolbar: Add workaround for flexbox changes --- chrome/vertical_bookmarks_toolbar.css | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/chrome/vertical_bookmarks_toolbar.css b/chrome/vertical_bookmarks_toolbar.css index f1ccdf0..0f2227f 100644 --- a/chrome/vertical_bookmarks_toolbar.css +++ b/chrome/vertical_bookmarks_toolbar.css @@ -32,9 +32,10 @@ See the above repository for updates as well as full license text. */ } #PlacesToolbar, - #PersonalToolbar > #personal-bookmarks > #PlacesToolbar > hbox{ - -moz-box-orient: vertical !important; + #PlacesToolbarDropIndicatorHolder{ + -moz-box-orient: vertical !important; /* Can be removed with Firefox 112 */ } + #PersonalToolbar #PlacesToolbarItems{ display: flex; 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{ margin-left: 0; } -} + /* Workaround for Firefox > 112 */ + /* + #PersonalToolbar #PlacesToolbarItems{ + display: -webkit-box; + -webkit-box-orient: vertical !important; + } + */ +} \ No newline at end of file