From 5c84dd319feff9cb10ee9e805de69d3e5922fd7f Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Mon, 25 Aug 2014 22:58:44 +0200 Subject: [PATCH] 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. --- web/viewer.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/viewer.css b/web/viewer.css index 3d05518e4..1d86cc906 100644 --- a/web/viewer.css +++ b/web/viewer.css @@ -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;