diff options
author | gorhill <rhill@raymondhill.net> | 2015-08-11 19:05:37 -0400 |
---|---|---|
committer | gorhill <rhill@raymondhill.net> | 2015-08-11 19:05:37 -0400 |
commit | 9f6a3012a5e3b2a4104653a0e23f07c849457c54 (patch) | |
tree | 2f7f44039b84c845e5ccab706497aa63a370a541 /src | |
parent | 42881464cb86be09269788dde9e35e5ef156ee1b (diff) | |
download | uBlock-9f6a3012a5e3b2a4104653a0e23f07c849457c54.zip uBlock-9f6a3012a5e3b2a4104653a0e23f07c849457c54.tar.gz uBlock-9f6a3012a5e3b2a4104653a0e23f07c849457c54.tar.bz2 |
this fixes cloud widget for rtl languages
Diffstat (limited to 'src')
-rw-r--r-- | src/css/cloud-ui.css | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/css/cloud-ui.css b/src/css/cloud-ui.css index b6f941f..b96ad88 100644 --- a/src/css/cloud-ui.css +++ b/src/css/cloud-ui.css @@ -15,8 +15,8 @@ #cloudPull[disabled] { visibility: hidden; } -body[dir="ltr"] #cloudPush:after , -body[dir="ltr"] #cloudPull:before { +#cloudPush:after , +#cloudPull:before { font-family: FontAwesome; font-style: normal; font-weight: normal; @@ -55,9 +55,14 @@ body[dir="rtl"] #cloudPull:before { opacity: 0.5; padding: 4px; position: absolute; - right: 0; top: 0; } +body[dir="ltr"] #cloudWidget > #cloudCog { + right: 0; + } +body[dir="rtl"] #cloudWidget > #cloudCog { + left: 0; + } #cloudWidget > #cloudCog:hover { opacity: 1; } |