Skip to content

Instantly share code, notes, and snippets.

View Shywim's full-sized avatar

Matthieu Harlé Shywim

View GitHub Profile
@Shywim
Shywim / hide_native_tabs.css
Last active August 1, 2019 06:59 — forked from stevelandeyasana/hide_native_tabs.css
CSS to hide Firefox's tab bar but keep macOS window buttons (close/minimize/maximize)
/* add to your userChrome.css */
#TabsToolbar {
visibility: collapse;
overflow: visible;
}
#TabsToolbar > * {
visibility: collapse;
}