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

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

Learn More

how to increate web console font size?

  • 2 отговора
  • 5 имат този проблем
  • 55 изгледи
  • Последен отговор от harpreet Singh Bhatia

more options

i was able to edit font of marup view etc via stylish addon here is the code @namespace url(http://www.w3.org/1999/xhtml); @-moz-document url("chrome://browser/content/devtools/markup-view.xhtml"), url("chrome://browser/content/devtools/cssruleview.xhtml"), url("chrome://browser/content/devtools/computedview.xhtml"), url("chrome://browser/content/devtools/fontinspector/font-inspector.xhtml") {

  • {
   font-size:12px;
   font-family:'consolas';

}

i could not font the url for the web console to change its font.

pleae help

i was able to edit font of marup view etc via stylish addon here is the code @namespace url(http://www.w3.org/1999/xhtml); @-moz-document url("chrome://browser/content/devtools/markup-view.xhtml"), url("chrome://browser/content/devtools/cssruleview.xhtml"), url("chrome://browser/content/devtools/computedview.xhtml"), url("chrome://browser/content/devtools/fontinspector/font-inspector.xhtml") { * { font-size:12px; font-family:'consolas'; } i could not font the url for the web console to change its font. pleae help

Избрано решение

The URL for the web console (src of iframe) is:

chrome://browser/content/devtools/webconsole.xul

However, I don't know whether it can be styled as part of the HTML namespace.

Прочетете този отговор в контекста 👍 1

Всички отговори (2)

more options

Избрано решение

The URL for the web console (src of iframe) is:

chrome://browser/content/devtools/webconsole.xul

However, I don't know whether it can be styled as part of the HTML namespace.

more options

works perfectly

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url("chrome://browser/content/devtools/markup-view.xhtml"),
url("chrome://browser/content/devtools/cssruleview.xhtml"),
url("chrome://browser/content/devtools/computedview.xhtml"),
url("chrome://browser/content/devtools/fontinspector/font-inspector.xhtml"),
url("chrome://browser/content/devtools/webconsole.xul") {

* {
    font-size:12px !important;
    font-family:'consolas' !important;
}
}

Променено на от cor-el