首页 > 学习笔记 > 更改FIREFOX界面字体

更改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, 浏览器
热门文章
评论
发表评论:


  [TIPS:首次发表评论的朋友,需要验证]
标签
最近发表
最新评论
连接
版权说明
任何转载,无需经过许可,但必须注明来源地址。如有任何建议或意见,请联系
Copyright©2007-2009 lewphee.com All rights reserved.