[css]73.0 启用标签计数+列出所有标签 求帮助

阅读:1676回复:3
2020-02-16 14:30
写私信
楼主#


/*启用标签计数+列出所有标签*/
#main-window {
    counter-reset: tabs;
}
 
.tabbrowser-tab:not(:-moz-any([concealed])) {
    counter-increment: tabs;
}
 
#alltabs-button {
    visibility: visible!important;
    margin-right: -22px !important;
}
 
#alltabs-button:after {
    content: counter(tabs);
    display: -moz-box;
}
 
#alltabs-button> :-moz-any(label, image) {
    display: none;
}

72之前一直使用的是贴出的这段




73增加了 browser.tabs.tabmanager.enabled 但是如何启用标签计数呢? 谢谢!

最新喜欢:

hill
2020-02-16 16:19
写私信
1楼#
/*启用标签计数+列出所有标签*/
#main-window {
  counter-reset: tabs;
}
 
.tabbrowser-tab:not(:-moz-any([concealed])) {
  counter-increment: tabs;
}
 
#alltabs-button {
  visibility: visible!important;
  margin-right: -22px !important;
}
 
#alltabs-button:after {
  content: counter(tabs);
  display: -moz-box;
}
2020-02-16 18:22
写私信
2楼#
新垣结衣:/*启用标签计数+列出所有标签*/
#main-window {
  counter-reset: tabs;
}
 
.tabbrowser-tab:not(:-moz-any()) {
  counter-increment...
回到原帖
有效,谢谢你的帮助!
2020-10-02 20:24
写私信
3楼#
没效果啊