Fix pin, unpin and close icon issues (#822)

* fix pin, unpin and close icon issues

* formatting
This commit is contained in:
Abbie Petchtes
2018-03-02 16:01:12 -08:00
committed by GitHub
parent 94e8ce5185
commit 56ca3406c4
15 changed files with 82 additions and 56 deletions

View File

@@ -0,0 +1,14 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
/* Overwrite close editor action icon */
.vs .monaco-workbench .close-editor-action {
background: url('icons/close.svg') center center no-repeat !important;
background-size: 10px !important;
}
.vs-dark .monaco-workbench .close-editor-action,
.hc-black .monaco-workbench .close-editor-action {
background: url('icons/close_inverse.svg') center center no-repeat !important;
}