mobile-config-firefox/chrome/autohide_tabstoolbar.css

17 lines
829 B
CSS
Raw Normal View History

2020-05-22 07:13:58 +02:00
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/autohide_tabstoolbar.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */
2019-10-29 13:15:36 +01:00
/* Hide tabs unless cursor is on top of toolbar */
@keyframes slidein{
from{ margin-top: calc(0px - var(--tab-min-height)) }
to{ margin-top: 0 }
2019-10-29 13:15:36 +01:00
}
@keyframes slideout{
from{ margin-top: var(--tab-min-height) }
to{ margin-top: 0 }
}
#navigator-toolbox:not(:hover) > #titlebar{ -moz-appearance: none !important }
#navigator-toolbox:not(:hover) #TabsToolbar:not([customizing]) { visibility: collapse }
#navigator-toolbox:hover > #nav-bar:not([customizing]){ animation: slidein ease-out 48ms 1 }
#navigator-toolbox:not(:hover) > #nav-bar:not([customizing]){ animation: slideout ease-out 48ms 1 }