diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-01-11 21:04:30 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-01-11 21:04:30 -0400 |
commit | 3eb50e4e16c7326342fd49b0a9fd3ea1b8cec46f (patch) | |
tree | ec21153e69a3669208a1178d872fb06a4136eecb /src/content/dependencies | |
parent | 4ad0c3946a132f20742cc4de7f7dd31c79bb4653 (diff) |
content, css: fix bad rule for styling image-container w/ link
Diffstat (limited to 'src/content/dependencies')
-rw-r--r-- | src/content/dependencies/image.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/content/dependencies/image.js b/src/content/dependencies/image.js index 5ea89a57..4dc1100c 100644 --- a/src/content/dependencies/image.js +++ b/src/content/dependencies/image.js @@ -140,9 +140,6 @@ export default { (customLink ? {href: slots.link} : {href: originalSrc}), - - customLink && - {class: 'no-image-preview'}, ]); const containerAttributes = html.attributes(); @@ -353,6 +350,12 @@ export default { html.tag('div', {class: 'image-container'}, containerAttributes, + willLink && + {class: 'has-link'}, + + customLink && + {class: 'no-image-preview'}, + !originalSrc && {class: 'placeholder-image'}, |