-
Notifications
You must be signed in to change notification settings - Fork 0
/
james.css
53 lines (43 loc) · 855 Bytes
/
james.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
fieldset {
max-width: 300px;
}
table {
table-layout: fixed;
border-collapse: collapse;
width: 100%;
margin-top: 10px;
}
thead th:nth-child(1) { width: 250px; } /* domain */
thead th:nth-child(2) { width: 100px; } /* path */
thead th:nth-child(3) { width: 200px; } /* name */
thead th:nth-child(4) { width: 100px; } /* expiration */
thead th:nth-child(5) { width: 100%; } /* value */
th {
background-color: lightgray;
}
th[id] {
cursor: pointer;
}
th.sort:after {
content: " ▲";
}
th,
td {
padding: 10px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
border: 1px solid lightgray;
}
tr.google-analytics, tr.hotjar {
background-color: lightyellow;
}
tr.uid {
background-color: #ECF8F2;
}
/* tr.json {
background-color: #E9FAFC;
} */
.hidden {
display: none;
}