如何更改firebug的默认字体?

发布于 2024-11-05 09:37:43 字数 70 浏览 0 评论 0原文

在Firebug中,默认字体对我来说不太舒服,我在Firefox菜单栏->工具->选项中进行了更改,但没有起作用。

In Firebug, the default font is not very comfortable for me, and I made the change in Firefox menubar->tools->options, but it didn't work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

贱人配狗天长地久 2024-11-12 09:37:43

如果您只想更改字体大小,请使用 about:config 页面并更改选项 extensions.firebug.textSize 或使用 增加字体大小 和 < firebug 菜单中的 code>Decrease font size 选项(菜单和热键在我的笔记本电脑上的 FF4 和 Win7 中不起作用)。

如果要更改 UI 元素的字体系列,您可以修改位于扩展目录中的 firebug css 文件 (c:\Users\myusername\AppData\Roaming\Mozilla\Firefox\Profiles\nd21zknl.default\extensions\< a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="45232c372027302205362a2331322437206b2f2a202d20322c31316b262a286b3d352c">[电子邮件受保护]\skin\class ic\firebug.css 为我)。

If you want to change only font size, use about:config page and change option extensions.firebug.textSize or use Increase font size and Decrease font size options in the firebug menu (menu and hotkeys doesn't work in FF4 and Win7 on my laptop).

If you want to change font-families of UI elements you can modify firebug css files located in the extensions directory (c:\Users\myusername\AppData\Roaming\Mozilla\Firefox\Profiles\nd21zknl.default\extensions\[email protected]\skin\classic\firebug.css for me).

一页 2024-11-12 09:37:43

无需修改扩展程序的文件(并且在每次 Firebug 更新后再次执行...)

您所要做的就是将规则添加到文件 /chrome/userChrome.css(如果尚不存在则创建它):

#fbCommandArrow, .fbCommandLine, #fbCommandEditor {
    font-family: Consolas, monospace !important; /* default: monospace */
}

There is no need to modify the extension's files (and to do it again after each Firebug update...)

All you have to do is to add rules to the file <FirefoxProfile>/chrome/userChrome.css (create it if it doesn't exist yet):

#fbCommandArrow, .fbCommandLine, #fbCommandEditor {
    font-family: Consolas, monospace !important; /* default: monospace */
}
腹黑女流氓 2024-11-12 09:37:43

在此处输入图像描述

如果您使用 Firebug 1.11+,您可以这样做:

1) 打开 [电子邮件受保护] 或您的.xpi 文件(提取)与 Winrar/ Winzip 存档程序

2) 搜索行 font-family: monospace;在所有 .css 文件中

3) 替换所有 font-family: monospace; => font-family: consolas, monospace !important;

4) 保存文件,进行存档(zip、rar),然后更改其扩展名 => .xpi

5) 重新启动 Firefox。

enter image description here

If you use Firebug 1.11+, you can do it:

1) Open the [email protected] or your .xpi file (extract) with Winrar/Winzip archive program

2) Search the line font-family: monospace; in all .css files

3) Replace all font-family: monospace; => font-family: consolas, monospace !important;

4) Save the file, do it archive (zip, rar) and later change it's extension => .xpi

5) Restart the Firefox.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文