How to increase code fonts in Firefox developer tools? I know that there is a zoom function but I want to set the font size only for the code.
相关问题
- SQLite Storage in Firefox 3.0 +
- Writing a custom protocol handler portable on Fire
- setInterval doesn't slow down on inactive tab
- JavaFX automatically resize Button's font size
- CSS grid behaviour different in Chrome and Firefox
相关文章
- Firefox remembering radio buttons incorrectly
- How to control print font size
- CSS Firefox box-shadow and outline
- XML Parsing Error in Firefox developer console
- firefox ondrop event.dataTransfer is null after up
- CORS request did not succeed on Firefox but works
- Label size in directlabels geom_dl()
- Firebug console error HTTP 407 Proxy Authenticatio
Some elements of Firefox can be styled in the userChrome.css file situated in your Firefox profile's chrome folder.
As of 2018, modify/create ~/.mozilla/firefox/[profile-name]/chrome/userChrome.css with something similar to:
Then restart Firefox.
The solution on the Mozilla forums almost has it right: https://support.mozilla.org/en-US/questions/1198481
Using Ctrl+= or Cmd+= was not ideal for me since it increased fonts for all the elements of the window, including the tab names.
Using
.devtools-monospace { font-size: 13px !important;}
was almost ok, but it did not affect the Debugger and Network tabs.Using @bohag_bihu's solution had side effects for the address bar and some other text inputs.
I accidentally had my firefox developer window resized to the minimum (couldn't even read it anymore), "CMD +" (mac) didn't work for me, well only for the main web page even if the console was focused, I just hit: "CMD 0" and it came back to normal, if it can be a good alternative to anyone else ;)