Talk:Browser.tabs.closeButtonsFrom MozillaZine Knowledge Base[edit] Possible values and their effectsDescription Problem - Although written here exactly as Mozilla describes, the description - 1 Display close buttons on all tabs (Default) is not accurate. In Firefox, depending on tabbar length, only a total of around 8 tabs have close buttons if this entry is used, add one or two more tabs and none do and after that, the tabbar goes into 'tab overflow' mode with tab arrows, where again no tabs have close buttons. As this article is directly concerning about:config entries only, then I think that pointing out this mis-description directly in the article is outside the remit of it. However, the solution (which could be pasted elsewhere?) is to add - .tab-close-button { display: -moz-box !important;} to userChrome.css, which does then give a true 'close tabs shown on all tabs' type situation. :) --Frank Lion 00:25, 23 July 2009 (UTC)
347 // Where to show tab close buttons:
348 // 0 on active tab only
349 // 1 on all tabs until tabClipWidth is reached, then active tab only
350 // 2 no close buttons at all
351 // 3 at the end of the tabstrip
352 pref("browser.tabs.closeButtons", 1);
|
|