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

Changing background color of search box and quick links in new tab

  • 4 yanıt
  • 0 kişi bu sorunu yaşıyor
  • 182 gösterim
  • Son yanıtı yazan: aidantomcy

more options

How do I change the background color of the search box and quick links in a new tab? I'm using Firefox color.

How do I change the background color of the search box and quick links in a new tab? I'm using Firefox color.

Seçilen çözüm

Thank you so much!

Bu yanıtı konu içinde okuyun 👍 0

Tüm Yanıtlar (4)

more options

Themes can change this with ntp_card_background but it is not exposed by Firefox Color.

Another way is with userContent.css:

@-moz-document url(about:home), url(about:newtab) {
  body {
    --newtab-background-color-secondary: red !important; 
  }

}

more options

So how do I change it? I'm not planning on publishing a theme (I'm just doing this to change the appearance of Firefox for myself). I tried poking around in the CSS and changing the variable works fine. How do I make it permanent?

aidantomcy tarafından tarihinde düzenlendi

more options

Follow the same procedure here but name the file userContent.css instead of userChrome.css.

more options

Seçilen çözüm

Thank you so much!