From 0ea4171b1b7b45ccbf9903d5301525ac46be0abd Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 30 Nov 2024 00:58:59 +0200 Subject: [PATCH] style(next): improve tab height on horizontal further --- src/public/app/layouts/desktop_layout.js | 3 ++- src/public/stylesheets/theme-next.css | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/public/app/layouts/desktop_layout.js b/src/public/app/layouts/desktop_layout.js index e44d496fd..7f2156c01 100644 --- a/src/public/app/layouts/desktop_layout.js +++ b/src/public/app/layouts/desktop_layout.js @@ -99,7 +99,8 @@ export default class DesktopLayout { return new RootContainer(launcherPaneIsHorizontal) .setParent(appContext) .class((launcherPaneIsHorizontal ? "horizontal" : "vertical") + "-layout") - .optChild(launcherPaneIsHorizontal, new FlexContainer('row') + .optChild(launcherPaneIsHorizontal, new FlexContainer('row') + .class("tab-row-container") .child(new TabRowWidget().class("full-width")) .child(new TitleBarButtonsWidget()) .css('height', '40px') diff --git a/src/public/stylesheets/theme-next.css b/src/public/stylesheets/theme-next.css index 16b43ab67..b0661215e 100644 --- a/src/public/stylesheets/theme-next.css +++ b/src/public/stylesheets/theme-next.css @@ -608,7 +608,8 @@ html body #left-pane .quick-search:focus-within .search-button:hover, height: var(--tab-bar-height) !important; } -.tab-row-widget { +.tab-row-widget, +.tab-row-container { background: transparent !important; height: var(--tab-bar-height) !important; }