Twenty Fifteen: make font-size/line-height in editor-style.css the same as in style.css. Remove margins from the editor body, interferes with autoresize in some browsers and is overriden in the default styles. See #29799

git-svn-id: https://develop.svn.wordpress.org/trunk@29909 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2014-10-15 22:36:27 +00:00
parent 5d7e30e7d9
commit 44e3ddfe7d
1 changed files with 5 additions and 5 deletions

View File

@ -22,8 +22,9 @@ Description: Used to style the TinyMCE editor.
* 1.0 Body
*/
html .mceContentBody {
font-size: 19px;
html .mce-content-body {
font-size: 17px;
font-size: 1.7rem;
max-width: 660px;
}
@ -31,8 +32,7 @@ body {
color: #333;
font-family: "Noto Serif", sans-serif;
font-weight: 400;
line-height: 1.6842;
margin: 83px 0 83px 83px;
line-height: 1.6471;
vertical-align: baseline;
}
@ -488,4 +488,4 @@ html .mceContentBody.rtl {
.rtl .wp-caption.alignleft {
margin: 8px 32px 8px 0;
}
}