Bug 997825 - fix the broken unicorn, r=jaws

--HG--
extra : rebase_source : d4b14ce594c0e687c9c3887629fbce4e4c816013
This commit is contained in:
Gijs Kruitbosch 2014-04-17 20:11:52 +01:00
parent 212cd5eb7d
commit a42a2b01d0

View File

@ -35,6 +35,11 @@
moveY 3.4s linear 0s infinite alternate;
}
#PanelUI-popup #PanelUI-contents:-moz-locale-dir(rtl):empty::before {
animation: moveXRTL 3.05s linear 0s infinite alternate,
moveY 3.4s linear 0s infinite alternate;
}
#PanelUI-popup #PanelUI-contents:empty:hover::before {
background-image: url(chrome://browser/skin/customizableui/whimsy.png);
}
@ -53,6 +58,12 @@
/* These values are adjusted for the padding on the panel. */
from { margin-left: -15px; } to { margin-left: calc(100% - 49px); }
}
@keyframes moveXRTL {
/* These values are adjusted for the padding on the panel. */
from { margin-right: -15px; } to { margin-right: calc(100% - 49px); }
}
@keyframes moveY {
/* These values are adjusted for the padding and height of the panel. */
from { margin-top: -.5em; } to { margin-top: calc(64px - .5em); }