mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-21 07:39:51 +01:00
49 lines
1.2 KiB
CSS
49 lines
1.2 KiB
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
/* -------------------- IE10 remove auto clear button -------------------- */
|
|
|
|
::-ms-clear {
|
|
display: none;
|
|
}
|
|
|
|
/* All widgets */
|
|
/* I am not a big fan of this rule */
|
|
.monaco-editor .editor-widget input {
|
|
color: inherit;
|
|
}
|
|
|
|
/* -------------------- Editor -------------------- */
|
|
|
|
.monaco-editor {
|
|
position: relative;
|
|
overflow: visible;
|
|
-webkit-text-size-adjust: 100%;
|
|
-webkit-font-feature-settings: "liga" off, "calt" off;
|
|
font-feature-settings: "liga" off, "calt" off;
|
|
}
|
|
.monaco-editor.enable-ligatures {
|
|
-webkit-font-feature-settings: "liga" on, "calt" on;
|
|
font-feature-settings: "liga" on, "calt" on;
|
|
}
|
|
|
|
/* -------------------- Misc -------------------- */
|
|
|
|
.monaco-editor .overflow-guard {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.monaco-editor .view-overlays {
|
|
position: absolute;
|
|
top: 0;
|
|
}
|
|
|
|
/*
|
|
.monaco-editor .auto-closed-character {
|
|
opacity: 0.3;
|
|
}
|
|
*/
|