Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/editor/contrib/dnd/browser/dnd.css
4779 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
.monaco-editor.vs .dnd-target,
7
.monaco-editor.hc-light .dnd-target {
8
border-right: 2px dotted black;
9
color: white; /* opposite of black */
10
}
11
.monaco-editor.vs-dark .dnd-target {
12
border-right: 2px dotted #AEAFAD;
13
color: #51504f; /* opposite of #AEAFAD */
14
}
15
.monaco-editor.hc-black .dnd-target {
16
border-right: 2px dotted #fff;
17
color: #000; /* opposite of #fff */
18
}
19
20
.monaco-editor.mouse-default .view-lines,
21
.monaco-editor.vs-dark.mac.mouse-default .view-lines,
22
.monaco-editor.hc-black.mac.mouse-default .view-lines,
23
.monaco-editor.hc-light.mac.mouse-default .view-lines {
24
cursor: default;
25
}
26
.monaco-editor.mouse-copy .view-lines,
27
.monaco-editor.vs-dark.mac.mouse-copy .view-lines,
28
.monaco-editor.hc-black.mac.mouse-copy .view-lines,
29
.monaco-editor.hc-light.mac.mouse-copy .view-lines {
30
cursor: copy;
31
}
32
33