~/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; }
/*
* 在標(biāo)簽加載時(shí)顯示加載圖標(biāo)
*/
.tabbrowser-tabs *|tab[busy] .tab-icon {
display:-moz-box;
}
/*
* 4. 當(dāng)鼠標(biāo)盤旋在標(biāo)簽上時(shí)顯示圖標(biāo),隱藏默認(rèn)標(biāo)簽圖標(biāo)
*/
.tabbrowser-tabs .tab-icon, .tabbrowser-tabs *|tab:not([image]):hover .tab-icon {
display: none;
}
/*
.tabbrowser-tabs *|tab[image]:hover .tab-icon {
display: -moz-box;
}
*/