為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

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

了解更多

Theirs a gap under the toolbar showing the desktop on Aero or explorer color on non Aero themes.

more options

I am able to see a thin strip of what I would assume is the explorer title bar under the URL toolbar, this happened after the update that changed the UI. Settings are compact and the issue doesn't present itself when in the customize menu. Photos are from Aero and non Aero windows 7 themes.

I am able to see a thin strip of what I would assume is the explorer title bar under the URL toolbar, this happened after the update that changed the UI. Settings are compact and the issue doesn't present itself when in the customize menu. Photos are from Aero and non Aero windows 7 themes.
附加的畫面擷圖

由 Maldor 於 修改

被選擇的解決方法

There is a thin stripe. It's unusually noticeable on yours due to the dark theme. It seems to come from this built-in style rule:

#navigator-toolbox::after {
  content: "";
  display: -moz-box;
  border-bottom: 1px solid var(--toolbox-border-bottom-color);
}

A custom style rule to override that could be:

/* Dark Gray stripe between toolbars and content */
#navigator-toolbox::after {
  border-bottom: 1px solid #444 !important;
}

or

/* Hide stripe between toolbars and content */
#navigator-toolbox::after {
  display: none !important;
}

You can apply custom style rules to Firefox's toolbar area by creating a userChrome.css file. It's about a 10 minute project, and I suggest taking your time so it works on the first go. More info:

https://www.userchrome.org/how-create-userchrome-css.html

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

所有回覆 (6)

more options

that bit of the desktop you are seeing the part of the Aero interface of Windows 7 I believe (see attached image from Wikipedia) https://en.wikipedia.org/wiki/Windows_Aero

I don't use windows 7 but I think the only option if you really dislike it is to disable Aero.

more options

GnuFox said

that bit of the desktop you are seeing the part of the Aero interface.

Even with Aero off the effect is still there. I'm talking about to strip of orange you can see under my bookmarks.

more options

Hi, I see orange across part of the top also where there is no tabs. I would think it is part of the theme you are using. What are you using to get the orange ?

more options

Pkshadow said

Hi, I see orange across part of the top also where there is no tabs. I would think it is part of the theme you are using. What are you using to get the orange ?

That's just the windows explorer color. Here's a screenshot of a non Aero theme basic windows 7 theme with the Firefox customization set to compact dark with no toolbar items. There's still a blue strip below the URL bar showing the explorer color instead of the dark theme or web page.

more options

Bump: Anyone have any insight?

more options

選擇的解決方法

There is a thin stripe. It's unusually noticeable on yours due to the dark theme. It seems to come from this built-in style rule:

#navigator-toolbox::after {
  content: "";
  display: -moz-box;
  border-bottom: 1px solid var(--toolbox-border-bottom-color);
}

A custom style rule to override that could be:

/* Dark Gray stripe between toolbars and content */
#navigator-toolbox::after {
  border-bottom: 1px solid #444 !important;
}

or

/* Hide stripe between toolbars and content */
#navigator-toolbox::after {
  display: none !important;
}

You can apply custom style rules to Firefox's toolbar area by creating a userChrome.css file. It's about a 10 minute project, and I suggest taking your time so it works on the first go. More info:

https://www.userchrome.org/how-create-userchrome-css.html