From 51c9ecb5ef3f5b52c433aa30973ac32d72505f5b Mon Sep 17 00:00:00 2001 From: Inaki Fernandez Date: Thu, 25 Jun 2026 12:17:02 +0200 Subject: [PATCH] fix: invert Nutanix logo in dark mode for V1 mosaic MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- docs/static/extra.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/static/extra.css b/docs/static/extra.css index e1924c0b..13bcc7ef 100644 --- a/docs/static/extra.css +++ b/docs/static/extra.css @@ -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); +} +