| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- /* Uncomment to see lines flashing when they're painted */
- /*.monaco-editor .view-lines > .view-line {
- background-color: none;
- animation-name: flash-background;
- animation-duration: 800ms;
- }
- @keyframes flash-background {
- 0% { background-color: lightgreen; }
- 100% { background-color: none }
- }*/
- .mtkcontrol {
- color: rgb(255, 255, 255) !important;
- background: rgb(150, 0, 0) !important;
- }
- .monaco-editor.no-user-select .lines-content,
- .monaco-editor.no-user-select .view-line,
- .monaco-editor.no-user-select .view-lines {
- user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- }
- .monaco-editor.enable-user-select {
- user-select: initial;
- -webkit-user-select: initial;
- -ms-user-select: initial;
- }
- .monaco-editor .view-lines {
- white-space: nowrap;
- }
- .monaco-editor .view-line {
- position: absolute;
- width: 100%;
- }
- .monaco-editor .mtkz {
- display: inline-block;
- }
- /* TODO@tokenization bootstrap fix */
- /*.monaco-editor .view-line > span > span {
- float: none;
- min-height: inherit;
- margin-left: inherit;
- }*/
|