Fix the gutter height of the editor when the parent is resized.

This commit is contained in:
Dave Page
2015-02-13 13:13:36 +00:00
parent f4982efb19
commit b09c1b6c68
6 changed files with 35 additions and 5 deletions

View File

@@ -19,3 +19,8 @@
iframe {
border-width: 0;
}
/* Ensure the codemirror editor displays full height gutters when resized */
.CodeMirror, .CodeMirror-gutters {
height: 100% !important;
}