Caută ajutor

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Acest fir de discuție a fost arhivat. Adresează o întrebare nouă dacă ai nevoie de ajutor.

Pin Tabs - all tabs to the right

  • 1 răspuns
  • 1 are această problemă
  • 3 vizualizări
  • Ultimul răspuns de cor-el

more options

Hi:

I really like the feature (bookmark all tabs -- to the right), and the feature (close all tabs - to the right)

I would like to PIN all tabs - to the right.

is there any way this can be done?

thankyou

Hi: I really like the feature (bookmark all tabs -- to the right), and the feature (close all tabs - to the right) I would like to PIN all tabs - to the right. is there any way this can be done? thankyou

Toate răspunsurile (1)

more options

Maybe try this code in the userChrome.css file.
You need to have enough tabs open the move the pinned tabs to the far right.

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

#tabbrowser-tabs tab[pinned] { -moz-box-ordinal-group: 2; }

Another possibility is to reverse the direction of all tabs on the tab bar.

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

#tabbrowser-tabs { direction: rtl; }
#tabbrowser-tabs tab { -moz-box-ordinal-group: 2; }

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

Make sure to create the userChrome.css file as a plain text file.

Modificat în de cor-el