编辑userChrome.css以隐藏选项卡工具栏和导航栏

时间:2019-06-25 09:49:07

标签: css firefox mozilla

我想自定义我的mozilla界面,使其在没有tabstoolbar和导航栏的情况下全屏显示。我使用如下的./chrome/userChrome.css。

#main-window {
   max-width:1920px !important;
   max-height:1200px !important;
}
#TabsToolbar{ 
   display: none
}
#nav-bar { 
   display: none 
}

我尝试从命令行“ firefox -P my_profile www.google.com”开始:

预期:Google页面

结果:空白页,一键点击后我进入了Google页面。

PS:我在Windows系统上。

我的问题在哪里?

谢谢

2 个答案:

答案 0 :(得分:0)

我在使用firefox 86时遇到了类似的问题,无论如何,所有页面都是空白的,我不得不从superuser.com编辑userChrome.css到类似的内容。另外,请确保userChrome.cssenabled,但是由于您得到的是白页,因此很可能会使用它。

/*
 * Do not remove the @namespace line -- it's required for correct functioning
 */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */

/*
 * Hide tab bar, navigation bar and scrollbars
 * !important may be added to force override, but not necessary
 * #content is not necessary to hide scroll bars
 */
#TabsToolbar {visibility: collapse;}
#navigator-toolbox {visibility: collapse;}
browser {margin-right: -14px; margin-bottom: -14px;}

答案 1 :(得分:0)

尝试更改 display: nonevisibility: collapse

显然,某些功能依赖于现有的导航栏,因此似乎“隐藏”而不是“删除”可以解决问题,至少对我有用。