2023-01-01 16:44:45 +00:00
|
|
|
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/deprecated/bookmarksbar_on_new_tabs_only.css made available under Mozilla Public License v. 2.0
|
2020-05-22 05:13:58 +00:00
|
|
|
See the above repository for updates as well as full license text. */
|
|
|
|
|
2020-02-02 20:39:57 +00:00
|
|
|
/* This stylesheet is deprecated since Firefox 72 */
|
|
|
|
/* Use autohide_bookmarks_toolbar.css instead */
|
|
|
|
|
2018-11-23 14:57:23 +00:00
|
|
|
:root[title$=" - Mozilla Firefox"] #PersonalToolbar,
|
|
|
|
:root[title$=" - Mozilla Firefox (Private Browsing)"] #PersonalToolbar,
|
|
|
|
:root[title$=" - Firefox Nightly"] #PersonalToolbar,
|
|
|
|
:root[title$=" - Firefox Nightly (Private Browsing)"] #PersonalToolbar{ visibility: collapse; }
|
|
|
|
/* about:home or something can have a "New Tab" prefix */
|
|
|
|
:root[title="New Tab - Mozilla Firefox"] #PersonalToolbar,
|
|
|
|
:root[title="New Tab - Mozilla Firefox (Private Browsing)"] #PersonalToolbar,
|
|
|
|
:root[title="New Tab - Firefox Nightly"] #PersonalToolbar,
|
|
|
|
:root[title="New Tab - Firefox Nightly (Private Browsing)"] #PersonalToolbar{ visibility: visible; }
|
|
|
|
/* Short delay to prevent being shortly visible during tab restore */
|
2018-11-23 16:07:40 +00:00
|
|
|
#PersonalToolbar{ transition: visibility 0ms linear 200ms !important}
|