mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-11 09:31:01 +01:00
fix resizing quirk due to new top panel (#3567)
This commit is contained in:
parent
84ba3e918c
commit
65e55549c7
1 changed files with 11 additions and 2 deletions
|
@ -6,9 +6,18 @@
|
||||||
.CodeMirror {
|
.CodeMirror {
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
flex-grow: 1;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* For when panels are used */
|
||||||
|
.codeMirrorContainer > div:not(.CodeMirror) {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.cm-s-default .cm-comment {color: #777;}
|
.cm-s-default .cm-comment {color: #777;}
|
||||||
.cm-staticext {color: #008;}
|
.cm-staticext {color: #008;}
|
||||||
.cm-staticnet.cm-block {color: #800;}
|
.cm-staticnet.cm-block {color: #800;}
|
||||||
|
|
Loading…
Reference in a new issue