1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

this fixes cloud widget for rtl languages

This commit is contained in:
gorhill 2015-08-11 19:05:37 -04:00
parent 42881464cb
commit 9f6a3012a5

View File

@ -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;
}