如何调整firefox的address bar的边框粗细??

上网、浏览、聊天、下载等
回复
ubunbates
帖子: 120
注册时间: 2014-04-30 15:44
系统: linux

如何调整firefox的address bar的边框粗细??

#1

帖子 ubunbates » 2014-06-15 13:30

如图,
1.png
address bar的上下两个frame框太占地方, 如何可以调节的细些或干脆取消?
头像
luojie-dune
帖子: 22033
注册时间: 2007-07-30 18:28
系统: Linux
来自: 空气中

Re: 如何调整firefox的address bar的边框粗细??

#2

帖子 luojie-dune » 2014-06-15 13:36

不知道。我已经把标签放下面了。
『这个世界都是我的 ,我爱你们』

ENTP ⥂ INTP ⥄ INFP ⇦ INTJ

在此发布的文章使用 Creative Commons Attribution-ShareAlike 4.0 协议
头像
astolia
论坛版主
帖子: 6703
注册时间: 2008-09-18 13:11

Re: 如何调整firefox的address bar的边框粗细??

#3

帖子 astolia » 2014-06-16 15:31

ubunbates
帖子: 120
注册时间: 2014-04-30 15:44
系统: linux

Re: 如何调整firefox的address bar的边框粗细??

#4

帖子 ubunbates » 2014-06-21 16:17

没找到合适的. 仅仅把tab的高度改了, urlbar还没找到对应的"名词"

代码: 全选

@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的边框粗细??

#5

帖子 astolia » 2014-06-21 23:21

用firefox打开chrome://browser/content/browser.xul地址,然后用自带的web开发工具查看就是了
直接的是urlbar-container,外层的是nav-bar
捕获.PNG
ubunbates
帖子: 120
注册时间: 2014-04-30 15:44
系统: linux

Re: 如何调整firefox的address bar的边框粗细??

#6

帖子 ubunbates » 2014-06-22 0:19

astolia 写了:用firefox打开chrome://browser/content/browser.xul地址,然后用自带的web开发工具查看就是了
直接的是urlbar-container,外层的是nav-bar
捕获.PNG
谢谢

代码: 全选

#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;
}
tab变得不好看了
回复