- Issue created by @luke.leber
- π¬π§United Kingdom jacobupal Leeds
I've been playing round with the CSS for the same reason and it seems there's no way of adding a color overlay to an image without writing js or changing the markup... the issue is that
img
tags are self-closing so you can't use pseudo elements.What did work was adding outlines though which I think helps at least show which version version of the image was deleted and which was added.
You should be able to add this CSS to your theme for the same result:
del.diffimg img{ outline: 2px dashed red; outline-offset: -3px; } ins.diffimg img{ outline: 2px solid limegreen; outline-offset: -3px; }