-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathabouttabs.css
More file actions
110 lines (88 loc) · 1.53 KB
/
Copy pathabouttabs.css
File metadata and controls
110 lines (88 loc) · 1.53 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
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
108
109
110
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
body {
margin: 0;
}
h1 {
margin: 0;
flex: 1 1 auto;
font-size: 1.8em;
}
#top {
background: lightgray;
margin: 0;
padding: 0.2em 0.8em;
display: flex;
}
#bar {
background: #e0e0e0;
padding: 0.1em 0.5em;
border-top: 1px solid gray;
border-bottom: 1px solid gray;
}
#bar span {
font: -moz-list;
color: #313739;
padding: 0 .7em 0 .3em;
}
image {
width: 16px;
min-width: 16px; /* Somehow this is required in the cases where text overflows in the title */
height: 16px;
margin-right: .2em;
}
#stats {
white-space: nowrap;
}
li > div {
display: flex;
}
li {
margin: .3em 0;
}
ul.host, ul.address {
list-style-type: none;
-moz-padding-start: 20px;
}
ul.host > li:nth-of-type(2n), ul.address > li:nth-of-type(2n),
ul.subgroup > li:nth-of-type(2n+1) {
background-image: linear-gradient(to right, rgba(0,0,0,0), #e0e0e0);
}
a, a:visited {
color: blue;
}
.title {
overflow: hidden;
text-overflow: ellipsis;
}
.extra {
margin-left: 16px;
padding-left: .2em;
font-size: .8em;
display: block;
}
.actions * {
padding-left: .3em;
}
li.schemes span {
margin-right: 1em;
}
.closed > ul {
display: none;
}
.subgroup {
list-style: None;
}
.group.closed {
list-style: "▷ "
}
.group.closed:hover {
list-style: "▶ "
}
.group {
list-style: "▽ "
}
.group:hover {
list-style: "▼ "
}