neatnik@social.lol ("Neatnik :prami:") wrote:
Small update to https://some.pics. The EXIF data table now includes classes for each data element, which means you can now use CSS (in your custom template) to work with those.
One practical application is only showing the fields that you care about, and hiding the others. Here's some sample CSS for that:
tr:not(:has(
td:first-child.field-of-view,
td:first-child.megapixels,
td:first-child.lens-id
)) {
display: none;
}