Skip to content

Commit 049f003

Browse files
authored
feat: improve the colorTheme detail (#541)
* feat: improve the colorTheme detail * style: order the properties
1 parent 8605f75 commit 049f003

File tree

6 files changed

+27
-4
lines changed

6 files changed

+27
-4
lines changed

src/workbench/editor/style.scss

+6
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,19 @@
2828
}
2929

3030
&__group-header {
31+
background: var(--editorGroupHeader-tabsBackground);
32+
border-bottom: 1px solid var(--editorGroupHeader-tabsBorder);
3133
display: flex;
3234
position: relative;
3335
}
3436

3537
&__group-tabs {
3638
flex-grow: 1;
3739
height: 35px;
40+
41+
#{$tab}__item--active {
42+
border-top: 1px solid var(--tab-activeBorder);
43+
}
3844
}
3945

4046
&__group-actions {

src/workbench/panel/panel.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function Panel(props: IPanel & IPanelController) {
4040
return (
4141
<div className={defaultClassName}>
4242
<div className={panelHeaderClassName}>
43-
<Scrollable noScrollY isShowShadow>
43+
<Scrollable noScrollY>
4444
<Tabs
4545
activeTab={current?.id}
4646
data={sortedPanels}

src/workbench/sidebar/explore/style.scss

+11
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@
77
text-transform: uppercase;
88
}
99
}
10+
11+
#{$folderTree} {
12+
#{$tree}__indent__guide {
13+
opacity: 0;
14+
transition: opacity 0.3s linear;
15+
}
16+
17+
&:hover #{$tree}__indent__guide {
18+
opacity: 1;
19+
}
20+
}
1021
}
1122

1223
#{$folderTree} {

src/workbench/sidebar/style.scss

+7-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#{$sidebar} {
44
background-color: var(--sideBar-background);
55
border-color: var(--sideBar-border);
6+
border-right: 1px solid var(--sideBar-border);
67
color: var(--sideBar-foreground);
78
height: 100%;
89
left: 0;
@@ -22,10 +23,8 @@
2223

2324
&__header {
2425
align-items: center;
25-
background-color: var(--sideBarSectionHeader-background);
26-
border-color: var(--sideBarSectionHeader-border);
26+
2727
box-sizing: border-box;
28-
color: var(--sideBarSectionHeader-foreground);
2928
display: flex;
3029
height: 35px;
3130
overflow: hidden;
@@ -67,4 +66,9 @@
6766
flex: 1;
6867
padding-left: 5px;
6968
}
69+
70+
#{$collapse}__header {
71+
background-color: var(--sideBarSectionHeader-background);
72+
color: var(--sideBarSectionHeader-foreground);
73+
}
7074
}

src/workbench/statusBar/style.scss

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
align-items: center;
55
background-color: var(--statusBar-background);
66
border-color: var(--statusBar-border);
7+
border-top: 1px solid var(--statusBar-border);
78
bottom: 0;
89
color: var(--statusBar-foreground);
910
display: flex;

src/workbench/style.scss

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
}
4848

4949
#{$compositeBar} {
50+
border-right: 1px solid var(--activityBar-border);
5051
display: flex;
5152
flex-direction: column;
5253
min-height: 100%;

0 commit comments

Comments
 (0)