- Timestamp:
- 12/12/2014 12:09:29 AM (10 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/css/editor.css
r30812 r30829 166 166 margin-bottom: 8px; 167 167 position: absolute; 168 visibility: hidden; 168 169 -moz-user-select: none; 169 170 -webkit-user-select: none; … … 255 256 width: 100%; 256 257 overflow-x: auto; 258 } 259 260 div.mce-inline-toolbar-grp-active { 261 visibility: visible; 257 262 } 258 263 -
trunk/src/wp-includes/js/tinymce/plugins/wpeditimage/plugin.js
r30775 r30829 310 310 311 311 floatingToolbar.on( 'show', function() { 312 var self = this;313 314 312 toolbarIsHidden = false; 315 313 316 setTimeout( function() { 317 if ( self._visible ) { 318 DOM.addClass( self.getEl(), 'mce-inline-toolbar-grp-active' ); 319 self.reposition(); 320 } 321 }, 100 ); 314 if ( this._visible ) { 315 this.reposition(); 316 DOM.addClass( this.getEl(), 'mce-inline-toolbar-grp-active' ); 317 } 322 318 } ); 323 319
Note: See TracChangeset
for help on using the changeset viewer.