Ticket #5902: 5902.patch
File 5902.patch, 3.4 KB (added by , 13 years ago) |
---|
-
_source/skins/kama/dialog.css
724 724 background-color : white; 725 725 } 726 726 727 .cke_skin_kama .cke_dialog textarea.cke_pastetext 728 { 729 width: 446px; 730 height: 170px; 731 resize: none; 732 border: 1px solid black; 733 background-color: white; 734 } 735 736 .cke_skin_kama .cke_dialog iframe.cke_pasteframe 737 { 738 width: 346px; 739 height: 130px; 740 background-color: white; 741 border: 1px solid black; 742 } 743 727 744 .cke_skin_kama .cke_dialog .cke_dark_background 728 745 { 729 746 text-align : center; -
_source/plugins/clipboard/dialogs/paste.js
76 76 77 77 var iframe = CKEDITOR.dom.element.createFromHtml( 78 78 '<iframe' + 79 ' class="cke_pasteframe"' + 79 80 ' frameborder="0" ' + 80 81 ' allowTransparency="true"' + 81 82 // Support for custom document.domain in IE. … … 103 104 doc.close(); 104 105 }, this ); 105 106 106 iframe.setStyles(107 {108 width : '346px',109 height : '130px',110 'background-color' : 'white',111 border : '1px solid black'112 } );113 107 iframe.setCustomData( 'dialog', this ); 114 108 115 109 var field = this.getContentElement( 'general', 'editing_area' ), -
_source/skins/v2/dialog.css
657 657 background-color : white; 658 658 } 659 659 660 .cke_skin_v2 .cke_dialog textarea.cke_pastetext 661 { 662 width: 446px; 663 height: 170px; 664 resize: none; 665 border: 1px solid black; 666 background-color: white; 667 } 668 669 .cke_skin_v2 .cke_dialog iframe.cke_pasteframe 670 { 671 width: 346px; 672 height: 130px; 673 background-color: white; 674 border: 1px solid black; 675 } 676 660 677 .cke_skin_v2 .cke_dialog .cke_dark_background 661 678 { 662 679 text-align : center; -
_source/plugins/pastetext/dialogs/pastetext.js
48 48 id : 'content', 49 49 style : 'width:340px;height:170px', 50 50 html : 51 '<textarea style="' + 52 'width:346px;' + 53 'height:170px;' + 54 'resize: none;' + 51 '<textarea class="cke_pastetext" style="' + 55 52 'direction:' + editor.config.contentsLangDirection + ';' + 56 'border:1px solid black;' + 57 'background-color:white">' + 58 '</textarea>', 53 '"></textarea>', 59 54 60 55 onLoad : function() 61 56 { -
_source/skins/office2003/dialog.css
655 655 background-color : white; 656 656 } 657 657 658 .cke_skin_office2003 .cke_dialog textarea.cke_pastetext 659 { 660 width: 446px; 661 height: 170px; 662 resize: none; 663 border: 1px solid black; 664 background-color: white; 665 } 666 667 .cke_skin_office2003 .cke_dialog iframe.cke_pasteframe 668 { 669 width: 346px; 670 height: 130px; 671 background-color: white; 672 border: 1px solid black; 673 } 674 658 675 .cke_skin_office2003 .cke_dialog .cke_dark_background 659 676 { 660 677 text-align : center;