From 612987d1e594150b9e94dfaec67eceb274df5e5f Mon Sep 17 00:00:00 2001 From: Abbie Petchtes Date: Thu, 29 Mar 2018 16:16:39 -0700 Subject: [PATCH] fix the close icons in sqlops (#1032) --- src/sql/media/icons/close.svg | 2 +- src/sql/media/icons/close_inverse.svg | 2 +- src/sql/media/overwriteVsIcons.css | 15 +++++++++------ .../accountDialog/media/accountDialog.css | 4 ++++ 4 files changed, 15 insertions(+), 8 deletions(-) diff --git a/src/sql/media/icons/close.svg b/src/sql/media/icons/close.svg index 0b34352b2d..d68910610f 100644 --- a/src/sql/media/icons/close.svg +++ b/src/sql/media/icons/close.svg @@ -1 +1 @@ -close_small \ No newline at end of file +close_small \ No newline at end of file diff --git a/src/sql/media/icons/close_inverse.svg b/src/sql/media/icons/close_inverse.svg index 6a79188955..9878991373 100644 --- a/src/sql/media/icons/close_inverse.svg +++ b/src/sql/media/icons/close_inverse.svg @@ -1 +1 @@ -close_small_inverse \ No newline at end of file +close_small_inverse \ No newline at end of file diff --git a/src/sql/media/overwriteVsIcons.css b/src/sql/media/overwriteVsIcons.css index b438bdf707..cb51d28519 100644 --- a/src/sql/media/overwriteVsIcons.css +++ b/src/sql/media/overwriteVsIcons.css @@ -3,12 +3,15 @@ * 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; +.monaco-workbench > .part.editor > .content > .one-editor-silo > .container > .title .tabs-container > .tab > .tab-close .action-label.close-editor-action { + background-size: 10px; } -.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; +.vs .monaco-workbench .tab > .tab-close .action-label.close-editor-action { + background: url('icons/close.svg') center center no-repeat; +} + +.vs-dark .monaco-workbench .tab > .tab-close .action-label.close-editor-action, +.hc-black .monaco-workbench .tab > .tab-close .action-label.close-editor-action { + background: url('icons/close_inverse.svg') center center no-repeat; } \ No newline at end of file diff --git a/src/sql/parts/accountManagement/accountDialog/media/accountDialog.css b/src/sql/parts/accountManagement/accountDialog/media/accountDialog.css index fe9746b1c3..979b0ce262 100644 --- a/src/sql/parts/accountManagement/accountDialog/media/accountDialog.css +++ b/src/sql/parts/accountManagement/accountDialog/media/accountDialog.css @@ -46,6 +46,10 @@ background-repeat: no-repeat; } +.account-view .provider-view .list-row .actions-container .action-item .action-label.icon.remove { + background-size: 14px !important; +} + .account-view .provider-view .list-row .actions-container { display: none; }