Changeset 3611 for CKEditor/trunk


Ignore:
Timestamp:
2009-06-03 10:53:11 (3 years ago)
Author:
martinkou
Message:

Fixed #3654 : Resize handle should not be visible after maximize mode is enabled.

Location:
CKEditor/trunk/_source
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • CKEditor/trunk/_source/plugins/maximize/plugin.js

    r3608 r3611  
    187187                                                                        top : ( -1 * offset.y ) + 'px' 
    188188                                                                } ); 
     189 
     190                                                        // Add cke_maximized class. 
     191                                                        container.addClass( 'cke_maximized' ); 
    189192                                                } 
    190193                                                else if ( this.state == CKEDITOR.TRISTATE_ON )  // Restore from fullscreen if the state is on. 
     
    210213                                                        // Restore the window scroll position. 
    211214                                                        mainWindow.$.scrollTo( outerScroll.x, outerScroll.y ); 
     215 
     216                                                        // Remove cke_maximized class. 
     217                                                        container.removeClass( 'cke_maximized' ); 
    212218 
    213219                                                        // Emit a resize event, because this time the size is modified in 
  • CKEditor/trunk/_source/skins/office2003/mainui.css

    r3534 r3611  
    6767} 
    6868 
     69.cke_skin_office2003 .cke_maximized .cke_resizer 
     70{ 
     71        display: none; 
     72} 
     73 
    6974.cke_skin_office2003 .cke_rtl .cke_resizer 
    7075{ 
  • CKEditor/trunk/_source/skins/v2/mainui.css

    r3534 r3611  
    7878} 
    7979 
     80.cke_skin_v2 .cke_maximized .cke_resizer 
     81{ 
     82        display: none; 
     83} 
     84 
    8085.cke_skin_v2 .cke_rtl .cke_resizer 
    8186{ 
Note: See TracChangeset for help on using the changeset viewer.
© 2003 – 2011 CKSource – Frederico Knabben. All rights reserved. | Terms of use | Privacy policy