Ticket #3391: 3391.patch
File 3391.patch, 7.5 KB (added by , 14 years ago) |
---|
-
_source/plugins/dialogui/plugin.js
132 132 html.push( '<div class="cke_dialog_ui_labeled_label" id="', 133 133 _.labelId, 134 134 '" >', 135 CKEDITOR.tools.htmlEncode( elementDefinition.label ),135 elementDefinition.label, 136 136 '</div>', 137 137 '<div class="cke_dialog_ui_labeled_content">', 138 138 contentHtml( dialog, elementDefinition ), -
_source/skins/v2/dialog.css
305 305 width: 100%; 306 306 } 307 307 308 .cke_skin_v2 .cke_ltr .cke_dialog_ui_hbox_first, 309 .cke_skin_v2 .cke_ltr .cke_dialog_ui_hbox_child 310 { 311 vertical-align: middle; 312 } 313 308 314 .cke_skin_v2 .cke_rtl .cke_dialog_ui_hbox_first, 309 315 .cke_skin_v2 .cke_rtl .cke_dialog_ui_hbox_child 310 316 { -
_source/plugins/table/dialogs/table.js
23 23 return { 24 24 title : editor.lang.table.title, 25 25 minWidth : 430, 26 minHeight : 180,26 minHeight : CKEDITOR.env.ie? 260 : 245, 27 27 onShow : function() 28 28 { 29 29 // Detect if there's a selected table. … … 198 198 { 199 199 id : 'info', 200 200 label : editor.lang.table.title, 201 style : CKEDITOR.env.ie? 'width: 80%;' : '', 201 202 accessKey : 'I', 202 203 elements : 203 204 [ … … 203 204 [ 204 205 { 205 206 type : 'hbox', 206 widths : [ ' 40%', '10%', '60%' ],207 widths : [ '50%', '50%' ], 207 208 children : 208 209 [ 209 210 { … … 208 209 [ 209 210 { 210 211 type : 'vbox', 212 style : 'width:105px', 211 213 padding : 0, 212 214 children : 213 215 [ … … 214 216 { 215 217 type : 'text', 216 218 id : 'txtRows', 217 labelLayout : ' horizontal',219 labelLayout : 'vertical', 218 220 widths : [ '60%','40%' ], 219 style : 'width:105px',221 220 222 'default' : 3, 221 223 label : editor.lang.table.rows, 222 224 validate : function() … … 241 243 { 242 244 type : 'text', 243 245 id : 'txtCols', 244 labelLayout : ' horizontal',246 labelLayout : 'vertical', 245 247 widths : [ '60%','40%' ], 246 style : 'width:105px',247 248 'default' : 2, 248 249 label : editor.lang.table.columns, 249 250 validate : function() … … 268 269 { 269 270 type : 'select', 270 271 id : 'selHeaders', 271 labelLayout : ' horizontal',272 labelLayout : 'vertical', 272 273 'default' : '', 273 274 widths : [ '40%', '60%' ], 274 275 label : editor.lang.table.headers, … … 307 308 { 308 309 type : 'text', 309 310 id : 'txtBorder', 310 labelLayout : ' horizontal',311 labelLayout : 'vertical', 311 312 widths : [ '60%','40%' ], 312 style : 'width:105px',313 313 'default' : 1, 314 314 label : editor.lang.table.border, 315 315 validate : CKEDITOR.dialog.validate['number']( editor.lang.table.invalidBorder ), … … 328 328 { 329 329 id : 'cmbAlign', 330 330 type : 'select', 331 labelLayout : ' horizontal',331 labelLayout : 'vertical', 332 332 'default' : '', 333 333 widths : [ '40%','60%' ], 334 334 label : editor.lang.table.align, … … 354 354 ] 355 355 }, 356 356 { 357 type : 'html',358 align : 'right',359 html : ''360 },361 {362 357 type : 'vbox', 363 align : 'right',358 style : 'width:140px', 364 359 padding : 0, 365 360 children : 366 361 [ … … 373 368 { 374 369 type : 'text', 375 370 id : 'txtWidth', 376 labelLayout : 'horizontal', 371 labelLayout : 'vertical', 372 style : 'width:105px', 377 373 widths : [ '50%','50%' ], 378 374 label : editor.lang.table.width, 379 375 'default' : 200, … … 389 385 { 390 386 id : 'cmbWidthType', 391 387 type : 'select', 392 labelLayout : ' horizontal',388 labelLayout : 'vertical', 393 389 widths : [ '0%','100%' ], 394 label : ' ',390 label : ' ', 395 391 'default' : 'pixels', 396 392 items : 397 393 [ … … 416 412 { 417 413 type : 'text', 418 414 id : 'txtHeight', 419 labelLayout : 'horizontal', 415 style : 'width:105px', 416 labelLayout : 'vertical', 420 417 widths : [ '50%','50%' ], 421 418 label : editor.lang.table.height, 422 419 'default' : '', … … 431 428 }, 432 429 { 433 430 type : 'html', 434 html : editor.lang.table.widthPx431 html : '<br />' + editor.lang.table.widthPx 435 432 } 436 433 ] 437 434 }, … … 442 439 { 443 440 type : 'text', 444 441 id : 'txtCellSpace', 445 labelLayout : ' horizontal',442 labelLayout : 'vertical', 446 443 widths : [ '50%','50%' ], 447 444 style : 'width:140px', 448 445 label : editor.lang.table.cellSpace, … … 463 460 { 464 461 type : 'text', 465 462 id : 'txtCellPad', 466 labelLayout : ' horizontal',463 labelLayout : 'vertical', 467 464 widths : [ '50%','50%' ], 468 465 style : 'width:140px', 469 466 label : editor.lang.table.cellPad, … … 500 497 type : 'text', 501 498 label : editor.lang.table.caption, 502 499 widths : [ '30%','70%' ], 503 labelLayout : ' horizontal',500 labelLayout : 'vertical', 504 501 'default' : '', 505 502 style : 'width:400px', 506 503 setup : function( selectedTable ) … … 545 542 { 546 543 id : 'txtSummary', 547 544 type : 'text', 548 labelLayout : ' horizontal',545 labelLayout : 'vertical', 549 546 label : editor.lang.table.summary, 550 547 'default' : '', 551 548 widths : [ '30%','70%' ], -
_source/plugins/dialog/plugin.js
727 727 children : contents.elements, 728 728 expand : !!contents.expand, 729 729 padding : contents.padding, 730 style : 'width: 100%; height: 100%;'730 style : contents.style || 'width: 100%; height: 100%;' 731 731 }, pageHtml ); 732 732 733 733 // Create the HTML for the tab and the content block. -
_source/skins/office2003/dialog.css
308 308 width: 100%; 309 309 } 310 310 311 .cke_skin_v2 .cke_ltr .cke_dialog_ui_hbox_first, 312 .cke_skin_v2 .cke_ltr .cke_dialog_ui_hbox_child 313 { 314 vertical-align: middle; 315 } 316 311 317 .cke_skin_office2003 .cke_rtl .cke_dialog_ui_hbox_first, 312 318 .cke_skin_office2003 .cke_rtl .cke_dialog_ui_hbox_child 313 319 {