Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/base/browser/ui/dnd/dnd.css
3296 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-drag-image {
7
display: inline-block;
8
padding: 1px 7px;
9
border-radius: 10px;
10
font-size: 12px;
11
position: absolute;
12
z-index: 1000;
13
14
/* Default styles */
15
background-color: var(--vscode-list-activeSelectionBackground);
16
color: var(--vscode-list-activeSelectionForeground);
17
outline: 1px solid var(--vscode-list-focusOutline);
18
outline-offset: -1px;
19
20
/*
21
* Browsers apply an effect to the drag image when the div becomes too
22
* large which makes them unreadable. Use max width so it does not happen
23
*/
24
max-width: 120px;
25
overflow: hidden;
26
text-overflow: ellipsis;
27
white-space: nowrap;
28
}
29
30