mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 17:22:45 -05:00
* Adding light contrast theme
* fixing oe icons
* Fixing more files
* Converting ep files to support hc light
* Revert "Copy Headers for Selected Columns (#21622)"
This reverts commit f74d6f6d9b.
* Adding more css rules
* Fixing modal
* Fixing azure icons
19 lines
1.0 KiB
CSS
19 lines
1.0 KiB
CSS
/*---------------------------------------------------------------------------------------------
|
|
* 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 */
|
|
.monaco-workbench > .part.editor > .content > .one-editor-silo > .container > .title .tabs-container > .tab > .tab-close .action-label.close-editor-action {
|
|
background-size: 10px;
|
|
}
|
|
|
|
.monaco-workbench.vs .tab > .tab-close .action-label.close-editor-action,
|
|
.monaco-workbench.hc-light .tab > .tab-close .action-label.close-editor-action {
|
|
background: url('icons/close.svg') center center no-repeat;
|
|
}
|
|
|
|
.monaco-workbench.vs-dark .tab > .tab-close .action-label.close-editor-action,
|
|
.monaco-workbench.hc-black .tab > .tab-close .action-label.close-editor-action {
|
|
background: url('icons/close_inverse.svg') center center no-repeat;
|
|
}
|