TinyMCE: update the default styles: make the font size larger and make it the same size in tables. Fixes #30038
Built from https://develop.svn.wordpress.org/trunk@29986 git-svn-id: http://core.svn.wordpress.org/trunk@29728 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e2ff1da654
commit
4c81e264e8
|
@ -11,10 +11,11 @@ html.ios {
|
|||
|
||||
body {
|
||||
font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
|
||||
font-size: 13px;
|
||||
line-height: 19px;
|
||||
font-size: 100%;
|
||||
line-height: 1.5;
|
||||
color: #333;
|
||||
margin: 9px 10px;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
body.rtl {
|
||||
|
@ -26,7 +27,6 @@ body.locale-he-il {
|
|||
}
|
||||
|
||||
body.wp-autoresize {
|
||||
max-width: 100%;
|
||||
overflow: visible !important;
|
||||
/* The padding ensures margins of the children are contained in the body. */
|
||||
padding-top: 1px !important;
|
||||
|
@ -42,6 +42,16 @@ body.webkit b {
|
|||
font-weight: bold !important;
|
||||
}
|
||||
|
||||
pre {
|
||||
font-family: Consolas, Monaco, monospace;
|
||||
}
|
||||
|
||||
td,
|
||||
th {
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
}
|
||||
|
||||
/* DFW mode */
|
||||
html.wp-fullscreen,
|
||||
html.wp-fullscreen body#tinymce {
|
||||
|
@ -110,16 +120,6 @@ dl.wp-caption * {
|
|||
margin: 0;
|
||||
}
|
||||
|
||||
pre {
|
||||
font: 12px/18px Consolas, Monaco, monospace;
|
||||
}
|
||||
|
||||
td {
|
||||
color: #000;
|
||||
font-size: 11px;
|
||||
margin: 8px;
|
||||
}
|
||||
|
||||
/* Remove blue highlighting of selected images in WebKit */
|
||||
img::selection {
|
||||
background-color: transparent;
|
||||
|
|
Loading…
Reference in New Issue