From e8e15af36cc582e7b59032b1b3c949604b77d036 Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Wed, 10 May 2023 06:03:57 +0300 Subject: [PATCH] vertical_bookmarks_toolbar: Enable webkit-box layout for Firefox 113 --- chrome/vertical_bookmarks_toolbar.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/chrome/vertical_bookmarks_toolbar.css b/chrome/vertical_bookmarks_toolbar.css index db203d0..c16d3d7 100644 --- a/chrome/vertical_bookmarks_toolbar.css +++ b/chrome/vertical_bookmarks_toolbar.css @@ -39,6 +39,7 @@ See the above repository for updates as well as full license text. */ #PlacesToolbar, #PlacesToolbarDropIndicatorHolder{ -moz-box-orient: vertical !important; /* Can be removed with Firefox 112 */ + flex-direction: column; } #PersonalToolbar #PlacesToolbarItems{ @@ -74,11 +75,10 @@ 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 */ - /* + /* You should probably disable this if you have Firefox < 113 */ #PersonalToolbar #PlacesToolbarItems{ display: -webkit-box !important; -webkit-box-orient: vertical !important; } - */ + }