25
loading...
This website collects cookies to deliver better user experience
userChrome.css
file to add custom styles to the browser. While this voids your warranty it is very easy to revert (just delete the file) so it doesn’t hurt to try it out.about:config
and set toolkit.legacyUserProfileCustomizations.stylesheets
to true
. Then create a file called chrome/userChrome.css
in your profile folder. You can find you profile folder by going to about:profiles
. If you need more detailed instructions userchrome.org has an in-depth guide.userChrome.css
file and restart your browser..tab-background {
--tab-border-radius: 0;
--proton-tab-block-margin: 0;
}
userChrome.css
file.#tabbrowser-tabs[haspinnedtabs]:not([positionpinnedtabs]) > #tabbrowser-arrowscrollbox > .tabbrowser-tab[first-visible-unpinned-tab] {
margin-inline-start: 0 !important;
}
Ctrl+Shift+Alt+I
(at least on Linux). Then you can use the “Inspector” tab to identify elements that you want to change and edit the CSS. Once you find something that you like you can add it to your userChrome.css
to make it persistent.25