Ticket #3921: 3921_2.patch

File 3921_2.patch, 2.4 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

     
    126126{
    127127        position: absolute;
    128128}
     129
     130.cke_skin_kama .cke_browser_ie.cke_browser_quirks .cke_contents iframe
     131{
     132        position: absolute;
     133        top: 0;
     134}
  • _source/plugins/sourcearea/plugin.js

     
    124124
    125125                                                        if ( onResize )
    126126                                                                editor.removeListener( 'resize', onResize );
     127
     128                                                        if ( CKEDITOR.env.ie && CKEDITOR.env.version < 8 )
     129                                                                holderElement.removeStyle( 'position' );
    127130                                                },
    128131
    129132                                                focus : function()
  • _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