Skip to content

Instantly share code, notes, and snippets.

@mgeraci
Last active December 11, 2022 19:09
Show Gist options
  • Select an option

  • Save mgeraci/d7b5be9914b7cc55d3a60792561e8177 to your computer and use it in GitHub Desktop.

Select an option

Save mgeraci/d7b5be9914b7cc55d3a60792561e8177 to your computer and use it in GitHub Desktop.
Firefox Interface Customizations
/* Hide blue stripe on active tab */
.tab-line[selected="true"] {
opacity: 0 !important;
}
/* Completely hide the "title changed" notification dot on pinned tabs */
.tabbrowser-tab > .tab-stack > .tab-content[titlechanged] {
background-image: none !important;
}
/* don't make the url bar bigger when focused; based on https://old.reddit.com/comments/fwhlva//fmolndz */
#urlbar[breakout][breakout-extend]:not([open]) {
top: calc((var(--urlbar-toolbar-height) - var(--urlbar-height)) / 2) !important;
left: 0 !important;
width: 100% !important;
}
#urlbar[breakout][breakout-extend]:not([open]) > #urlbar-input-container {
height: var(--urlbar-height) !important;
padding-block: 0px !important;
padding-inline: 0px !important;
}
#urlbar[breakout][breakout-extend][breakout-extend-animate] > #urlbar-background {
animation-name: none !important;
}
#urlbar[breakout][breakout-extend]:not([open]) > #urlbar-background {
box-shadow: none !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment