From d45ff6cca5a379de19c66073e3274dde10fc4518 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 8 Jul 2025 20:53:06 +0300 Subject: [PATCH] fix(next): another non-performant CSS selector --- apps/client/src/stylesheets/theme-next/shell.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/client/src/stylesheets/theme-next/shell.css b/apps/client/src/stylesheets/theme-next/shell.css index fde7ceeee..2dfdadfbc 100644 --- a/apps/client/src/stylesheets/theme-next/shell.css +++ b/apps/client/src/stylesheets/theme-next/shell.css @@ -76,7 +76,8 @@ body.background-effects.platform-win32.layout-vertical #vertical-main-container --tab-first-item-horiz-offset: 5px; } -:has(#left-pane.hidden-int) #launcher-pane.vertical { +/* Add a border to the vertical launch bar if collapsed. */ +body.layout-vertical #horizontal-main-container:has(#left-pane.hidden-int) #launcher-pane.vertical { border-right: 2px solid var(--left-pane-collapsed-border-color); }