mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-25 03:06:31 -05:00
Merge pull request #81 from SISheogorath/fix/codemirrorBottomCSS
Fix CodeMirror toolbar hiding content
This commit is contained in:
commit
388f034750
1 changed files with 4 additions and 1 deletions
|
@ -106,7 +106,10 @@ body.night{
|
||||||
color: #78B2F2 !important;
|
color: #78B2F2 !important;
|
||||||
}
|
}
|
||||||
.CodeMirror-sizer {
|
.CodeMirror-sizer {
|
||||||
margin-bottom: 0px !important;
|
/* Make sure CodeMirror doesn't hide text under the status bar
|
||||||
|
* 26px is the height of the status bar.
|
||||||
|
*/
|
||||||
|
margin-bottom: 26px !important;
|
||||||
}
|
}
|
||||||
.CodeMirror-insert-match {
|
.CodeMirror-insert-match {
|
||||||
background: lawngreen;
|
background: lawngreen;
|
||||||
|
|
Loading…
Reference in a new issue