Skip to content

Commit

Permalink
Fix: Setting icon at Syced tabs panel
Browse files Browse the repository at this point in the history
`PanelUI-remotetabs-buttons`
  • Loading branch information
black7375 committed Dec 8, 2021
1 parent 1da2535 commit 5e36d07
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions userChrome.css
Original file line number Diff line number Diff line change
Expand Up @@ -4043,13 +4043,29 @@ tab[visuallyselected] > stack::after {
#PanelUI-fxa-menu-sendtab-button {
list-style-image: url("./icons/send-to-device.svg");
}
#PanelUI-fxa-menu-sync-prefs-button,
#PanelUI-remotetabs-view-managedevices {
#PanelUI-fxa-menu-sync-prefs-button {
list-style-image: url("chrome://global/skin/icons/settings.svg");
}
#PanelUI-fxa-menu-account-signout-button {
list-style-image: url("./icons/sign-out.svg");
}
#PanelUI-remotetabs-view-managedevices::before {
/* Box */
content: "";
padding-inline-end: 16px;
padding-block: 1px;
margin-inline-end: var(--arrowpanel-menuicon-padding);

/* Color */
fill: currentColor;
fill-opacity: var(--toolbarbutton-icon-fill-opacity);
-moz-context-properties: fill;

background-size: 16px;
background-repeat: no-repeat;
background-position: left center;
background-image: url("chrome://global/skin/icons/settings.svg");
}

.PanelUI-remotetabs-notabsforclient-label {
margin-inline-start: calc(var(--arrowpanel-menuicon-padding) + var(--arrowpanel-menuitem-padding)) !important;
Expand Down

0 comments on commit 5e36d07

Please sign in to comment.