Comment augmenter la taille des onglets Firefox ?

Originally published at: http://korben.info/augmenter-taille-onglets-firefox.html

Apparemment, la nouvelle version 57 de Firefox provoque un petit désagrément au niveau de la taille des onglets. En effet, lorsqu’on en ouvre un très grand nombre, ils deviennent de plus en plus petits, ce qui rend impossible la lecture de ce qu’il y a d’écrit sur l’onglet. Heureusement, 2 super lecteurs, Godefroy et Alexis…

pas mal mais comment on fait pour les arrondir comme avant quoi ;/ je m’y fais pas trop en fait …

1 « J'aime »

Tu es le premier à poser la question dans mon entourage, veux tu que je creuse le sujet ?

Tient Korben a des onglets du CIC (Gouvernement Canada) ouverts :smiley: ! C’est quoi le projet :smiley: :d :smiley: ?

Tree Style tab pour les passer en latétral sous forme d’arbre et un coup de css dans userChrome.css pour cacher la barre native en attendant un fix d’API

Tout est tracé à la latte…!

Par exemple sous Windows : C:\Users\<Vous>\AppData\Roaming\Mozilla\Firefox\Profiles\<Votre profil>.default\chrome\userChrome.css

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
#TabsToolbar { visibility: collapse; }
#sidebar-header { visibility: collapse; }

1 « J'aime »

Tiens, si quelqu’un aurait l’astuce pour remettre comme avant une seconde ligne d’onglets au lieu de les masquer, je suis preneur…

Oui moi aussi ca m’intèresse :wink: je préfère le look d’avant, je suis pas passer sur cette version de la faute de ca, enfin déja l’astuce de Korben est sympa car je me sentait a l’étroit avec des onglets si petits

Toujours dans le userChrome.css:

#tabbrowser-tabs .tabbrowser-arrowscrollbox,
#tabbrowser-tabs .arrowscrollbox-scrollbox {
display: block;
}

.scrollbutton-up,
.arrowscrollbox-overflow-start-indicator,
.scrollbutton-down,
.arrowscrollbox-overflow-end-indicator {
display: none !important;
}

#tabbrowser-tabs .arrowscrollbox-scrollbox .scrollbox-innerbox {
display: flex;
flex-wrap: wrap;
/*
display: block;
/
overflow-y: auto !important;
min-height: var(–tab-min-height); /
default /
max-height: calc(5
var(–tab-min-height)) !important;
}
#tabbrowser-tabs .tabbrowser-tab:not([pinned]) {
flex-grow: 1;
flex-wrap:wrap;
min-width: 150px;
vertical-align: bottom !important;
}
#tabbrowser-tabs .tabbrowser-tab,
#tabbrowser-tabs .tabbrowser-tab .tab-stack .tab-background {
height: var(–tab-min-height);
}

#tabbrowser-tabs .tabbrowser-tab .tab-stack {
width: 100%;
}

#titlebar-buttonbox {
display: block !important;
vertical-align: top !important;
}

#main-window[tabsintitlebar] #tabbrowser-tabs {
-moz-window-dragging: no-drag;
}

1 « J'aime »

c’est gentil, mais un petit commentaire pour savoir ce que ca fait ? :smiley:

pardon, c’est pour avoir les onglets sur plusieurs lignes :slight_smile:

petite lacune, chez moi en tout cas, je ne peux pas scroller avec la souris dans les onglets

1 « J'aime »