人,因思则变。
Posts tagged userchrome
Firefox 4 将橙色按钮的文本替换掉
0userChrome.css
如下:
#appmenu-button .button-box .box-inherit:before {
content: “Firefox“;
}
#appmenu-button .button-box .box-inherit .button-text {
display: none;
}
可以直接使用汉字(在stylish中可行),或者在Unicode编码的前面加上反斜杠(\)
如下:
#appmenu-button .button-box .box-inherit:before {
content: “\706b\72d0“; /* 火狐 的对应编码 */
}
#appmenu-button .button-box .box-inherit .button-text {
display: none;
}
定义火狐的userChrome.css
0将地址栏收藏按钮移除:
#star-button { display: none !important; }
将地址栏RSS按钮移除:
#feed-button {display:none;}