~/Library/Applicaion Support/Firefox/Profiles/xxx.default/chrome/userChrome.css
加入下面的代码:
/* merge the stop and reload buttons */
#stop-button[disabled="true"] { display:none; }
#stop-button:not([disabled]) + #reload-button { display:none; }
/*
* 在标签加载时显示加载图标
*/
.tabbrowser-tabs *|tab[busy] .tab-icon {
display:-moz-box;
}
/*
* 4. 当鼠标盘旋在标签上时显示图标,隐藏默认标签图标
*/
.tabbrowser-tabs .tab-icon, .tabbrowser-tabs *|tab:not([image]):hover .tab-icon {
display: none;
}
/*
.tabbrowser-tabs *|tab[image]:hover .tab-icon {
display: -moz-box;
}
*/