blob: 6e449484da60bb9e0a3b8d732f629e7f8f36064f (
plain)
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
|
html {
height: 100vh;
height: 100svh;
overflow: hidden;
width: 100vw;
}
body {
display: flex;
flex-direction: column;
height: 100%;
justify-content: stretch;
overflow: hidden;
overflow-y: auto;
width: 100%;
}
.body {
flex-shrink: 0;
}
/* https://github.com/uBlockOrigin/uBlock-issues/issues/3058 */
:root.mobile body {
min-height: unset;
}
html:not(.mobile) [data-i18n="1pTrustWarning"] {
font-weight: bold;
}
.codeMirrorContainer {
flex-grow: 1;
}
#userFilters {
min-height: 8em;
text-align: left;
word-wrap: normal;
}
|