This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* tab bar auto hide */ | |
| @-moz-document url(chrome://browser/content/browser.xul), | |
| url(chrome://browser/content/browser.xhtml) { | |
| /* show tabs toolbar when navigator-toolbox gets hovered */ | |
| #main-window:not([customizing]) #navigator-toolbox:hover #TabsToolbar { | |
| visibility: visible !important; | |
| opacity: 1 !important; | |
| margin-bottom: 0px; | |
| transition: visibility 0.1s linear, opacity 0.1s linear, margin-bottom 0.1s linear; |