From a435e7507f85f2e2a33fb6e03869421d9bc9514b Mon Sep 17 00:00:00 2001 From: MS_Y Date: Fri, 7 Oct 2022 22:45:09 +0900 Subject: [PATCH 1/2] Fix: Show `#tabs-newtab-button` at overflow (#212) --- chrome/multi-row_tabs.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/chrome/multi-row_tabs.css b/chrome/multi-row_tabs.css index 1c212b6..a18df18 100644 --- a/chrome/multi-row_tabs.css +++ b/chrome/multi-row_tabs.css @@ -28,7 +28,6 @@ See the above repository for updates as well as full license text. */ } @-moz-document url(chrome://browser/content/browser.xhtml){ - #scrollbutton-up~spacer, #scrollbutton-up, #scrollbutton-down{ display: var(--scrollbutton-display-model,initial) } @@ -73,7 +72,11 @@ See the above repository for updates as well as full license text. */ /* remove bottom margin so it doesn't throw off row height computation */ #tabs-newtab-button{ margin-bottom: 0 !important; } +#tabbrowser-tabs[hasadjacentnewtabbutton][overflow="true"] > #tabbrowser-arrowscrollbox > #tabbrowser-arrowscrollbox-periphery > #tabs-newtab-button { + display: -moz-box !important; +} + #alltabs-button, :root:not([customizing]) #TabsToolbar #new-tab-button, #tabbrowser-arrowscrollbox > spacer, -.tabbrowser-tab::after{ display: none !important } \ No newline at end of file +.tabbrowser-tab::after{ display: none !important } From 4653c3ee7e9041941de679694be67c22b7bdf6b3 Mon Sep 17 00:00:00 2001 From: GodieGun Date: Sat, 8 Oct 2022 00:41:17 -0500 Subject: [PATCH 2/2] Update vertical_bookmarks_toolbar.css (#214) This change makes compatible with pop-up windows. I use extensions that creates new pup-up windows and looks bad with that space in blank. this affects to other windows than don't use tabs. --- chrome/vertical_bookmarks_toolbar.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/chrome/vertical_bookmarks_toolbar.css b/chrome/vertical_bookmarks_toolbar.css index c6e2186..af028b3 100644 --- a/chrome/vertical_bookmarks_toolbar.css +++ b/chrome/vertical_bookmarks_toolbar.css @@ -39,10 +39,10 @@ See the above repository for updates as well as full license text. */ #PersonalToolbar #PlacesToolbarItems > .bookmark-item{ padding-block: 4px !important; } - body > #browser, - body > #browser-bottombox, - #customization-container{ +:root:not([chromehidden~="toolbar"]) body > #browser, +:root:not([chromehidden~="toolbar"]) body > #browser-bottombox, +:root:not([chromehidden~="toolbar"]) #customization-container{ margin-left: var(--uc-vertical-toolbar-width,0); } -} \ No newline at end of file +}