forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDropdown.css
More file actions
53 lines (48 loc) · 948 Bytes
/
Copy pathDropdown.css
File metadata and controls
53 lines (48 loc) · 948 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
.dropdown {
background: var(--theme-body-background);
border: 1px solid var(--theme-splitter-color);
box-shadow: 0 4px 4px 0 var(--theme-search-overlays-semitransparent);
max-height: 300px;
position: absolute;
right: 8px;
top: 35px;
width: 150px;
z-index: 1000;
}
.dropdown-button {
position: absolute;
right: 18px;
top: 4px;
font-size: 18px;
color: var(--theme-body-color);
cursor: pointer;
background: none;
border: none;
}
.dropdown li {
transition: all 0.25s ease;
padding: 2px 10px 10px 5px;
overflow: hidden;
height: 30px;
text-overflow: ellipsis;
}
.dropdown li:hover {
background-color: var(--theme-search-overlays-semitransparent);
cursor: pointer;
}
.dropdown ul {
list-style: none;
line-height: 2em;
font-size: 1em;
margin: 0;
padding: 0;
}
.dropdown-mask {
position: fixed;
width: 100%;
height: 100%;
background: transparent;
z-index: 999;
left: 0;
top: 0;
}