Ticket #4835: 4835_2.patch
File 4835_2.patch, 2.7 KB (added by , 13 years ago) |
---|
-
_source/skins/kama/mainui.css
18 18 padding: 5px; 19 19 } 20 20 21 .cke_skin_kama span.cke_browser_webkit 22 { 23 display: block; 24 } 25 21 26 .cke_skin_kama .cke_wrapper 22 27 { 23 28 -moz-border-radius: 5px; -
_source/plugins/maximize/plugin.js
114 114 editorFocus : false, 115 115 exec : function() 116 116 { 117 var container = editor.container.getChild( [ 0, 0 ]);117 var container = editor.container.getChild( 0 ); 118 118 var contents = editor.getThemeSpace( 'contents' ); 119 119 120 120 // Save current selection and scroll position in editing area. -
_source/skins/v2/mainui.css
17 17 display: block; 18 18 } 19 19 20 .cke_skin_v2 span.cke_browser_webkit 21 { 22 display: block; 23 } 24 20 25 .cke_skin_v2 .cke_wrapper 21 26 { 22 27 display: block; -
_source/themes/default/theme.js
276 276 if ( numberRegex.test( width ) ) 277 277 width += 'px'; 278 278 279 var cont ents = CKEDITOR.document.getById( 'cke_contents_' + this.name );280 var outer = resizeInner ? contents.getAscendant( 'table' ).getParent()281 : contents.getAscendant( 'table' ).getParent().getParent().getParent();279 var container = this.container, 280 contents = CKEDITOR.document.getById( 'cke_contents_' + this.name ), 281 outer = resizeInner ? container.getChild( 0 ) : container; 282 282 283 283 // Resize the width first. 284 284 // WEBKIT BUG: Webkit requires that we put the editor off from display when we … … 302 302 303 303 CKEDITOR.editor.prototype.getResizable = function() 304 304 { 305 return this.container.getChild( [ 0, 0 ]);305 return this.container.getChild( 0 ); 306 306 }; 307 307 308 308 /** -
_source/skins/office2003/mainui.css
12 12 width: 100%; 13 13 } 14 14 15 .cke_skin_office2003 span.cke_browser_webkit 16 { 17 display: block; 18 } 19 15 20 .cke_skin_office2003, 16 21 .cke_skin_office2003 .cke_wrapper 17 22 {