Skip to content

Commit 2c044fd

Browse files
committed
Merge branch 't/10868'
2 parents e464cb7 + f15a9bf commit 2c044fd

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ CKEditor 4 Changelog
55

66
Fixed Issues:
77

8+
* [#10868](http://dev.ckeditor.com/ticket/10868): Prevent from Internet Explorer 8 crashing when applying a cite style.
89
* [#10915](http://dev.ckeditor.com/ticket/10915): CSS filter in Kama skin pull request.
910
* [#10914](http://dev.ckeditor.com/ticket/10914): Plugins indentlist and indentblock included into building config.
1011
* [#10812](http://dev.ckeditor.com/ticket/10812): Fixed range#createBookmark2 incorrectly normalizing offsets. This bug was causing many issues: [#10850](http://dev.ckeditor.com/ticket/10850), [#10847](http://dev.ckeditor.com/ticket/10847), [#10842](http://dev.ckeditor.com/ticket/10842).

contents.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ img.left
8989
padding: 5px;
9090
}
9191

92-
img:hover
92+
/* #10868: We use :not() selector to exclude IE8, which crashes on img:hover style. */
93+
:not(.ie8) img:hover
9394
{
9495
opacity: .9;
9596
filter: alpha(opacity = 90);

0 commit comments

Comments
 (0)