I'm currently using a CSS selector on my site to display an icon for external links on any href that isn't directing to my own domain. Here's the code snippet I'm referring to:
a[class=" external-link"]::after {
content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAQElEQVR42qXKwQkAIAxDUUdxtO6/RBQkQZvSi8I/pL4BoGw/XPkh4XigPmsUgh0626AjRsgxHTkUThsG2T/sIlzdTsp52kSS1wAAAABJRU5ErkJggg==);
position: relative;
top: -3px;
margin: 0 3px 0 5px;
}
The image displayed is grey, while the rest of the link has a color of #0273d4. I was wondering if it's possible to change the color of the image only, without affecting the background text of the href?