Add option to hide WebRTC indicator

Hide redundant WebRTC indicator since GNOME provides their own privacy
icons in the top right.
closes #196
This commit is contained in:
Rafael Mardojai CM 2021-05-15 11:51:25 -05:00
parent 05ae3d960c
commit 7d89a3aa16
2 changed files with 12 additions and 0 deletions

View File

@ -185,6 +185,10 @@ Optional features can be enabled by creating new `boolean` preferences in `about
Make all tab icons look kinda like symbolic icons.
- **Hide WebRTC indicator** `gnomeTheme.hideWebrtcIndicator`
Hide redundant WebRTC indicator since GNOME provides their own privacy icons in the top right.
- **Drag window from headerbar buttons** `gnomeTheme.dragWindowHeaderbarButtons`
Allow draging the window from headerbar buttons.

View File

@ -111,3 +111,11 @@ findbar:-moz-window-inactive description,
.notificationbox-stack[notificationside="bottom"] notification {
border-top: 1px solid var(--gnome-toolbar-border-color) !important;
}
/* OPTIONAL: Hide WebRTC indicator */
@supports -moz-bool-pref("gnomeTheme.hideWebrtcIndicator") {
#webrtcIndicator {
display: none;
}
}