-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.css
More file actions
55 lines (46 loc) · 780 Bytes
/
popup.css
File metadata and controls
55 lines (46 loc) · 780 Bytes
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
body {
font-family: sans-serif;
margin: 12px;
min-width: 280px;
}
h1 {
font-size: 14px;
margin: 0 0 8px;
}
button {
width: 100%;
margin-bottom: 8px;
}
ul {
padding-left: 18px;
margin: 8px 0 0;
}
li {
display: flex;
justify-content: space-between;
gap: 8px;
margin-bottom: 4px;
}
li > span {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
/* min-width: 0 overrides the flex default (auto) to allow shrinking below content size,
which is required for text-overflow: ellipsis to work inside a flex container. */
min-width: 0;
}
li > button {
flex-shrink: 0;
width: auto;
margin: 0;
}
li.empty-state {
display: block;
color: #666;
}
.status-error {
color: #b00020;
}
.status-success {
color: inherit;
}