mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-01-08 02:03:20 -08:00
Add: Animate - Full Screen Toolbox Hover
This commit is contained in:
parent
b03ee57204
commit
b303f0771d
1 changed files with 26 additions and 0 deletions
|
|
@ -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")
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue