mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-20 20:10:11 -04:00
37 lines
1.1 KiB
CSS
37 lines
1.1 KiB
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
.monaco-editor .lightbulb-glyph {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 16px;
|
|
width: 20px;
|
|
padding-left: 2px;
|
|
}
|
|
|
|
.monaco-editor .lightbulb-glyph:hover {
|
|
cursor: pointer;
|
|
/* transform: scale(1.3, 1.3); */
|
|
}
|
|
|
|
.monaco-editor.vs .lightbulb-glyph {
|
|
background: url('lightbulb-light.svg') center center no-repeat;
|
|
}
|
|
|
|
.monaco-editor.vs .lightbulb-glyph.autofixable {
|
|
background: url('lightbulb-autofix-light.svg') center center no-repeat;
|
|
}
|
|
|
|
.monaco-editor.vs-dark .lightbulb-glyph,
|
|
.monaco-editor.hc-black .lightbulb-glyph {
|
|
background: url('lightbulb-dark.svg') center center no-repeat;
|
|
}
|
|
|
|
.monaco-editor.vs-dark .lightbulb-glyph.autofixable,
|
|
.monaco-editor.hc-black .lightbulb-glyph.autofixable {
|
|
background: url('lightbulb-autofix-dark.svg') center center no-repeat;
|
|
}
|