diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-01-13 16:00:03 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-01-13 16:00:03 -0400 |
commit | 58692c5544781c0fb50f7ab112be7eb38a188ae6 (patch) | |
tree | 872b93f91c1d8671caedde58d865d1b4913aaa92 /src | |
parent | 944ea96ae6f72c11527091a718b124d7e396cf34 (diff) |
content, test: image: remove 'id' slot
Diffstat (limited to 'src')
-rw-r--r-- | src/content/dependencies/generateCoverArtwork.js | 1 | ||||
-rw-r--r-- | src/content/dependencies/image.js | 9 | ||||
-rw-r--r-- | src/static/site6.css | 2 |
3 files changed, 1 insertions, 11 deletions
diff --git a/src/content/dependencies/generateCoverArtwork.js b/src/content/dependencies/generateCoverArtwork.js index a992f5da..e333b190 100644 --- a/src/content/dependencies/generateCoverArtwork.js +++ b/src/content/dependencies/generateCoverArtwork.js @@ -50,7 +50,6 @@ export default { alt: slots.alt, color: slots.color, thumb: 'medium', - id: 'cover-art', reveal: true, link: true, square: true, diff --git a/src/content/dependencies/image.js b/src/content/dependencies/image.js index 4dc1100c..3121aca3 100644 --- a/src/content/dependencies/image.js +++ b/src/content/dependencies/image.js @@ -59,7 +59,6 @@ export default { lazy: {type: 'boolean', default: false}, square: {type: 'boolean', default: false}, - id: {type: 'string'}, class: {type: 'string'}, alt: {type: 'string'}, width: {type: 'number'}, @@ -144,14 +143,6 @@ export default { const containerAttributes = html.attributes(); - if (slots.id) { - if (willLink) { - linkAttributes.set('id', slots.id); - } else { - imgAttributes.set('id', slots.id); - } - } - if (slots.class) { if (willLink) { linkAttributes.set('class', slots.class); diff --git a/src/static/site6.css b/src/static/site6.css index 153d693f..5ee062f5 100644 --- a/src/static/site6.css +++ b/src/static/site6.css @@ -659,7 +659,7 @@ p .current { border-top-color: var(--deep-color); } -#cover-art .image { +#cover-art-container .image { display: block; width: 100%; height: 100%; |