No white background for favicons

This commit is contained in:
2026-01-28 20:39:25 +01:00
parent a5b33c1b8d
commit 47889c7d4c

View File

@@ -470,27 +470,3 @@ html.luxtools-noscroll body {
padding: 3px; padding: 3px;
text-align: left; text-align: left;
} }
/* ============================================================
* Link Favicon
* Display favicons for external links.
* ============================================================ */
/* External links with favicon loaded */
.dokuwiki a.urlextern.linkfavicon {
/* Reserve space for 16x16 favicon + small gap */
padding-left: 20px;
background-repeat: no-repeat;
background-position: left center;
background-size: 16px 16px;
/* Muted grayscale effect until hover */
background-color: #fff;
background-blend-mode: luminosity;
}
/* Show full color on hover */
.dokuwiki a.urlextern.linkfavicon:hover {
background-color: transparent;
background-blend-mode: normal;
transition: all 0.2s ease-in-out;
}