When using an RTL language, the loading indicator that pops up when you press the delete cookies button is not positioned correctly.
This can be solved by adding a rule to the bidi.css file to match the one in the common.css file.
File:
bidi.css
|
Find:
/* Miscellaneous styles
|
---------------------------------------- */
|
Add Before:
/* jQuery popups
|
---------------------------------------- */
|
.rtl .loading_indicator {
|
margin-left: 0; |
margin-right: -50px;
|
left: auto;
|
right: 50%; |
}
|