Bug 1388432 - Fix progress bar limits and RTL behavior in the Downloads Indicator. r=jaws

MozReview-Commit-ID: EQvwk58dcGl

--HG--
extra : rebase_source : f3f7f83fa3d4514c461a983af810347974f8799b
This commit is contained in:
Paolo Amadini 2017-08-21 14:50:52 +01:00
Родитель 029f702dfd
Коммит 9dbdfc77f8
1 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

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