From 9dbdfc77f834f4b3f8dfda17e37105bb17668638 Mon Sep 17 00:00:00 2001 From: Paolo Amadini Date: Mon, 21 Aug 2017 14:50:52 +0100 Subject: [PATCH] Bug 1388432 - Fix progress bar limits and RTL behavior in the Downloads Indicator. r=jaws MozReview-Commit-ID: EQvwk58dcGl --HG-- extra : rebase_source : f3f7f83fa3d4514c461a983af810347974f8799b --- browser/themes/shared/downloads/indicator.inc.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/browser/themes/shared/downloads/indicator.inc.css b/browser/themes/shared/downloads/indicator.inc.css index 2836e269e570..4ad3c5e33a70 100644 --- a/browser/themes/shared/downloads/indicator.inc.css +++ b/browser/themes/shared/downloads/indicator.inc.css @@ -59,6 +59,7 @@ } #downloads-indicator-progress-inner:-moz-locale-dir(rtl) { + background-position: right; animation-name: indicatorArrowProgressRTL; margin-left: 16px; margin-right: 0; @@ -66,19 +67,19 @@ @keyframes indicatorArrowProgress { 0% { - margin-right: 14px; + margin-right: 15px; } 100% { - margin-right: 2px; + margin-right: 1px; } } @keyframes indicatorArrowProgressRTL { 0% { - margin-left: 14px; + margin-left: 15px; } 100% { - margin-left: 2px; + margin-left: 1px; } }