using files instead of base64 embedded images for performance and tidiness

This commit is contained in:
sundae 2025-12-20 13:15:51 +02:00
commit 826182cd07
Signed by: sundae
SSH key fingerprint: SHA256:MsJkKuo4PUdjQDpLeaURy81drKkW14exlTHp+8QFu6M
8 changed files with 38 additions and 27 deletions

View file

@ -7,7 +7,13 @@
* @source https://bunsin.space/forgejo/sundae/discord-denden-theme/src/branch/main/denden.css
* @authorLink https://sundae.bunsin.space/
*/
@import url("denden-assets.css");
:root {
--kiophen: url("./denden-assets/mint.png");
--bubble1: url("./denden-assets/bg_blobbubble_3.png");
--bubble2: url("./denden-assets/bg_blobbubble_3_flip.png");
--forest: url("./denden-assets/bg_forest_dither.png");
--blob: url("./denden-assets/blob.png");
}
@supports (color: color-mix(in lch, red, blue)) {
.theme-dark {
--gel: rgb(76, 252, 252);
@ -459,7 +465,7 @@
}
/* Buttons */
:is(nav[aria-label] div:has(> a), /* Sidebar/direct messages */
[aria-label="Message Actions"] [role], /* Message actions ("React", "Reply", "Forward" and "More") */
[aria-label="Message Actions"] [role="button"], /* Message actions ("React", "Reply", "Forward" and "More") */
[class*="channelTextArea"] [class*="buttons"] [role], [class*="channelTextArea"] [class*="attach"]>[aria-label], /* Message box buttons (GIF, Sticker, Emoji picker)*/
section[aria-label="User area"] button, /* Mute/Unmute, Deafen/Undeafen, User settings buttons */
[class*="toolbar"] [role="button"], /* Chat toolbar buttons */