idragonet
千年狐狸
千年狐狸
  • UID15658
  • 注册日期2006-11-12
  • 最后登录2017-11-15
  • 发帖数2642
  • 经验162枚
  • 威望1点
  • 贡献值74点
  • 好评度118点
  • 社区居民
阅读:2226回复:2

请教:TABS如何放在工具栏上?如何实现???

楼主#
更多 发布于:2008-12-10 12:06
像这样:


Firefox总体主题不变的前提下。。。
fang5566
管理员
管理员
  • UID3719
  • 注册日期2005-03-07
  • 最后登录2025-11-14
  • 发帖数18504
  • 经验4860枚
  • 威望5点
  • 贡献值4324点
  • 好评度1118点
  • 社区居民
  • 最爱沙发
  • 忠实会员
  • 终身成就
1楼#
发布于:2008-12-10 12:06
这个论坛讨论过了吧,也有人给过这个代码的链接 ,另外用 totaltoolbar 扩展也可以轻易实现这个功能,同时提供更为强大的状态栏定制功能!
Firefox More than meets your experience
idragonet
千年狐狸
千年狐狸
  • UID15658
  • 注册日期2006-11-12
  • 最后登录2017-11-15
  • 发帖数2642
  • 经验162枚
  • 威望1点
  • 贡献值74点
  • 好评度118点
  • 社区居民
2楼#
发布于:2008-12-10 12:06
编辑userChrome.css搞定!!

@-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:0!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:1;
}

window
{
padding-top:31px;
}

}
游客

返回顶部