-
Notifications
You must be signed in to change notification settings - Fork 4
/
default.css
107 lines (101 loc) · 1.44 KB
/
default.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
:root
{
--border-color: color-mix(in srgb, currentColor 20%, transparent);
--border: 1px solid var(--border-color);
--hover-background: color-mix(in srgb, currentColor 5%, transparent);
}
:root[data-view=static]
{
--border: none;
}
[data-view=static] body
{
margin: 0;
padding: 0;
color: var(--vscode-sideBar-foreground, var(--vscode-editor-foreground));
}
[data-view=static] table
{
box-sizing: border-box;
width: 100%;
}
table
{
border-spacing: 0;
}
th
{
font-size: bigger;
font-weight: bolder;
}
th, td
{
padding: 8px;
border-top: var(--border);
}
[data-view=static] th,
[data-view=static] td
{
padding: 4px 8px;
}
tr:last-child th,
tr:last-child td
{
border-bottom: var(--border);
}
tbody tr:hover td
{
background: var(--hover-background);
}
.column-header-cell
{
text-align: left;
border-top: none;
}
[data-view=static] .column-header-cell
{
background: var(--vscode-sideBar-background, none);
position: sticky;
top: 0;
}
.group-row
{
text-align: center;
}
.sub-group-row
{
font-variant: small-caps;
}
td.indent-1
{
padding-left: 20px;
}
td.indent-2
{
padding-left: 40px;
}
td.indent-3
{
padding-left: 60px;
}
.icon-button
{
padding: 3px 5px;
color: inherit;
border: 1px solid transparent;
background: none;
cursor: pointer;
transition: border ease-in-out 0.1s;
}
.icon-button:hover,
.icon-button:focus
{
border-color: currentColor;
}
.icon-button > svg
{
display: inline-block;
vertical-align: middle;
height: 1em;
width: 1em;
}