编辑userChrome.css以隐藏标签工具栏和导航栏

ars1skjm  于 2023-03-09  发布在  其他
关注(0)|答案(3)|浏览(146)

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

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

我尝试从命令行“firefox -P my_profilewww.google.com“开始:
预期:谷歌页面
结果:空白页,我有谷歌网页后,一次点击。
附言:我用的是windows系统。
我的问题在哪里?
谢谢

xzabzqsa

xzabzqsa1#

尝试将display: none更改为visibility: collapse
显然,一些功能依赖于现有的导航栏,因此“隐藏”而不是“删除”似乎做的伎俩,至少它对我来说。

1qczuiv0

1qczuiv02#

我在firefox86上也遇到过类似的问题,不知怎么的,所有的页面都是空白的,我不得不把我的userChrome.csssuperuser.com编辑成这样的东西。还要确保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;}
gzszwxb4

gzszwxb43#

对于使用Firefox 110.0.1的我

#titlebar {
    visibility: collapse;
}

成功了

相关问题