Ticket #17154: 17154-2.patch
File 17154-2.patch, 4.8 KB (added by , 12 years ago) |
---|
-
wp-content/themes/twentyeleven/editor-style.css
13 13 font-weight: inherit; 14 14 line-height: 1.625; 15 15 } 16 body { 16 17 /* Workaround for a WebKit bug: inserting spans with inline styles, see #17154 */ 18 body, 19 li, 20 p, 21 span { 17 22 color: #333; 18 font: 15px "Helvetica Neue", Helvetica, Arial, "Nimbus Sans L",sans-serif;23 font: 15px "Helvetica Neue", Helvetica, Arial, sans-serif; 19 24 font-weight: 300; 20 25 line-height: 1.625; 21 26 } … … 309 314 .wp-caption a:hover img { 310 315 background: #fff; 311 316 border-color: #ddd; 312 } 313 No newline at end of file 317 } -
wp-content/themes/twentyten/editor-style.css
19 19 blockquote { 20 20 font-size: 16px; 21 21 } 22 23 /* Workaround for a WebKit bug: inserting spans with inline styles, see #17154 */ 24 body, 25 li, 26 p, 27 span { 28 color: #444; 29 font-family: Georgia, "Bitstream Charter", serif; 30 line-height: 1.5; 31 font-size: 16px; 32 } 33 22 34 tr th, 23 35 thead th, 24 36 label, … … 32 44 code, code var { 33 45 font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; 34 46 } 35 body,input, textarea {47 input, textarea { 36 48 font-size: 12px; 37 49 line-height: 18px; 38 50 } -
wp-content/themes/twentythirteen/css/editor-style.css
9 9 } 10 10 11 11 body { 12 font-family: "Source Sans Pro", Helvetica, sans-serif;13 color: #141412;14 line-height: 1.5;15 12 text-rendering: optimizeLegibility; 16 13 vertical-align: baseline; 17 14 } 18 15 16 /* Workaround for a WebKit bug: inserting spans with inline styles, see #17154 */ 17 body, 18 span { 19 font: 16px "Source Sans Pro", Helvetica, sans-serif; 20 color: #141412; 21 line-height: 1.5; 22 } 19 23 20 24 /** 21 25 * Headings … … 341 345 line-height: 1.5; 342 346 margin-bottom: 24px; 343 347 padding: 0; 344 } 345 No newline at end of file 348 } -
wp-content/themes/twentytwelve/editor-style.css
10 10 max-width: 625px; 11 11 } 12 12 body { 13 text-rendering: optimizeLegibility; 14 vertical-align: baseline; 15 } 16 17 /* Workaround for a WebKit bug: inserting spans with inline styles, see #17154 */ 18 body, 19 span { 13 20 color: #444; 14 21 font-family: "Open Sans", Helvetica, Arial, sans-serif; 15 22 font-size: 14px; 16 font-size: 1rem; 17 line-height: 1; 18 text-rendering: optimizeLegibility; 19 vertical-align: baseline; 23 line-height: 1.714285714; 20 24 } 21 25 22 23 26 /* =Headings 24 27 -------------------------------------------------------------- */ 25 28 … … 73 76 -------------------------------------------------------------- */ 74 77 75 78 p { 76 line-height: 1.714285714;77 79 margin: 0 0 24px; 78 80 margin: 0 0 1.714285714rem; 79 81 } … … 81 83 ol { 82 84 margin: 0 0 24px; 83 85 margin: 0 0 1.714285714rem; 84 line-height: 1.714285714;85 86 padding: 0; 86 87 } 87 88 ul { … … 339 340 line-height: 2; 340 341 margin: 0 0 24px; 341 342 margin: 0 0 1.71429rem; 342 } 343 No newline at end of file 343 } -
wp-includes/js/tinymce/themes/advanced/skins/wp_theme/content.css
1 1 2 2 body.mceForceColors {background:#FFF; color:#000;} 3 3 body.mceBrowserDefaults {background:transparent; color:inherit; font-size:inherit; font-family:inherit;} 4 td {color:#000; font -family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; margin:8px;}4 td {color:#000; font: 11px Verdana, Arial, Helvetica, sans-serif; margin:8px;} 5 5 h1 {font-size: 2em} 6 6 h2 {font-size: 1.5em} 7 7 h3 {font-size: 1.17em} … … 38 38 39 39 /* WordPress styles */ 40 40 body { 41 margin: 10px; 42 } 43 44 /* Workaround for a WebKit bug: inserting spans with inline styles, see #17154 */ 45 body, 46 span { 41 47 font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; 42 48 font-size: 13px; 43 49 line-height: 19px; 44 50 color: #333; 45 margin: 10px;46 51 } 47 52 48 br[data-mce-bogus] {49 line-height: 1em;50 margin-top: -1em;51 }52 53 br[data-mce-bogus]:only-child {54 line-height: inherit;55 margin-top: inherit;56 }57 58 53 .aligncenter, 59 54 dl.aligncenter { 60 55 display: block; … … 103 98 } 104 99 105 100 td { 106 color: #000;107 font-size: 11px;108 101 margin: 8px; 109 102 } 110 103