Join us and the lead editor of IRL, Mozilla's multi-award-winning podcast, for a behind-the-scenes look at the pod and to contribute your ideas for the next season, themed: "AI and ME." Mark your calendar and join our Community Call on Wednesday, Aug 7, 17:00–17:45 UTC. See you there!

ძიება მხარდაჭერაში

ნუ გაებმებით თაღლითების მახეში მხარდაჭერის საიტზე. აქ არასდროს მოგთხოვენ სატელეფონო ნომერზე დარეკვას, შეტყობინების გამოგზავნას ან პირადი მონაცემების გაზიარებას. გთხოვთ, გვაცნობოთ რამე საეჭვოს შემჩნევისას „დარღვევაზე მოხსენების“ მეშვეობით.

ვრცლად

Permanently hide the list-all-tabs button

  • 2 პასუხი
  • 1 მომხმარებელი წააწყდა მსგავს სიძნელეს
  • 4 ნახვა
  • ბოლოს გამოეხმაურა gene.pavlovsky

I'd like to permanently hide the list all tabs button (which appears at the far right of the tab bar, when there are many tabs opened). I've found an [extension](https://addons.mozilla.org/firefox/addon/permanent-listalltabs/) to permanently show the button, I want the opposite. I've found several apparently outdated articles suggesting adding some CSS to my userChrome.css, however everything that I've tried so far didn't remove the button. Can anybody suggest what to add to my userChrome.css to hide the list all tabs button (FF 45)? And btw, do I have to restart Firefox every time I edit userChrome.css, or there's a way to automatically/manually reload it?

I'd like to permanently hide the list all tabs button (which appears at the far right of the tab bar, when there are many tabs opened). I've found an [extension](https://addons.mozilla.org/firefox/addon/permanent-listalltabs/) to permanently show the button, I want the opposite. I've found several apparently outdated articles suggesting adding some CSS to my userChrome.css, however everything that I've tried so far didn't remove the button. Can anybody suggest what to add to my userChrome.css to hide the list all tabs button (FF 45)? And btw, do I have to restart Firefox every time I edit userChrome.css, or there's a way to automatically/manually reload it?

ჩასწორების თარიღი: , ავტორი: gene.pavlovsky

გადაწყვეტა შერჩეულია

Add code to the userChrome.css file below the default @namespace line.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#tabbrowser-tabs ~ #alltabs-button {display:none!important;}


The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

პასუხის ნახვა სრულად 👍 0

ყველა პასუხი (2)

შერჩეული გადაწყვეტა

Add code to the userChrome.css file below the default @namespace line.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#tabbrowser-tabs ~ #alltabs-button {display:none!important;}


The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

It looks very similar to the code I tried from another website (which didn't work), but it has to be slightly different, because this one actually works. Thanks!