.tabbrowser-tab[unread]、background-image:linear-gradient 在 userChrome.css 中不起作用

.tabbrowser-tab[unread]、background-image:linear-gradient 在 userChrome.css 中不起作用

我以前用过这个,但现在它停止工作了。我有一些代码userChrome.css可以在未读标签的右上角创建一个小灰色三角形。

/* Mark new and unread tabs */
.tabbrowser-tab[unread] {
  font-style: italic; 
  background-image: linear-gradient(-135deg, rgba(100, 100, 100, 0.6) 10px, transparent 0);
}
.tabbrowser-tab[busy] {
  font-style: italic;
}
.tabbrowser-tab[pending] {
  font-style: italic;
}
.tabbrowser-tab:not([pinned]) {
  min-width: 10px !important;
}

/* Move Find Bar above the page */
.browserContainer > findbar {
  -moz-box-ordinal-group: 0;
}

这是第一部分.tabbrowser-tab[unread],不起作用。我的css代码有问题吗?

我在 Ubuntu 上运行 64 位 Firefox 61.0.1。

答案1

相关内容