This repository was archived by the owner on Jan 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpopup.css
More file actions
108 lines (97 loc) · 1.49 KB
/
popup.css
File metadata and controls
108 lines (97 loc) · 1.49 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
*{
box-sizing: border-box;
border-spacing: 0;
outline: none;
}
body {
min-width: 300px;
width: 300px;
font-size: 13px;
color: #222;
}
.fld-icon{
height: 1rem;
margin-right: 5px;
}
.fld-label,.item-label{
display: flex;
align-items: center;
color: #111;
text-decoration: none;
width: 100%;
padding: .5rem;
border: 1px solid #222;
border-radius: .3rem;
}
.item-label{
display: block;
overflow-wrap: break-word;
}
.search:not(focus) {
padding: 5px;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border: 2px solid #F2F3F5;
background-color: #F2F3F5;
font-size: 14px;
outline: none;
}
.search:focus {
padding: 5px;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border: 2px solid #F2F3F5;
background-color: #FFF;
font-size: 14px;
outline: none;
}
ul {
list-style:none;
padding-left: 1.75em;
}
.top-right {
font-size:small;
position:fixed;
right:1em;
top:1em;
}
li {
padding: 3px;
}
li {
background: white;
list-style-type:none;
border-radius: .3rem;
user-select: none;
margin:0;
position:relative
}
li::before, li::after {
content:'';
left:-20px;
position:absolute;
right:auto;
}
li::before {
border-left:1px solid #999;
height:100%;
top:0;
width:1px;
}
li::after {
border-top:1px solid #999;
height:20px;
top:20px;
width:23px;
}
li:last-child::before {
height:21px;
}
.selected>a {
background: #dddddd;
}
.source {
color: #bbb;
}