| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-list {
- position: relative;
- height: 100%;
- width: 100%;
- white-space: nowrap;
- }
- .monaco-list.mouse-support {
- user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- }
- .monaco-list > .monaco-scrollable-element {
- height: 100%;
- }
- .monaco-list-rows {
- position: relative;
- width: 100%;
- height: 100%;
- }
- .monaco-list.horizontal-scrolling .monaco-list-rows {
- width: auto;
- min-width: 100%;
- }
- .monaco-list-row {
- position: absolute;
- box-sizing: border-box;
- overflow: hidden;
- width: 100%;
- }
- .monaco-list.mouse-support .monaco-list-row {
- cursor: pointer;
- touch-action: none;
- }
- /* for OS X ballistic scrolling */
- .monaco-list-row.scrolling {
- display: none !important;
- }
- /* Focus */
- .monaco-list.element-focused,
- .monaco-list.selection-single,
- .monaco-list.selection-multiple {
- outline: 0 !important;
- }
- /* Dnd */
- .monaco-drag-image {
- display: inline-block;
- padding: 1px 7px;
- border-radius: 10px;
- font-size: 12px;
- position: absolute;
- z-index: 1000;
- }
- /* Filter */
- .monaco-list-type-filter-message {
- position: absolute;
- box-sizing: border-box;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- padding: 40px 1em 1em 1em;
- text-align: center;
- white-space: normal;
- opacity: 0.7;
- pointer-events: none;
- }
- .monaco-list-type-filter-message:empty {
- display: none;
- }
|