mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 03:54:24 +01:00
Hello Code
This commit is contained in:
43
src/vs/languages/css/common/css-hover.css
Normal file
43
src/vs/languages/css/common/css-hover.css
Normal file
@@ -0,0 +1,43 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
.monaco-editor .monaco-editor-hover .css-selector-hover {
|
||||
color: gray;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.monaco-editor .monaco-editor-hover .css-selector-hover ul {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
margin-left: 1.5em;
|
||||
}
|
||||
|
||||
.monaco-editor .monaco-editor-hover .css-selector-hover > ul {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
/*normal theme*/
|
||||
.monaco-editor .monaco-editor-hover .css-selector-hover .name {
|
||||
color: black;
|
||||
font-weight: bold;
|
||||
}
|
||||
.monaco-editor .monaco-editor-hover .css-selector-hover .key {
|
||||
color: red;
|
||||
}
|
||||
.monaco-editor .monaco-editor-hover .css-selector-hover .value {
|
||||
color: blue;
|
||||
}
|
||||
|
||||
/*dark theme*/
|
||||
.monaco-editor.vs-dark .monaco-editor-hover .css-selector-hover .name {
|
||||
color: #569CD6;
|
||||
}
|
||||
.monaco-editor.vs-dark .monaco-editor-hover .css-selector-hover .key {
|
||||
color: #9CDCFE;
|
||||
}
|
||||
.monaco-editor.vs-dark .monaco-editor-hover .css-selector-hover .value {
|
||||
color: #CE9178;
|
||||
}
|
||||
Reference in New Issue
Block a user