为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

tabs on bottom

more options

I used the chrome solution for tabs on bottom. This did move the tabs to the bottom, but they no longer show the tab text title, only the icon and a blank space. Firefox 65 and Windows 10

I used the chrome solution for tabs on bottom. This did move the tabs to the bottom, but they no longer show the tab text title, only the icon and a blank space. Firefox 65 and Windows 10

所有回复 (4)

more options
more options

Forgive me, but I accidentily posted this in that list too. But that is not my problem. My tabs are on the bottom, just blank

more options

I did not realise that you had started a separate thread for this issue.

Please see my response in the other thread.

The behaviour appears depending upon the custom userChrome.css that you copied. The cause is the setting of the background colour for the box in which the tabs sit being the same as the foreground colour of the inactive tab text.

You can override the text colour of the inactive tabs by adding "color: grey !important;" (or whatever colour you prefer) to the #TabsToolbar section of your custom userChrome.css:

#TabsToolbar {

height: var(--tab-min-height) !important;
margin-bottom: 1px !important;
box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important;
background-color: var(--toolbar-bgcolor) !important;
color: grey !important; }

This should work for you; it is the version of userChrome.css that you have.

You can also use this code for that section:

#TabsToolbar {

position: absolute !important; bottom: 0 !important; width: 100vw !important;

}

You may end up with a background colour in the tabs box that you do not like, with the second snippet. However, on machines that have the entire userChrome.css from which that snippet originates, everything follows my preferred system preferences, nicely.

If those code changes do not work for you, I suggest that you try different userChrome.css files (there are at least three linked from the linked thread) until you find one that you like.

Good luck!

more options