Add: Animate - Full Screen Toolbox Hover

This commit is contained in:
alstjr7375 2022-02-20 00:18:39 +09:00
parent b03ee57204
commit b303f0771d

View file

@ -2694,6 +2694,32 @@ menuitem.openintabs-menuitem,
transition-delay: 0s, 0s, 0.25s !important;
}
/*- Full Screen ------------------------------------------------------------*/
#navigator-toolbox {
/* Full screen out */
transition: margin-top 1s ease;
}
#navigator-toolbox[inFullscreen="true"] {
/* Full screen enter */
animation-duration: 1s;
animation-name: fullscreen;
animation-timing-function: ease;
/* Full screen navbar not hover */
transition: margin-top 0.3s var(--animation-easing-function) 50ms;
}
#navigator-toolbox[inFullscreen="true"]:hover {
transition-duration: 1.5s;
transition-delay: 0.1s;
}
@keyframes fullscreen {
from {
margin-top: 0;
}
/* Dont' use `to`: Depending on density */
}
/*- Expand - Synced Tabs ---------------------------------------------------*/
@-moz-document url("chrome://browser/content/syncedtabs/sidebar.xhtml")
{