зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
029f702dfd
Коммит
9dbdfc77f8
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче