Skip to content

Commit 4a3ae1a

Browse files
committed
Merge branch 't/11542'
2 parents a66510b + bb01c44 commit 4a3ae1a

File tree

2 files changed

+19
-14
lines changed

2 files changed

+19
-14
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Fixed Issues:
1818
* [#11400](http://dev.ckeditor.com/ticket/11400): Fixed [`domObject.removeAllListeners`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.domObject-method-removeAllListeners) does not remove custom listeners completely.
1919
* [#11493](http://dev.ckeditor.com/ticket/11493): Fixed [`selection.getRanges`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.selection-method-getRanges) does not override cached ranges when used with `onlyEditables` argument.
2020
* [#11390](http://dev.ckeditor.com/ticket/11390): All [XML](http://docs.ckeditor.com/#!/api/CKEDITOR.xml) plugin's methods work now on IE10+.
21+
* [#11542](http://dev.ckeditor.com/ticket/11542): [IE11] Fixed: Blurry toolbar icons when right-to-left UI language is set.
2122

2223
## CKEditor 4.3.2
2324

skins/moono/toolbar.css

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -93,20 +93,6 @@ Special outer level classes used in this file:
9393
margin-bottom: 10px;
9494
}
9595

96-
.cke_rtl .cke_toolgroup *:first-child
97-
{
98-
-moz-border-radius: 0 2px 2px 0;
99-
-webkit-border-radius: 0 2px 2px 0;
100-
border-radius: 0 2px 2px 0;
101-
}
102-
103-
.cke_rtl .cke_toolgroup *:last-child
104-
{
105-
-moz-border-radius: 2px 0 0 2px;
106-
-webkit-border-radius: 2px 0 0 2px;
107-
border-radius: 2px 0 0 2px;
108-
}
109-
11096
.cke_rtl .cke_toolgroup
11197
{
11298
float: right;
@@ -126,6 +112,24 @@ a.cke_button
126112
border: 0;
127113
}
128114

115+
.cke_ltr .cke_button:last-child,
116+
.cke_rtl .cke_button:first-child
117+
{
118+
/* Don't distort parent's rounded border. */
119+
-moz-border-radius: 0 2px 2px 0;
120+
-webkit-border-radius: 0 2px 2px 0;
121+
border-radius: 0 2px 2px 0;
122+
}
123+
124+
.cke_ltr .cke_button:first-child,
125+
.cke_rtl .cke_button:last-child
126+
{
127+
/* Don't distort parent's rounded border. */
128+
-moz-border-radius: 2px 0 0 2px;
129+
-webkit-border-radius: 2px 0 0 2px;
130+
border-radius: 2px 0 0 2px;
131+
}
132+
129133
.cke_rtl .cke_button
130134
{
131135
float: right;

0 commit comments

Comments
 (0)