Firefox 65 just landed in my cosmic, and the tabs obnoxiously moved over the navigation bar.
(I could rant at length about this misfeature, in several ways, but I won't.)
I was using a simple userChrome.css hack, but it's much more involved now. The way to do this now, from the mozilla support wiki, is to use the Aris-t2/CustomCSSforFx prroject on Github. It took a while to work out what to do, so here's the steps I used.
(I could rant at length about this misfeature, in several ways, but I won't.)
I was using a simple userChrome.css hack, but it's much more involved now. The way to do this now, from the mozilla support wiki, is to use the Aris-t2/CustomCSSforFx prroject on Github. It took a while to work out what to do, so here's the steps I used.
Code:
# Find your firefox profile name; it's some random string ls ~.mozilla/firefox 'Crash Reports' mkx9q8lj.default 'Pending Pings' profiles.ini # here the profile is "mkx9q8lj", yours will be different target=~/.mozilla/firefox/mkx9q8lj.default # cd to somewhere you like to store the project cd ... git clone https://github.com/Aris-t2/CustomCSSforFx.git cd CustomCSSforFx/classic mkdir -p $target/chrome # if you already have a userChrome.css, making a backup copy may be a good idea # say [ -e $target/chrome/userChrome.css ] && mv $target/chrome/userChrome.css $target/chrome/userChrome.bak cp -r config css image user*.css $target/chrome # edit $target/chrome/userChrome.css to uncomment the line # /* @import "./css/tabs/tabs_below_navigation_toolbar_fx65.css"; # by removing the "/* ". # I found the bookmark toolbar buttons horrible, so I also commented out this: # @import "./css/buttons/buttons_on_navbar_classic_appearance.css";
Comment