0%

Firefox 4 将橙色按钮的文本替换掉

userChrome.css

如下:

1
2
3
4
5
6
#appmenu-button .button-box .box-inherit:before {
content: "Firefox";
}
#appmenu-button .button-box .box-inherit .button-text {
display: none;
}

可以直接使用汉字(在stylish中可行),或者在Unicode编码的前面加上反斜杠(\)
如下:

1
2
3
4
5
6
#appmenu-button .button-box .box-inherit:before {
content: "\706b\72d0"; /* 火狐 的对应编码 */
}
#appmenu-button .button-box .box-inherit .button-text {
display: none;
}