black7375 / Firefox-UI-Fix

🦊 I respect proton UI and aim to improve it.
Mozilla Public License 2.0
5.35k stars 187 forks source link

Fix: Compatibility - Icon fill color #791 #792

Closed black7375 closed 12 months ago

black7375 commented 12 months ago

Describe the PR

My OS theme is Breeze / Adwaita, and it looks like this:

image (It seems to be working relatively well)

AccentColor is currently being applied. image image image

#star-button[sttared] {
  fill-opacity: 1;
  fill: var(--tolbarbutton-icon-fill-attention);
}

:root:-moz-lwtheme {
  --download-progress-fill-color: var(--lwt-toolbarbutton-icon-fill-attention, light-dark(rgb(0, 97, 224), rgb(0, 221, 255)));
}
:root:-moz-lwtheme {
  --toolbarbutton-icon-fill-attention: var(--lwt-toolbarbutton-icon-fill-attention, light-dark(rgb(0, 97, 224), rgb(0, 221, 255)));
}

root:-moz-lwtheme {
  --lwt-toolbarbutton-icon-fill-attention: var(--button-primary-bgcolor, rgb(0, 120, 215));
}

We can resolve the issue by removing the code that was causing the compatibility issue.

PR Type

Related Issue

791

Screenshots

Additional context