Mozilla Destek’te Ara

Destek dolandırıcılığından kaçının. Mozilla sizden asla bir telefon numarasını aramanızı, mesaj göndermenizi veya kişisel bilgilerinizi paylaşmanızı istemez. Şüpheli durumları “Kötüye kullanım bildir” seçeneğini kullanarak bildirebilirsiniz.

Daha Fazlasını Öğren

Assign a color for the actitve tab

  • 1 yanıt
  • 1 kişi bu sorunu yaşıyor
  • 5 gösterim
  • Son yanıtı yazan: 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?

Tüm Yanıtlar (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.