diff --git a/core/modules/quickedit/css/quickedit.icons.theme.css b/core/modules/quickedit/css/quickedit.icons.theme.css index 7845416..4138111 100644 --- a/core/modules/quickedit/css/quickedit.icons.theme.css +++ b/core/modules/quickedit/css/quickedit.icons.theme.css @@ -48,8 +48,12 @@ font-size: 1em; } .quickedit .icon-pencil { - margin-left: .5em; - padding-left: 1.5em; + margin-left: .5em; /*LTR*/ + padding-left: 1.5em; /*LTR*/ +} +[dir="rtl"] .quickedit .icon-pencil { + margin-right: .5em; + padding-right: 1.5em; } /** @@ -69,6 +73,9 @@ } .quickedit .icon-pencil:before { background-image: url(../../../misc/icons/5181c6/pencil.svg); - background-position: left center; + background-position: left center; /*LTR*/ background-size: 1.3em; } +[dir="rtl"] .quickedit .icon-pencil:before { + background-position: right center; +}