forked from uBlock-LLC/uBlock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevtools.css
More file actions
81 lines (81 loc) · 1.41 KB
/
devtools.css
File metadata and controls
81 lines (81 loc) · 1.41 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
body {
font-size: 13px;
margin: 0;
overflow-y: hidden;
padding: 0;
}
#toolbar {
background-color: rgba(238, 238, 238, 0.85);
border: none;
padding: 1em;
-moz-box-sizing: border-box;
box-sizing: border-box;
height: 50px;
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 5;
}
#toolbar > * {
display: inline-block;
position: relative;
vertical-align: middle;
}
#pageSelector {
max-width: 80%;
}
#toolbar .button {
background-color: transparent;
border: none;
cursor: pointer;
font: inherit;
margin: 0 0 0 1em;
}
#toolbar .button:hover {
color: #999;
}
#toolbar #popupToggler {
opacity: 0.4;
position: absolute;
top: 13px;
right: 13px;
z-index: 9;
font-size: 20px;
margin: 0;
}
body.popupEnabled #popupToggler {
opacity: 1;
}
select {
padding: 2px 0;
font-size: 14px;
min-width: 20em;
max-width: 40em;
border: 1px solid #ccc;
}
select option {
max-width: 40em;
}
#content {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
padding: 0;
-moz-box-sizing: border-box;
box-sizing: border-box;
overflow-y: auto;
}
#popup {
border: 1px solid gray;
display: none;
position: fixed;
right: 3px;
top: 53px;
}
body.popupEnabled #popup {
display: block;
}