From 4c356cbcf4ea6b43050f0b214a1dfbebd29505bb Mon Sep 17 00:00:00 2001 From: xiaowei Date: Thu, 9 Dec 2021 14:29:32 +0800 Subject: [PATCH 1/2] feat: improve the colorTheme detail --- src/workbench/editor/style.scss | 6 ++++++ src/workbench/panel/panel.tsx | 2 +- src/workbench/sidebar/explore/style.scss | 11 +++++++++++ src/workbench/sidebar/style.scss | 10 +++++++--- src/workbench/statusBar/style.scss | 1 + src/workbench/style.scss | 1 + 6 files changed, 27 insertions(+), 4 deletions(-) diff --git a/src/workbench/editor/style.scss b/src/workbench/editor/style.scss index a0893f053..1c381344b 100644 --- a/src/workbench/editor/style.scss +++ b/src/workbench/editor/style.scss @@ -30,11 +30,17 @@ &__group-header { display: flex; position: relative; + background: var(--editorGroupHeader-tabsBackground); + border-bottom: 1px solid var(--editorGroupHeader-tabsBorder); } &__group-tabs { flex-grow: 1; height: 35px; + + #{$tab}__item--active { + border-top: 1px solid var(--tab-activeBorder); + } } &__group-actions { diff --git a/src/workbench/panel/panel.tsx b/src/workbench/panel/panel.tsx index 1c12940bf..eda0b4afd 100644 --- a/src/workbench/panel/panel.tsx +++ b/src/workbench/panel/panel.tsx @@ -40,7 +40,7 @@ export function Panel(props: IPanel & IPanelController) { return (
- + Date: Thu, 9 Dec 2021 14:44:48 +0800 Subject: [PATCH 2/2] style: order the properties --- src/workbench/editor/style.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/workbench/editor/style.scss b/src/workbench/editor/style.scss index 1c381344b..20d42147f 100644 --- a/src/workbench/editor/style.scss +++ b/src/workbench/editor/style.scss @@ -28,10 +28,10 @@ } &__group-header { - display: flex; - position: relative; background: var(--editorGroupHeader-tabsBackground); border-bottom: 1px solid var(--editorGroupHeader-tabsBorder); + display: flex; + position: relative; } &__group-tabs {