feat(catalog): add sticky and closed icons

This commit is contained in:
plebeius.eth
2024-04-12 20:48:46 +02:00
parent 65c99ab188
commit 2fc12bbafe
3 changed files with 45 additions and 7 deletions
@@ -21,6 +21,31 @@
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.threadIcons {
position: absolute;
top: 2px;
right: 16px;
}
.threadIcons span {
width: 16px;
height: 16px;
display: inline-block;
border: none;
background-repeat: no-repeat;
background-position: center;
image-rendering: pixelated;
}
.threadIcons .stickyIcon {
background-image: url("/public/assets/icons/sticky.gif");
}
.threadIcons .closedIcon {
background-image: url("/public/assets/icons/closed.gif");
}
.mediaWrapper {