mobile-config-firefox/chrome/urlbar_visible_on_active_tab_click.css
2020-05-22 08:13:58 +03:00

24 lines
No EOL
794 B
CSS

/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/urlbar_visible_on_active_tab_click.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */
/* NOTE This only works if tabs are on top */
.urlbar-input-box::before{
content:"";
display: block;
position: fixed;
top:0;
left:0;
width:100vw;
height:32px;
}
.tabbrowser-tab,
#TabsToolbar toolbarbutton{
position: relative;
z-index: 2
}
#navigator-toolbox:not(:focus-within) .tabbrowser-tab[visuallyselected]{ z-index: 0 !important; }
:root:not([customizing]) #urlbar{ opacity: 0; transition: opacity 200ms ease-in-out }
:root:not([customizing]) #urlbar:focus-within{ opacity: 1 }
#toolbar-menubar{ position: relative; z-index:3 }