forked from linkedin/parseq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.css
More file actions
76 lines (60 loc) · 1.08 KB
/
table.css
File metadata and controls
76 lines (60 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
.tableview th:first-child {
border-radius: 5px 0 0 0;
}
.tableview th:last-child {
border-radius: 0 5px 0 0;
}
.tableview .hidden {
display: none;
}
.tableview tr {
background-color: #FFF;
}
.tableview tr.oddrow {
background-color: #F8F8F8;
}
.tableview td {
word-wrap: break-word;
}
/* Prevent long task names from dominating the table */
.tableview td:first-child {
width: 50%;
/*
* The following value appears to be ignored by all tested browsers (Chrome,
* Firefox, Safari), but without it, long task names dominate the entire
* table.
*/
max-width: 20em;
}
.tableview td .expandable {
cursor: pointer;
}
.tableview td:last-child {
width: 50%;
}
.tableview td span.composite {
font-weight: bold;
}
.tableview td.numeric {
font-family: monospace;
text-align: right;
}
.tableview td.value textarea {
min-width: 100%;
width: 100%;
padding: 0;
margin: 0;
resize: vertical;
}
.tableview .success {
color: green;
}
.tableview .error {
color: red;
}
.tableview .early_finish {
color: goldenrod;
}
.tableview .unfinished {
color: gray;
}