forked from CoreBunch/Instatic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataTable.module.css
More file actions
60 lines (50 loc) · 1.08 KB
/
Copy pathDataTable.module.css
File metadata and controls
60 lines (50 loc) · 1.08 KB
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
.wrapper {
width: 100%;
overflow-x: auto;
}
.table {
width: 100%;
min-width: 720px;
border-collapse: separate;
border-spacing: 0 1px;
}
.compactTable {
border-spacing: 0 1px;
}
.headerCell {
padding: 0 var(--space-l) var(--space-3xs);
color: var(--text-subtle);
font-size: var(--text-xs);
font-weight: 700;
line-height: 1.2;
text-align: left;
}
.cell {
padding: var(--space-l);
background: var(--bg-surface-2);
color: var(--text);
font-size: var(--text-s);
line-height: 1.45;
vertical-align: middle;
transition: background-color 120ms ease;
}
.compactTable .headerCell {
padding: 0 var(--space-m) var(--space-3xs);
}
.compactTable .cell {
padding: var(--space-s) var(--space-m);
}
.cell:first-child {
border-top-left-radius: var(--panel-radius);
border-bottom-left-radius: var(--panel-radius);
}
.cell:last-child {
border-top-right-radius: var(--panel-radius);
border-bottom-right-radius: var(--panel-radius);
}
.row {
min-width: 0;
}
.row:hover .cell {
background: var(--bg-surface-3);
}