Make image diffs less confusing

Created on 25 January 2023, about 2 years ago

Problem/Motivation

Presently, it's not obvious what might have changed with an image, which was removed, which was added, etc...

Proposed resolution

Provide a client-side solution to detect various image situations and provide a more intuitive review interface.

An image was added

An image was modified

An image was removed

Remaining tasks

TBD

User interface changes

An intuitive image diffing experience!

API changes

TBD

Data model changes

TBD

✨ Feature request
Status

Active

Version

1.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States luke.leber Pennsylvania

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @luke.leber
  • πŸ‡ΊπŸ‡ΈUnited States luke.leber Pennsylvania
  • πŸ‡¬πŸ‡§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;
    }
    
Production build 0.71.5 2024