From 39cf4779cd642af618c88e689664c3bb62e43eb5 Mon Sep 17 00:00:00 2001 From: t8y2 <1156263951@qq.com> Date: Wed, 10 Jun 2026 02:54:05 +0800 Subject: [PATCH] fix: add active tab underline in classic mode without connection color, use amber folder icons in SQL library --- apps/desktop/src/components/layout/AppTabBar.vue | 2 +- apps/desktop/src/components/layout/SqlLibraryPanel.vue | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/desktop/src/components/layout/AppTabBar.vue b/apps/desktop/src/components/layout/AppTabBar.vue index eca3edff0..9b378b9b5 100644 --- a/apps/desktop/src/components/layout/AppTabBar.vue +++ b/apps/desktop/src/components/layout/AppTabBar.vue @@ -176,7 +176,7 @@ function tabColorStyle(tab: QueryTab) { const isClassic = settingsStore.editorSettings.appLayout === "classic"; if (!color) { if (isClassic) { - return isActive ? { boxShadow: "0 1px 0 0 var(--color-background)" } : undefined; + return isActive ? { boxShadow: "inset 0 -2px 0 var(--ring)" } : undefined; } return isActive ? { diff --git a/apps/desktop/src/components/layout/SqlLibraryPanel.vue b/apps/desktop/src/components/layout/SqlLibraryPanel.vue index 58bb7c816..22efbae43 100644 --- a/apps/desktop/src/components/layout/SqlLibraryPanel.vue +++ b/apps/desktop/src/components/layout/SqlLibraryPanel.vue @@ -798,7 +798,7 @@ function showDropInside(targetId: string) {