Skip to content

Commit

Permalink
fix: improve editor icon (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
mortalYoung authored Jul 22, 2021
1 parent 26bd958 commit 3d45c87
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion src/components/tabs/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@
}

&__op {
color: inherit;
color: var(--icon-foreground);
margin-left: 10px;
transform: translateY(1px);
width: 20px;

&__dot {
Expand Down
6 changes: 3 additions & 3 deletions src/extensions/theme-defaults/themes/dark_defaults.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@
"statusBarItem.remoteBackground": "#16825D",
"sidebarSectionHeader.background": "#0000",
"sidebarSectionHeader.border": "#ccc3",
"tab.border": "#333",
"tab.border": "#252526",
"tab.inactiveBackground": "rgb(45, 45, 45)",
"tab.inactiveForeground": "rgba(255, 255, 255, 0.5)",
"tab.activeBackground": "rgb(30, 30, 30)",
"tab.activeForeground": "rgb(255, 255, 255)",
"tab.activeBackground": "#1E1E1E",
"tab.activeForeground": "#fff",
"diffEditor.insertedTextBackground": "#9bb95533",
"diffEditor.removedTextBackground": "#ff000033",
"actionBar.checkedBackground": "rgba(0, 127, 212, 0.4)"
Expand Down
5 changes: 3 additions & 2 deletions src/extensions/theme-defaults/themes/light_defaults.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,13 @@
"statusBarItem.remoteBackground": "#16825D",
"sidebarSectionHeader.background": "#0000",
"sidebarSectionHeader.border": "#61616130",
"tab.border": "#333",
"tab.border": "#f3f3f3",
"menu.selectionBackground": "#0060C0",
"menu.separatorBackground": "#888888",
"tab.inactiveBackground": "rgb(236, 236, 236)",
"tab.inactiveForeground": "rgba(51, 51, 51, 0.7)",
"tab.activeForeground": "rgb(255, 255, 255)"
"tab.activeBackground": "#fffffe",
"tab.activeForeground": "#333333"
},
"semanticHighlighting": true
}

0 comments on commit 3d45c87

Please sign in to comment.