I have set the config.contentsCss to be a list of two files using something like:
contentsCss : ['/path/to/file1.css', '/anotherpath/to/LIBRARYGENERATED-KEEP/css/3401442a-c43e-45e5-8c9f-83ed4bdef1c7/ccc13d12-10b7-4358-9d83-162a478da95d.css"' ]
file1.css defines default styles.
file2.css defines some of the same style to override some from file1.css
In FF 3.6, Chrome 8, Opera 10.6, Safari 5, this works as expected.
In IE8, it doesn't seem to take. It's not neither style sheet is being used to control the editor contents, though when I look at it from IE8's Developer Tools, it shows the two expected LINK tags (which of course work as desired in the other browsers).
<link href="/path/to/file1.css" rel="stylesheet" type="text/css"/>
<link href="/anotherpath/to/LIBRARYGENERATED-KEEP/css/3401442a-c43e-45e5-8c9f-83ed4bdef1c7/ccc13d12-10b7-4358-9d83-162a478da95d.css"" rel="stylesheet" type="text/css"/>
Any ideas what this might be the case? I'm using the latest CKEditor...
contentsCss : ['/path/to/file1.css', '/anotherpath/to/LIBRARYGENERATED-KEEP/css/3401442a-c43e-45e5-8c9f-83ed4bdef1c7/ccc13d12-10b7-4358-9d83-162a478da95d.css"' ]
file1.css defines default styles.
file2.css defines some of the same style to override some from file1.css
In FF 3.6, Chrome 8, Opera 10.6, Safari 5, this works as expected.
In IE8, it doesn't seem to take. It's not neither style sheet is being used to control the editor contents, though when I look at it from IE8's Developer Tools, it shows the two expected LINK tags (which of course work as desired in the other browsers).
<link href="/path/to/file1.css" rel="stylesheet" type="text/css"/>
<link href="/anotherpath/to/LIBRARYGENERATED-KEEP/css/3401442a-c43e-45e5-8c9f-83ed4bdef1c7/ccc13d12-10b7-4358-9d83-162a478da95d.css"" rel="stylesheet" type="text/css"/>
Any ideas what this might be the case? I'm using the latest CKEditor...
Re: config.contentsCss (two filles) in IE8
Turns out this was an IE8 caching issue with the CSS, no matter how much I try to tell it not to cache it. At any rate, refreshing the page or clearing the cache causes the changes to appear as expected.