如何调整firefox的address bar的边框粗细??
-
- 帖子: 120
- 注册时间: 2014-04-30 15:44
- 系统: linux
如何调整firefox的address bar的边框粗细??
如图,
address bar的上下两个frame框太占地方, 如何可以调节的细些或干脆取消?- luojie-dune
- 帖子: 22033
- 注册时间: 2007-07-30 18:28
- 系统: Linux
- 来自: 空气中
Re: 如何调整firefox的address bar的边框粗细??
不知道。我已经把标签放下面了。
- astolia
- 论坛版主
- 帖子: 6703
- 注册时间: 2008-09-18 13:11
-
- 帖子: 120
- 注册时间: 2014-04-30 15:44
- 系统: linux
Re: 如何调整firefox的address bar的边框粗细??
没找到合适的. 仅仅把tab的高度改了, urlbar还没找到对应的"名词"astolia 写了:http://www.firefox.net.cn/read-49328
代码: 全选
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
@-moz-document url(chrome://browser/content/browser.xul) {
.tab-background-start[selected=true]::after,
.tab-background-start[selected=true]::before,
.tab-background-start,
.tab-background-end,
.tab-background-end[selected=true]::after,
.tab-background-end[selected=true]::before,
.tabbrowser-tabs{
min-height: 20px!important
}
#urlbar{
min-height: 30px !important;
max-height: 0px !important;
}
}
- astolia
- 论坛版主
- 帖子: 6703
- 注册时间: 2008-09-18 13:11
Re: 如何调整firefox的address bar的边框粗细??
用firefox打开chrome://browser/content/browser.xul地址,然后用自带的web开发工具查看就是了
直接的是urlbar-container,外层的是nav-bar
直接的是urlbar-container,外层的是nav-bar
-
- 帖子: 120
- 注册时间: 2014-04-30 15:44
- 系统: linux
Re: 如何调整firefox的address bar的边框粗细??
谢谢astolia 写了:用firefox打开chrome://browser/content/browser.xul地址,然后用自带的web开发工具查看就是了
直接的是urlbar-container,外层的是nav-bar
代码: 全选
#TabsToolbar{
margin:-3px;
}
#urlbar-container{
min-height:30px !important;
max-height: 30px !important;
}
#nav-bar{
margin-top: -3px;
margin-bottom: -6px;
padding-top: 2px;
padding-bottom: 2px;
z-index: 1;
}