Add basic support for registering custom icons that override icons provided by the system/modules

This commit is contained in:
Oliver 2026-02-09 23:06:51 -07:00
parent c90137b18f
commit c7541db1d9
9 changed files with 279 additions and 6 deletions

View file

@ -1,9 +1,12 @@
@import url("./chatSidebarBackground.css");
@import url("./hotbarButtonGap.css");
@import url("./hotbarButtonSize.css");
@import url("./repositionHotbar.css");
@layer resets, elements, tweaks, apps;
@import url("./apps.css");
@import url("./chatSidebarBackground.css") layer(tweaks);
@import url("./hotbarButtonGap.css") layer(tweaks);
@import url("./hotbarButtonSize.css") layer(tweaks);
@import url("./repositionHotbar.css") layer(tweaks);
@import url("./apps/common.css") layer(apps);
@import url("./apps/StatusEffectIconConfig.css") layer(apps);
/* Make the chat sidebar the same width as all the other tabs */
.chat-sidebar:not(.sidebar-popout) { width: var(--sidebar-width); }