From f45986ba642630b6386f01884f2bff0513121a9c Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Sat, 27 Apr 2019 12:04:51 +0300 Subject: [PATCH] Set the tabs toolbar width correctly --- chrome/tabs_below_content.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/chrome/tabs_below_content.css b/chrome/tabs_below_content.css index 9f161c5..8dc4617 100644 --- a/chrome/tabs_below_content.css +++ b/chrome/tabs_below_content.css @@ -32,11 +32,12 @@ Window controls will be all wrong without it /* Move tabs below content */ :root:not([inDOMFullscreen]) #content-deck{ margin-bottom: var(--tab-min-height) } -#TabsToolbar{ position: fixed; bottom: 0px; width: 100vw; } +#TabsToolbar{ position: fixed; bottom: 0px; width: 100vw; height: var(--tab-min-height) } +#TabsToolbar-customization-target{ width: 100vw; } /* Hide stuff that doesn't make sense with tabs below content */ #TabsToolbar > .titlebar-buttonbox-container, #window-controls, /* Fullscreen window controls */ #TabsToolbar .titlebar-spacer{ display: none !important; -} \ No newline at end of file +}