Ticket #3921: 3921.patch

File 3921.patch, 2.6 KB (added by Tobiasz Cudnik, 15 years ago)
  • CHANGES.html

     
    117117                <li><a href="http://dev.fckeditor.net/ticket/3887">#3887</a> : Fixed an issue in which the create
    118118                        list command may leak outside of a selected table cell and into the rest of document.</li>
    119119                <li><a href="http://dev.fckeditor.net/ticket/3916">#3916</a> : Fixed maximize does not enlarge editor width when width is set.</li>
     120                <li><a href="http://dev.fckeditor.net/ticket/3921">#3921</a> : Fixed Container scroll issue on IE7.</li>
    120121        </ul>
    121122        <h3>
    122123                CKEditor 3.0 RC</h3>
  • _source/skins/kama/mainui.css

     
    121121        display: none;
    122122}
    123123
    124 .cke_skin_kama .cke_browser_ie6 .cke_contents textarea,
    125 .cke_skin_kama .cke_browser_ie7 .cke_contents textarea
     124.cke_skin_kama .cke_browser_ie.cke_browser_quirks .cke_contents iframe
    126125{
    127126        position: absolute;
     127        top: 0;
    128128}
  • _source/plugins/sourcearea/plugin.js

     
    2525                                        {
    2626                                                load : function( holderElement, data )
    2727                                                {
    28                                                         if ( CKEDITOR.env.ie && CKEDITOR.env.version < 8 )
    29                                                                 holderElement.setStyle( 'position', 'relative' );
    30 
    3128                                                        // Create the source area <textarea>.
    3229                                                        editor.textarea = textarea = new CKEDITOR.dom.element( 'textarea' );
    3330                                                        textarea.setAttributes(
  • _source/plugins/wysiwygarea/plugin.js

     
    282282                                                        // Accessibility label for IE.
    283283                                                        fieldset = CKEDITOR.dom.element.createFromHtml(
    284284                                                                '<fieldset style="height:100%' +
    285                                                                         ( CKEDITOR.env.quirks ? ';position:relative' : '' ) +
    286285                                                                '">' +
    287286                                                                        '<legend style="position:absolute;left:-10000px">' +
    288287                                                                                CKEDITOR.tools.htmlEncode( accTitle ) +
     
    464463                                                        {
    465464                                                                mainElement = holderElement;
    466465
    467                                                                 if ( CKEDITOR.env.ie && ( CKEDITOR.env.quirks || CKEDITOR.env.version < 8 ) )
     466                                                                if ( CKEDITOR.env.ie && CKEDITOR.env.quirks )
    468467                                                                        holderElement.setStyle( 'position', 'relative' );
    469468
    470469                                                                // The editor data "may be dirty" after this
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy