Ticket #5237: 5237.patch
File 5237.patch, 1.6 KB (added by , 13 years ago) |
---|
-
_source/skins/kama/dialog.css
70 70 .cke_skin_kama .cke_browser_ie.cke_rtl .cke_dialog_title 71 71 { 72 72 position: static !important; 73 unicode-bidi: bidi-override;74 73 } 75 74 76 75 .cke_skin_kama .cke_dialog_contents -
_source/themes/default/theme.js
103 103 104 104 style += "width: " + width + ";"; 105 105 } 106 106 style += "direction: ", editor.lang.dir, ";"; 107 107 108 var sharedTop = topHtml && checkSharedSpace( editor, 'top' ), 108 109 sharedBottoms = checkSharedSpace( editor, 'bottom' ); 109 110 … … 115 116 ' id="cke_', name, '"' + 116 117 ' onmousedown="return false;"' + 117 118 ' class="', editor.skinClass, ' cke_editor_', name, '"' + 118 ' dir="', editor.lang.dir, '"' +119 119 ' title="', ( CKEDITOR.env.gecko ? ' ' : '' ), '"' + 120 120 ' lang="', editor.langCode, '"' + 121 121 ' role="application"' + … … 167 167 168 168 var element = CKEDITOR.dom.element.createFromHtml( [ 169 169 '<div class="cke_editor_' + editor.name.replace('.', '\\.') + '_dialog cke_skin_', editor.skinName, 170 '" dir="', editor.lang.dir, '"' + 170 '" ' + 171 ' style="direction: ', editor.lang.dir, ';"' + 171 172 ' lang="', editor.langCode, '"' + 172 173 ' role="dialog"' + 173 174 ' aria-labelledby="%title#"' +