-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.css
105 lines (105 loc) · 1.79 KB
/
popup.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
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
* {
margin: 0;
padding: 0;
}
body {
font: 13px "DejaVu Sans", "Bitstream Vera Sans", sans-serif;
width: 180px;
max-width: 500px;
max-height: 500px;
overflow-x: hidden;
overflow-y: auto;
}
#blist {
margin: 3px;
max-width: 500px;
max-height: 500px;
overflow-x: hidden;
overflow-y: auto;
list-style: none;
}
#blist li {
white-space: nowrap;
position: relative;
}
#blist li:last-child {
margin-bottom: 1px;
}
#blist li a {
display: block;
overflow: hidden;
text-overflow: ellipsis;
padding: 3px 4px;
color: #000000;
text-decoration: none;
}
#blist li a img {
padding-right: 4px;
}
#blist.selectable li:hover {
background: -webkit-gradient(
linear, left top, left bottom, from(#6a96c4), to(#456180)
);
}
#blist.selectable li:hover a {
color: #ffffff;
cursor: default;
}
#blist li .favicon {
width: 16px;
height: 16px;
vertical-align: middle;
margin-top: -3px;
}
#blist li .delete {
display: none;
position: absolute;
right: 5px;
top: 5px;
}
#blist li .selected {
background: #d0e4fa;
}
#blist input {
font-family: inherit;
font-size: 11px;
padding: 0;
margin: 0;
border: 1px inset #ddd;
width: 90%;
}
hr {
margin: 3px 0;
height: 1px;
border: 0;
background-color: #ccc;
}
#menu {
visibility: hidden;
position: absolute;
top: 0;
left: 0;
background: #fff;
border: 1px solid #777;
list-style: none;
padding: 3px;
}
#menu li {
cursor: default;
padding: 3px;
white-space: nowrap;
display: none;
}
#menu li:hover {
color: #ffffff;
background: #6a96c4;
}
#menu li img {
vertical-align: bottom;
}
#menu.bookmark li.bookmark {
display: block;
}
#menu.folder li.folder {
display: block;
}