Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Научете повече

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.