mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Related issue: - https://github.com/uBlockOrigin/uBlock-issues/issues/214 Built-in whitelist directives are now rendered differently than user-defined whitelist directives. Also, removing a built-in whitelist directive will only cause that directive to be commented out, so that users do not have to remember built-in directives should they want to bring them back. Related issue: https://github.com/uBlockOrigin/uBlock-issues/issues/494 The built-in per-site switch rule `no-scripting: behind-the-scene false` has been removed, it should not ever be needed since there will always be a valid root context for main- and sub-frames.
18 lines
292 B
CSS
18 lines
292 B
CSS
html {
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
body {
|
|
overflow: hidden;
|
|
}
|
|
#whitelist {
|
|
height: 75vh;
|
|
text-align: left;
|
|
width: 100%;
|
|
}
|
|
.codeMirrorContainer .cm-builtin {
|
|
color: #00F;
|
|
}
|
|
.codeMirrorContainer .cm-comment.cm-builtin {
|
|
color: #88F;
|
|
}
|