Ticket #4521: 4521_2.patch
File 4521_2.patch, 834 bytes (added by , 15 years ago) |
---|
-
_source/skins/kama/skin.js
212 212 height = data.height, 213 213 dialog = data.dialog, 214 214 contents = dialog.parts.contents, 215 footer = dialog.parts.footer, 215 216 standardsMode = !CKEDITOR.env.quirks; 216 217 217 218 if ( data.skin != 'kama' ) … … 232 233 'min-height' : height + 'px' 233 234 }); 234 235 236 // Temporary fix for footer buttons shift problem in IE7 standard modes 237 // by giving a fixed width to the footer wrapper.(#4521) 238 if( CKEDITOR.env.ie7Compat && standardsMode ) 239 footer.setStyles( { width : ( contents.$.offsetWidth - 2 ) + 'px' } ); 240 235 241 if ( !CKEDITOR.env.ie ) 236 242 return; 237 243