Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge pull request #207 from michaeldjeffrey/t/206
Browse files Browse the repository at this point in the history
Fix: Only override the `fill` for icons that don't declare one. Closes #206.

Thanks to @michaeldjeffrey!
  • Loading branch information
Reinmar authored Nov 22, 2018
2 parents 3d5a653 + 4520dae commit 6c690a9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions theme/ckeditor5-ui/components/icon/icon.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@
/* Allows dynamic coloring of the icons. */
color: inherit;

/* Needed by FF. */
fill: currentColor;
&:not([fill]) {
/* Needed by FF. */
fill: currentColor;
}
}
}

0 comments on commit 6c690a9

Please sign in to comment.