Ticket #5587: 5587_3.patch
File 5587_3.patch, 2.7 KB (added by , 15 years ago) |
---|
-
_source/plugins/image/dialogs/image.js
262 262 previewImageId = numbering( 'previewImage' ); 263 263 264 264 return { 265 title : ( dialogType == 'image' )? editor.lang.image.title : editor.lang.image.titleButton,265 title : dialogType == 'image' ? editor.lang.image.title : editor.lang.image.titleButton, 266 266 minWidth : 420, 267 minHeight : 310,267 minHeight : CKEDITOR.env.ie7Compat ? 330 : ( CKEDITOR.env.ie6Compat ? 350 : 310 ), 268 268 onShow : function() 269 269 { 270 270 this.imageElement = false; -
_source/plugins/tabletools/dialogs/tableCell.js
72 72 73 73 return { 74 74 title : langCell.title, 75 minWidth : CKEDITOR.env.ie && CKEDITOR.env.quirks ? 550 : 480,76 minHeight : CKEDITOR.env.ie ? ( CKEDITOR.env.quirks ? 180 : 150) : 140,75 minWidth : CKEDITOR.env.ie && CKEDITOR.env.quirks || CKEDITOR.env.ie7Compat ? 560 : 480, 76 minHeight : CKEDITOR.env.ie ? ( CKEDITOR.env.quirks ? 200 : ( CKEDITOR.env.ie7Compat ? 180 : 150 ) ) : 140, 77 77 contents : [ 78 78 { 79 79 id : 'info', … … 398 398 { 399 399 type : 'hbox', 400 400 padding : 0, 401 widths : [ ' 70%', '30%' ],401 widths : [ '65%', '35%' ], 402 402 children : 403 403 [ 404 404 { … … 429 429 type : 'button', 430 430 id : 'bgColorChoose', 431 431 label : langCell.chooseColor, 432 style : ( rtl ? 'margin-right' : 'margin-left' ) + ': 10px',432 style : !CKEDITOR.env.ie7Compat ? ( rtl ? 'margin-right' : 'margin-left' ) + ': 10px' : '', 433 433 onLoad : function() 434 434 { 435 435 // Stick the element to the bottom (#5587) … … 452 452 { 453 453 type : 'hbox', 454 454 padding : 0, 455 widths : [ ' 70%', '30%' ],455 widths : [ '65%', '35%' ], 456 456 children : 457 457 [ 458 458 { … … 482 482 type : 'button', 483 483 id : 'borderColorChoose', 484 484 label : langCell.chooseColor, 485 style : ( rtl ? 'margin-right' : 'margin-left' ) + ': 10px',485 style : !CKEDITOR.env.ie7Compat ? ( rtl ? 'margin-right' : 'margin-left' ) + ': 10px' : '', 486 486 onLoad : function() 487 487 { 488 488 // Stick the element to the bottom (#5587)