Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

How can I change the color of urls in the urlbar dropdown?

  • 2 ответа
  • 1 имеет эту проблему
  • 235 просмотров
  • Последний ответ от withering_nightmare

more options

Can anyone help me with the css code for changing the color of urls in the urlbar dropdown?

Can anyone help me with the css code for changing the color of urls in the urlbar dropdown?
Приложенные скриншоты

Выбранное решение

That can be set by using the following CSS code in a userChrome.css file:

.urlbarView-url {
    color: red !important;
}

If you are not sure how to create or use a userChrome.css file, see the How to Create a userChrome.css File page on userChrome.org.

Hope this helps.

Прочитайте этот ответ в контексте 👍 1

Все ответы (2)

more options

Выбранное решение

That can be set by using the following CSS code in a userChrome.css file:

.urlbarView-url {
    color: red !important;
}

If you are not sure how to create or use a userChrome.css file, see the How to Create a userChrome.css File page on userChrome.org.

Hope this helps.

more options

Wesley Branton said

That can be set by using the following CSS code in a userChrome.css file:
.urlbarView-url {
    color: red !important;
}

If you are not sure how to create or use a userChrome.css file, see the How to Create a userChrome.css File page on userChrome.org.

Hope this helps.

Thank you so much been digging the whole net for this! Worked like a charm!