Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

I use the "Mute Tab" extension to mute all new tabs by default, but the mute icon is annoyingly visible. Can I add a style to make it transparent?

  • 1 trả lời
  • 1 gặp vấn đề này
  • 4 lượt xem
  • Trả lời mới nhất được viết bởi cor-el

more options

I know there must be some userChrome.css stuff and a way to modify the icon but I can't find any resource about how to do that.

I know there must be some userChrome.css stuff and a way to modify the icon but I can't find any resource about how to do that.
Đính kèm ảnh chụp màn hình

Tất cả các câu trả lời (1)

more options

You can set the opacity to '0' or to a low value like '.1' to make you aware of its presence.

This is the full selector currently used with opacity: .8

Add code to the userChrome.css file below the default @namespace line.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

.tab-icon-sound[pictureinpicture]:not(:hover), .tab-icon-sound[soundplaying]:not(:hover), .tab-icon-sound[muted]:not(:hover), .tab-icon-sound[activemedia-blocked]:not(:hover) {
 opacity: 0 !important;
}