Skip to content

Instantly share code, notes, and snippets.

@bermudalocket
Created June 16, 2019 02:01
Show Gist options
  • Save bermudalocket/bb309a1273176760d3993aaf417f2621 to your computer and use it in GitHub Desktop.
Save bermudalocket/bb309a1273176760d3993aaf417f2621 to your computer and use it in GitHub Desktop.
Safari colors and tweaks for Firefox 67.0.2
/********************************************
It's fucking Safari in Firefox!!!
author: github.com/bermudalocket
*********************************************/
/* No fucking shadows. */
* {
text-shadow: none !important;
}
/* No fucking blue line on top of active tabs. */
.tab-line {
display: none !important;
}
/* No fucking squished tabs. Let them air it all out. */
.tabbrowser-tab[fadein]:not([pinned]) {
max-width: 9999px !important;
overflow: hidden;
}
/* No fucking shitty tab colors. Make them light gray instead. */
.tabbrowser-tab:not([selected]) {
background-color: #BCBCBC !important;
}
/* No fucking shitty hover colors. Make the tabs dark gray instead. */
.tabbrowser-tab:not([selected]):hover {
background-color: #A8A8A8 !important;
}
/* No fucking left-aligned bookmarks. They should be centered like proper bookmarks. We're not neanderthals. */
#PlacesToolbarItems {
-moz-box-pack: center
}
/* No fucking way do we let the tabs spread out but not let the bookmarks spread out a bit too. */
.bookmark-item {
padding-left: 6px !important;
padding-right: 6px !important;
}
/* No fucking stupid ass mystery line making everything all ugly and shit. Fuck that line. */
#navigator-toolbox {
margin-bottom: 0px !important;
}
/* No fucking hamburger menu icon. Literally get away from me. */
#PanelUI-button {
display: none !important;
}
/* No fucking verical-squishing the bookmarks either, pal. */
#PlacesToolbar {
min-height: 25px !important;
margin-top: -1px !important
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment