Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/base/browser/ui/table/table.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-table {
7
display: flex;
8
flex-direction: column;
9
position: relative;
10
height: 100%;
11
width: 100%;
12
white-space: nowrap;
13
overflow: hidden;
14
}
15
16
.monaco-table > .monaco-split-view2 {
17
border-bottom: 1px solid transparent;
18
}
19
20
.monaco-table > .monaco-list {
21
flex: 1;
22
}
23
24
.monaco-table-tr {
25
display: flex;
26
height: 100%;
27
}
28
29
.monaco-table-th {
30
width: 100%;
31
height: 100%;
32
font-weight: bold;
33
overflow: hidden;
34
text-overflow: ellipsis;
35
}
36
37
.monaco-table-th,
38
.monaco-table-td {
39
box-sizing: border-box;
40
flex-shrink: 0;
41
overflow: hidden;
42
white-space: nowrap;
43
text-overflow: ellipsis;
44
}
45
46
.monaco-table > .monaco-split-view2 .monaco-sash.vertical::before {
47
content: "";
48
position: absolute;
49
left: calc(var(--vscode-sash-size) / 2);
50
width: 0;
51
border-left: 1px solid transparent;
52
}
53
54
.monaco-workbench:not(.reduce-motion) .monaco-table > .monaco-split-view2,
55
.monaco-workbench:not(.reduce-motion) .monaco-table > .monaco-split-view2 .monaco-sash.vertical::before {
56
transition: border-color 0.2s ease-out;
57
}
58
59