搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

此討論串已經關閉並封存。 如果您有需要幫助,請新增一個新問題

Hide the tab bar

  • 6 回覆
  • 41 有這個問題
  • 35 次檢視
  • 最近回覆由 Not R

more options

Mozilla is awesome, but FF23 has me greatly annoyed! They deleted some of the most useful Firefox features around (Looking at you Browse By Name)

Hiding the tab bar is no longer controllable, I love my screen space, but please make the tab bar vanish if I don't need it. Do I need an add-on for this now? (ugh!)

And now I can't even send feedback on Input- https://input.mozilla.org because it doesn't give me an option to register a persona account!!!

I need to give Mozilla a Tennessee talking to about this snafu. What's the email address for them?

Mozilla is awesome, but FF23 has me greatly annoyed! They deleted some of the most useful Firefox features around (Looking at you Browse By Name) Hiding the tab bar is no longer controllable, I love my screen space, but please make the tab bar vanish if I don't need it. Do I need an add-on for this now? (ugh!) And now I can't even send feedback on Input- https://input.mozilla.org because it doesn't give me an option to register a persona account!!! I need to give Mozilla a Tennessee talking to about this snafu. What's the email address for them?

被選擇的解決方法

hello, apparently this option has been removed intentionally in preparation for a redesign of the browser which will land in firefox later this year. you can use the following extension to work around the issue though: https://addons.mozilla.org/firefox/addon/hide-tab-bar-with-one-tab/

if you want to give feedback to mozilla you can do so directly without the need of registering at https://input.mozilla.org/feedback

從原來的回覆中察看解決方案 👍 4

所有回覆 (6)

more options

選擇的解決方法

hello, apparently this option has been removed intentionally in preparation for a redesign of the browser which will land in firefox later this year. you can use the following extension to work around the issue though: https://addons.mozilla.org/firefox/addon/hide-tab-bar-with-one-tab/

if you want to give feedback to mozilla you can do so directly without the need of registering at https://input.mozilla.org/feedback

more options

Ah, how drastic is this redesign?

The feedback is sent! Thanks!

more options

here's a preview on what's coming & it certainly won't be to everyone's taste (personally i think the new ui will become too chrome-like): http://people.mozilla.com/~shorlander/files/australis-design-specs/australis-design-specs-windows7-aero.html

edit: and the look for mac osx http://people.mozilla.com/~shorlander/files/australis-design-specs/australis-design-specs-osx.html

由 philipp 於 修改

more options

That's not bad, as long as I can keep my browse by name function, Firefox can change the UI like that, but I'd like to have the tabs on bottom instead.

more options

Not bad? Where are the icons for the extensions? Where is the bookmarks toolbar? Where is the titlebar? No add-ons bar any more. It looks horrible!

more options

Since I already had a userChrome.css for other purposes, I figured this would be straightforward to change there rather than in an extra add-on. I can't seem to find a selector that will select the new tab button when there's only one tab, though.

(posted earlier at //bugzilla.mozilla.org/show_bug.cgi?id=877479#c26 )

This selects the first tab:

 #tabbrowser-tabs tab[first-tab='true']

This selects the new tab button:

 #tabbrowser-tabs .tabs-newtab-button

DOM Inspector lists the new tab button as the next element after the tabs, so I figured this should select it when there was only one tab:

 #tabbrowser-tabs tab[first-tab='true'] + .tabs-newtab-button

It doesn't, though. I tried selecting it after any tab:

 #tabbrowser-tabs tab + .tabs-newtab-button

and that doesn't work either. Is there an invisible sibling in between that DOM Inspector isn't telling me about?

Actually, though, neither of these selects anything:

 tab ~ .tabs-newtab-button
 .tabs-newtab-button ~ tab

Are they not actually siblings? DOM Inspector shows them as children of the same box. Sibling combinators do work as expected on the tabs:

 tab ~ tab  /* selects the second and subsequent tabs */
 tab[first-tab='true'] + tab  /* selects just the second tab */