forked from benbucksch/trex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrex.css
66 lines (63 loc) · 1.21 KB
/
trex.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
body {
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
font-family: -apple-system, BlinkMacSystemFont,
"Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans",
"Droid Sans", "Helvetica Neue", Arial, sans-serif;
}
*[collapsed=true] {
visibility: hidden;
}
*[hidden=true] {
display: none;
}
fastlist > table {
height: 100%;
width: 100%;
}
fastlist tbody {
display: table-row-group;
}
fastlist header,
fastlist tbody > row {
display: table-row;
}
fastlist header > * {
display: table-cell;
padding: 2px 8px;
}
fastlist tbody > row > * {
display: table-cell;
padding: 0px 5px; /* TODO vertical padding triggers a bug in the size calculation */
}
fastlist {
position: relative;
}
fastlist > .scrollbar {
overflow-y: scroll;
overflow-x: hidden;
height: 100%;
position: absolute;
top: 26px;
right: 0px;
width: 20px;
}
fastlist {
border: 1px solid #8E8EA1;
}
fastlist header > * {
border-top: 1px solid white;
border-left: 1px solid white;
border-right: 1px solid #8E8EA1;
border-bottom: 1px solid #8E8EA1;
background-color: #D2D2DC;
}
fastlist header > *:hover {
background-color: #E5E5F7;
}
fastlist tbody > row > * {
background-color: #EEF3F9;
}