We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7b7a63c + 8c7a99d commit ed68fdeCopy full SHA for ed68fde
core/skin.js
@@ -181,9 +181,9 @@
181
182
/** Sets the color of the editor user interface. This method accepts a color value in
183
* hexadecimal notation, with a `#` character (e.g. #ffffff).
184
- *
+ *
185
* CKEDITOR.instances.editor1.setUiColor( '#ff00ff' );
186
187
* @method
188
* @member CKEDITOR.editor
189
* @param {String} color The desired editor UI color in hexadecimal notation.
@@ -244,7 +244,7 @@
244
for ( r = 0; r < replace.length; r++ )
245
content = content.replace( replace[ r ][ 0 ], replace[ r ][ 1 ] );
246
247
- if ( CKEDITOR.env.ie )
+ if ( CKEDITOR.env.ie && CKEDITOR.env.version < 11 )
248
styleNodes[ id ].$.styleSheet.cssText += content;
249
else
250
styleNodes[ id ].$.innerHTML += content;
0 commit comments