Skip to content

Commit

Permalink
Merge branch 't/11542'
Browse files Browse the repository at this point in the history
  • Loading branch information
oleq committed Feb 14, 2014
2 parents a66510b + bb01c44 commit 4a3ae1a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 14 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -18,6 +18,7 @@ Fixed Issues:
* [#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.
* [#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.
* [#11390](http://dev.ckeditor.com/ticket/11390): All [XML](http://docs.ckeditor.com/#!/api/CKEDITOR.xml) plugin's methods work now on IE10+.
* [#11542](http://dev.ckeditor.com/ticket/11542): [IE11] Fixed: Blurry toolbar icons when right-to-left UI language is set.

## CKEditor 4.3.2

Expand Down
32 changes: 18 additions & 14 deletions skins/moono/toolbar.css
Expand Up @@ -93,20 +93,6 @@ Special outer level classes used in this file:
margin-bottom: 10px;
}

.cke_rtl .cke_toolgroup *:first-child
{
-moz-border-radius: 0 2px 2px 0;
-webkit-border-radius: 0 2px 2px 0;
border-radius: 0 2px 2px 0;
}

.cke_rtl .cke_toolgroup *:last-child
{
-moz-border-radius: 2px 0 0 2px;
-webkit-border-radius: 2px 0 0 2px;
border-radius: 2px 0 0 2px;
}

.cke_rtl .cke_toolgroup
{
float: right;
Expand All @@ -126,6 +112,24 @@ a.cke_button
border: 0;
}

.cke_ltr .cke_button:last-child,
.cke_rtl .cke_button:first-child
{
/* Don't distort parent's rounded border. */
-moz-border-radius: 0 2px 2px 0;
-webkit-border-radius: 0 2px 2px 0;
border-radius: 0 2px 2px 0;
}

.cke_ltr .cke_button:first-child,
.cke_rtl .cke_button:last-child
{
/* Don't distort parent's rounded border. */
-moz-border-radius: 2px 0 0 2px;
-webkit-border-radius: 2px 0 0 2px;
border-radius: 2px 0 0 2px;
}

.cke_rtl .cke_button
{
float: right;
Expand Down

0 comments on commit 4a3ae1a

Please sign in to comment.