﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
3717	config.dialog_backgroundCoverColor does not work in IE7 or IE8	Mike	Frederico Caldeira Knabben	"This is my first bug report for this project.  Please let me know if I am doing anything incorrectly.

I have set a custom dialog_backgroundCoverColor in the editor host page before calling CKEDITOR.replace.  It works correctly in FF3 but it does not work on IE7 or IE8 with compatibility mode on and off.  Here is my script block inside an ASP page:

<script type=""text/javascript"">
   //CKEDITOR.config.toolbarLocation = 'Out:xToolbar';
   CKEDITOR.config.height = '800px';
   CKEDITOR.config.dialog_backgroundCoverColor = 'rgb(255, 0, 0)';
   CKEDITOR.config.contentsCss = '../<%=folder%>style.css';
   CKEDITOR.config.skin = 'office2003';
   CKEDITOR.config.toolbar = 
   [
   	['Source','-','Save','NewPage','Preview','-','Templates'],
   	['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker','Scayt'],
   	['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
//   	['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'],
   	'/',
   	['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
   	['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'],
   	['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
   	['Link','Unlink','Anchor'],	['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],
   	'/',
   	['Styles','Format','Font','FontSize'],
   	['TextColor','BGColor'],
   	['Maximize','ShowBlocks','-','About']   
   ];	   
	CKEDITOR.replace( 'editleftcol',
	{
   	filebrowser_browse_url : '/editor/ckfinder/ckfinder.html?action=js&func=SetUrl&thumbFunc=SetUrl',
   	filebrowser_image_browse_url : '/editor/ckfinder/ckfinder.html?action=js&func=SetUrl&thumbFunc=SetUrl&Type=Images',
   	filebrowser_flash_browse_url : '/editor/ckfinder/ckfinder.html?action=js&func=SetUrl&thumbFunc=SetUrl&Type=Flash',
   	filebrowser_upload_url : '/editor/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Files',
   	filebrowser_image_upload_url : '/editor/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Images',
   	filebrowser_flash_upload_url : '/editor/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Flash'
   });
	CKEDITOR.replace( 'editrightcol');					
</script>
"	Bug	closed	Normal	CKEditor 3.1	UI : Dialogs	SVN (CKEditor) - OLD	fixed	Confirmed Review+	mrceolla@…
