搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Assign a color for the actitve tab

  • 1 个回答
  • 1 人有此问题
  • 5 次查看
  • 最后回复者为 cor-el

more options

Is there a way to highlight the active tab by giving it a color?

Is there a way to highlight the active tab by giving it a color?

所有回复 (1)

more options

You can do that with code in userChrome.css

See http://kb.mozillazine.org/Editing_configuration#How_to_edit_configuration_files

An example is this (make your own changes and leave out what you do ont need):

/* Change color of selected tab */
.tabbrowser-tab[selected="true"] {
 color:#000 !important;
 background-color: rgb(147, 174, 229) !important;
 font-style:italic !important;
 font-size:10pt !important;
 font-weight:bold;
}

You can also look at extensions like Tab Mix Plus.