|
阅读:2244回复:6
[已解决]怎么样让标签栏置于最上面
怎么样让标签栏置于菜单栏上面,类似于chrome
|
|
|
1楼#
发布于:2010-08-19 16:13
原来是V4功能
被UA骗了 |
|
|
2楼#
发布于:2010-08-19 16:13
4.0的测试版才有;
3系列的可以用css放到移到上面去。 /* Don't Remove */
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
By Sabeur Thabit, Nekrif.com
/* Toolbars with Text only ... Lamers with no Favicon*/
#bookmarksBarContent .toolbarbutton-text
{
margin: 0px 1px 0px 1px !important;
}
#bookmarksBarContent toolbarbutton[container="true"] .toolbarbutton-icon
{
}
#bookmarksBarContent toolbarbutton[container="true"] .toolbarbutton-menu-dropmarker
{
display: -moz-box !important;
padding-right: 1px !important;
padding-left: 1px !important;
}
/*The Main Juice, Toolbar on Top:*/
@-moz-document url("chrome://browser/content/browser.xul")
{
.tabbrowser-strip
{
position:fixed;
top:0px;
width:100%!important;
z-index:0;
}
tab
{
-moz-user-select:-moz-none!important;
z-index:1!important;
-moz-border-radius-bottomleft: 0px!important;
}
.tabbrowser-strip .tabbrowser-tabs
{
width:100%!important;
}
.tab-drop-indicator-bar
{
position:fixed!important;
top:0px;
left:0px;
width:100%!important;
z-index:2;
}
window
{
padding-top:27px !important;
}
} |
|
|
3楼#
发布于:2010-08-19 16:13
我的没有tabs on top这选项,只有是否显示菜单栏、导航栏,没有排列选项⊙o⊙?)
|
|
|
4楼#
发布于:2010-08-19 16:13
不客气。
|
|
|
5楼#
发布于:2010-08-19 16:13
thanks a ton for alanfly, your help is what i was looking for
|
|
|
6楼#
发布于:2010-08-19 16:13
导航栏点右键,选择tabs on top。
|
|