Added plugin icon to plugin list/detail

This commit is contained in:
Jason Novinger
2025-04-25 13:42:36 -05:00
parent 37cfc50202
commit afc7b35af0
7 changed files with 37 additions and 18 deletions

View File

@@ -75,3 +75,15 @@ span.color-label {
.btn-grey, .btn-gray {
@extend .btn-secondary;
}
img.plugin-icon {
max-width: 1.4285em;
height: auto;
}
body[data-bs-theme=dark] {
// Assuming icon is black/white line art, invert it and tone down brightness
img.plugin-icon {
filter: invert(100%) brightness(80%);
}
}