/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45.monaco-drag-image {6display: inline-block;7padding: 1px 7px;8border-radius: 10px;9font-size: 12px;10position: absolute;11z-index: 1000;1213/* Default styles */14background-color: var(--vscode-list-activeSelectionBackground);15color: var(--vscode-list-activeSelectionForeground);16outline: 1px solid var(--vscode-list-focusOutline);17outline-offset: -1px;1819/*20* Browsers apply an effect to the drag image when the div becomes too21* large which makes them unreadable. Use max width so it does not happen22*/23max-width: 120px;24overflow: hidden;25text-overflow: ellipsis;26white-space: nowrap;27}282930