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:
parent
5d7e30e7d9
commit
44e3ddfe7d
|
@ -22,8 +22,9 @@ Description: Used to style the TinyMCE editor.
|
||||||
* 1.0 Body
|
* 1.0 Body
|
||||||
*/
|
*/
|
||||||
|
|
||||||
html .mceContentBody {
|
html .mce-content-body {
|
||||||
font-size: 19px;
|
font-size: 17px;
|
||||||
|
font-size: 1.7rem;
|
||||||
max-width: 660px;
|
max-width: 660px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,8 +32,7 @@ body {
|
||||||
color: #333;
|
color: #333;
|
||||||
font-family: "Noto Serif", sans-serif;
|
font-family: "Noto Serif", sans-serif;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
line-height: 1.6842;
|
line-height: 1.6471;
|
||||||
margin: 83px 0 83px 83px;
|
|
||||||
vertical-align: baseline;
|
vertical-align: baseline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -488,4 +488,4 @@ html .mceContentBody.rtl {
|
||||||
|
|
||||||
.rtl .wp-caption.alignleft {
|
.rtl .wp-caption.alignleft {
|
||||||
margin: 8px 32px 8px 0;
|
margin: 8px 32px 8px 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue