From 21750e272b048c9db2680ba114768c2319d09371 Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Sun, 16 Apr 2023 12:07:16 +0300 Subject: [PATCH] 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. --- chrome/vertical_bookmarks_toolbar.css | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/chrome/vertical_bookmarks_toolbar.css b/chrome/vertical_bookmarks_toolbar.css index dc6bf2b..db203d0 100644 --- a/chrome/vertical_bookmarks_toolbar.css +++ b/chrome/vertical_bookmarks_toolbar.css @@ -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; } -} \ No newline at end of file + /* This must to be enabled for Fx 114 */ + /* + #PersonalToolbar #PlacesToolbarItems{ + display: -webkit-box !important; + -webkit-box-orient: vertical !important; + } + */ +}