1
alixali 2018-11-25 20:02:41 +08:00
你不说出来,还真没有注意到这个东西阿。。
|
2
yingfengi 2018-11-25 21:28:37 +08:00 via Android 1
靠,你为什么要说出来,现在我也知道这东西
了 |
3
dalieba 2018-11-30 10:33:25 +08:00 via Android
Outlook 来信以后图标会多出来小红点
|
4
znood 2018-12-17 19:44:37 +08:00
userChrome.css 自动隐藏那个图标
/* Hide info icon for sites that don't have permissions */ #urlbar :not(.grantedPermissions) #identity-icon { transition: 300ms !important; /* Animate icon hiding */ opacity: 0 !important; /* Make icons transparent */ -moz-margin-end: -1.1em !important; /* Hide icons by offsetting them */ } /* Show info icon on navbar hover, except for new tab page search icon */ #urlbar[pageproxystate="valid"]:hover #identity-icon { transition: 300ms !important; /* Animate icon showing */ opacity: 1 !important; /* Make icons opaque */ -moz-margin-end: initial !important; /* Use initial margins to show icons */ } |