firefox-csshacks icon indicating copy to clipboard operation
firefox-csshacks copied to clipboard

tabs_on_bottom_menubar_on_top_patch.css not working (linux, firefox 115)

Open doomvox opened this issue 2 years ago • 3 comments

I've tried using the tabs_on_bottom_menubar_on_top_patch.css and it leaves my tab bar up above the URL bar, instead of placing it below the bookmarks bar as desired.

I'm using Firefox 115.3.1esr (64-bit) on Debian linux, version 11 (bullseye).

I use the code in my chrome/userChrome.css like so: @import url("../../../lib/tabs_on_bottom_menubar_on_top_patch.css");

(I've been using this approach for over a year now, the relative path is correct.)

doomvox avatar Oct 02 '23 20:10 doomvox

That is simply a patch file. You'll need to first import tabs_on_bottom.css which does the heavy lifting, then import this patch after that.

MrOtherGuy avatar Oct 03 '23 02:10 MrOtherGuy

Thanks, I'll try that. Hm... still doesn't seem to be working, though now I'm doing this:

@import url("../../../lib/tabs_on_bottom.css"); @import url("../../../lib/tabs_on_bottom_menubar_on_top_patch.css");

I'm using manually installed files, but I did refresh them recently.

doomvox avatar Oct 03 '23 06:10 doomvox

Yes, that looks correct - at least if the file path leads to correct location.

Note that all import statements need to be before anything else in the userChrome.css file.

Another thing you can try is to put the file content(s) directly into userChrome.css to make sure that works.

MrOtherGuy avatar Oct 03 '23 07:10 MrOtherGuy