Skip to content

Instantly share code, notes, and snippets.

@YellowAfterlife
Created September 8, 2014 17:52
Show Gist options
  • Save YellowAfterlife/2f4c231265afef991530 to your computer and use it in GitHub Desktop.
Save YellowAfterlife/2f4c231265afef991530 to your computer and use it in GitHub Desktop.
WP Editor fix for WordPress 4.0
/* wpeditor.css, line 240: */
.CodeMirror {
height:auto !important;
width:100%;
}
.wp-editor-container .CodeMirror {
width:100% !important;
}
.wp-editor-container .CodeMirror-scroll {
border:none;
}
.CodeMirror-scroll {
overflow-x:auto;
overflow-y:hidden !important;
height:auto !important;
}
/* ... */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment