Skip to content

Commit

Permalink
feat: improve the colorTheme detail (#541)
Browse files Browse the repository at this point in the history
* feat: improve the colorTheme detail

* style: order the properties
  • Loading branch information
wewoor authored Dec 9, 2021
1 parent 8605f75 commit 049f003
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 4 deletions.
6 changes: 6 additions & 0 deletions src/workbench/editor/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,19 @@
}

&__group-header {
background: var(--editorGroupHeader-tabsBackground);
border-bottom: 1px solid var(--editorGroupHeader-tabsBorder);
display: flex;
position: relative;
}

&__group-tabs {
flex-grow: 1;
height: 35px;

#{$tab}__item--active {
border-top: 1px solid var(--tab-activeBorder);
}
}

&__group-actions {
Expand Down
2 changes: 1 addition & 1 deletion src/workbench/panel/panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export function Panel(props: IPanel & IPanelController) {
return (
<div className={defaultClassName}>
<div className={panelHeaderClassName}>
<Scrollable noScrollY isShowShadow>
<Scrollable noScrollY>
<Tabs
activeTab={current?.id}
data={sortedPanels}
Expand Down
11 changes: 11 additions & 0 deletions src/workbench/sidebar/explore/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@
text-transform: uppercase;
}
}

#{$folderTree} {
#{$tree}__indent__guide {
opacity: 0;
transition: opacity 0.3s linear;
}

&:hover #{$tree}__indent__guide {
opacity: 1;
}
}
}

#{$folderTree} {
Expand Down
10 changes: 7 additions & 3 deletions src/workbench/sidebar/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#{$sidebar} {
background-color: var(--sideBar-background);
border-color: var(--sideBar-border);
border-right: 1px solid var(--sideBar-border);
color: var(--sideBar-foreground);
height: 100%;
left: 0;
Expand All @@ -22,10 +23,8 @@

&__header {
align-items: center;
background-color: var(--sideBarSectionHeader-background);
border-color: var(--sideBarSectionHeader-border);

box-sizing: border-box;
color: var(--sideBarSectionHeader-foreground);
display: flex;
height: 35px;
overflow: hidden;
Expand Down Expand Up @@ -67,4 +66,9 @@
flex: 1;
padding-left: 5px;
}

#{$collapse}__header {
background-color: var(--sideBarSectionHeader-background);
color: var(--sideBarSectionHeader-foreground);
}
}
1 change: 1 addition & 0 deletions src/workbench/statusBar/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
align-items: center;
background-color: var(--statusBar-background);
border-color: var(--statusBar-border);
border-top: 1px solid var(--statusBar-border);
bottom: 0;
color: var(--statusBar-foreground);
display: flex;
Expand Down
1 change: 1 addition & 0 deletions src/workbench/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
}

#{$compositeBar} {
border-right: 1px solid var(--activityBar-border);
display: flex;
flex-direction: column;
min-height: 100%;
Expand Down

0 comments on commit 049f003

Please sign in to comment.