feat: Add customizable icon size and shape settings, and update module metadata.

This commit is contained in:
CPTN Cosmo 2025-12-30 23:37:25 +01:00
parent 63a8c957cd
commit 773a95641b
3 changed files with 58 additions and 22 deletions

View file

@ -72,19 +72,16 @@
}
#dh-environment-overlay img {
width: 80px;
height: 80px;
border-radius: 50%;
/* Border color handled via inline style now */
border: 3px solid #ffcc00;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
border-radius: 50%; /* Default fallback */
border: 3px solid var(--dh-overlay-color, #ffcc00);
box-shadow: 0 0 10px var(--dh-overlay-color, rgba(0, 0, 0, 0.5));
background-color: #000;
transition: transform 0.2s, box-shadow 0.2s;
}
#dh-environment-overlay:hover img {
transform: scale(1.05);
box-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
box-shadow: 0 0 15px var(--dh-overlay-color, rgba(255, 204, 0, 0.6));
}
.dh-environment-overlay-name {