Path: blob/main/src/vs/base/browser/ui/table/table.css
3296 views
/*---------------------------------------------------------------------------------------------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-table {6display: flex;7flex-direction: column;8position: relative;9height: 100%;10width: 100%;11white-space: nowrap;12overflow: hidden;13}1415.monaco-table > .monaco-split-view2 {16border-bottom: 1px solid transparent;17}1819.monaco-table > .monaco-list {20flex: 1;21}2223.monaco-table-tr {24display: flex;25height: 100%;26}2728.monaco-table-th {29width: 100%;30height: 100%;31font-weight: bold;32overflow: hidden;33text-overflow: ellipsis;34}3536.monaco-table-th,37.monaco-table-td {38box-sizing: border-box;39flex-shrink: 0;40overflow: hidden;41white-space: nowrap;42text-overflow: ellipsis;43}4445.monaco-table > .monaco-split-view2 .monaco-sash.vertical::before {46content: "";47position: absolute;48left: calc(var(--vscode-sash-size) / 2);49width: 0;50border-left: 1px solid transparent;51}5253.monaco-workbench:not(.reduce-motion) .monaco-table > .monaco-split-view2,54.monaco-workbench:not(.reduce-motion) .monaco-table > .monaco-split-view2 .monaco-sash.vertical::before {55transition: border-color 0.2s ease-out;56}575859