Skip to content

Commit

Permalink
Removed tab gradient, different inactive tab color
Browse files Browse the repository at this point in the history
Addressing feedback on PR microsoft#8238
  • Loading branch information
bgashler1 committed Jun 30, 2016
1 parent eecde9e commit b410881
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions src/vs/workbench/browser/parts/editor/media/tabstitle.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,6 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/

.monaco-editor.vs .scroll-decoration {
box-shadow: #fff 0 6px 6px -6px inset; /* TODO: use a CSS custom property of the theme's `.monaco-editor-background` color here to blend better */
}

.monaco-editor.vs-dark .scroll-decoration {
box-shadow: #1E1E1E 0 6px 6px -6px inset; /* TODO: use a CSS custom property of the theme's `.monaco-editor-background` color here to blend better */
}

/* Tabs Container */
.vs .monaco-workbench > .part.editor > .content > .one-editor-container > .title::before {
display: block;
Expand Down Expand Up @@ -39,12 +31,12 @@
}

.vs .monaco-workbench > .part.editor > .content > .one-editor-container > .title {
background: linear-gradient(to bottom, #ECECEC 0%,#F3F3F3 100%);
background: #F3F3F3;
mix-blend-mode: luminosity;
}

.vs-dark .monaco-workbench > .part.editor > .content > .one-editor-container > .title {
background: linear-gradient(to bottom, #333333 0%,#252526 100%);
background: #252526;
mix-blend-mode: luminosity;
}

Expand All @@ -60,7 +52,16 @@

.vs .monaco-workbench .tab.monaco-editor-background:not(.active),
.vs-dark .monaco-workbench .tab.monaco-editor-background:not(.active) {
background-color: transparent;
height: 34px !important;
padding-top: 1px;
}

.vs .monaco-workbench .tab.monaco-editor-background:not(.active) {
background-color: #ECECEC;
}

.vs-dark .monaco-workbench .tab.monaco-editor-background:not(.active) {
background-color: #2D2D2D;
}

.monaco-workbench > .part.editor > .content > .one-editor-container > .title .tabs-container > .tab {
Expand Down Expand Up @@ -97,15 +98,15 @@
border-left-color: #DDDDDD;
}

.vs .monaco-workbench > .part.editor > .content > .one-editor-container > .title .tabs-container > .tab:last-child {
.vs .monaco-workbench > .part.editor > .content > .one-editor-container > .title .tabs-container > .tab.active:last-child {
border-right-color: #DDDDDD;
}

.vs-dark .monaco-workbench > .part.editor > .content > .one-editor-container > .title .tabs-container > .tab {
border-left-color: #403F3F;
}

.vs-dark .monaco-workbench > .part.editor > .content > .one-editor-container > .title .tabs-container > .tab:last-child {
.vs-dark .monaco-workbench > .part.editor > .content > .one-editor-container > .title .tabs-container > .tab.active:last-child {
border-right-color: #403F3F;
}

Expand Down

0 comments on commit b410881

Please sign in to comment.