Fix the placement of the findInput loading indicator in RTL locales

Currently in RTL locales, the loading indicator is placed such that it is in the way when entring a search term. Hence this patch moves it to the other side of the input field to fix this.
This commit is contained in:
Jonas Jenwald 2014-08-25 22:58:44 +02:00
parent 4834f1c289
commit 5c84dd319f

View File

@ -410,6 +410,9 @@ html[dir='rtl'] .findbar {
background-repeat: no-repeat;
background-position: right;
}
html[dir='rtl'] #findInput[data-status="pending"] {
background-position: left;
}
.secondaryToolbar {
padding: 6px;