更改FIREFOX界面字体
- Sat, 13 Dec 2008 17:02:53 +0800
- userChrome.css
修改~/.mozilla/firefox/*/chrome/userChrome.css
改变界面字体及大小
如果想使用verdana 12号字体,可以加入以下两行
文件: ~/.mozilla/firefox/*/chrome/userChrome.css
*{font-size: 12pt !important}
*{font-family: verdana !important}
userContent.css
修改~/.mozilla/firefox/*/chrome/userContent.css
让 mailto 连接显示紫色
文件: ~/.mozilla/firefox/*/chrome/userContent.css
a[href^="mailto:"] {
color: purple !important;
text-decoration: none !important;
}
在 mailto 连接前显示一个邮箱
文件: ~/.mozilla/firefox/*/chrome/userContent.css
a[href^="mailto:"]:before {
content: "\2709 " !important;
}
让 javascript 连接显示绿色
文件: ~/.mozilla/firefox/*/chrome/userContent.css
a[href^="javascript:"] {
color: green !important;
text-decoration: underline !important;
}
标签:UNIX, 浏览器
- 热门文章
- 评论
- 发表评论:





