fix: invert Nutanix logo in dark mode for V1 mosaic

Same fix as v2.9.53 for V2 — the Nutanix logo is black-on-transparent and
invisible in dark mode. Adds targeted CSS invert(1) via [data-md-color-scheme=slate]
to docs/static/extra.css (V1 stylesheet).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Inaki Fernandez
2026-06-25 12:17:02 +02:00
parent b5d44e89bb
commit 51c9ecb5ef

View File

@@ -49,6 +49,14 @@ reset max-width with the following CSS: */
filter: brightness(1.2);
}
/* Dark-logo fix: invert black-on-transparent logos so they remain visible in dark mode */
[data-md-color-scheme="slate"] img[src*="nutanix_logo"] {
filter: invert(1);
}
[data-md-color-scheme="slate"] img[src*="nutanix_logo"]:hover {
filter: invert(1) brightness(1.2);
}