From 061b0966bb0c9f3a4d7856e852c545018a615357 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Sat, 20 Dec 2025 15:28:46 +0200 Subject: [PATCH] rollback: style/tab bar: visually merge the tab bar with the center panel --- apps/client/src/stylesheets/theme-next/shell.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/client/src/stylesheets/theme-next/shell.css b/apps/client/src/stylesheets/theme-next/shell.css index 176081adf..f1e9c181b 100644 --- a/apps/client/src/stylesheets/theme-next/shell.css +++ b/apps/client/src/stylesheets/theme-next/shell.css @@ -1025,11 +1025,11 @@ body.layout-vertical.electron.platform-darwin .tab-row-container { } .tab-row-widget > * { - margin-top: calc(var(--tab-bar-height) - var(--tab-height)); + margin-top: calc((var(--tab-bar-height) - var(--tab-height)) / 2); } body.layout-horizontal .tab-row-container { - padding-top: calc((var(--tab-bar-height) - var(--tab-height))); + padding-top: calc(var(--tab-bar-height) - var(--tab-height)); } /* Define extra drag areas for Electron windows */ @@ -1071,7 +1071,7 @@ body.desktop:not(.background-effects.platform-win32) #root-widget.horizontal-lay :root div.tab-row-widget div.note-tab div.note-tab-wrapper { height: var(--tab-height) !important; - border-radius: 8px 8px 0 0; + border-radius: 8px; transition: background 75ms ease-in, box-shadow 75ms ease-in;