diff --git a/CHANGELOG.md b/CHANGELOG.md index e8b90a90..317aa4bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [[2.3.42]](https://github.com/nubenetes/awesome-kubernetes/releases/tag/v2.3.42) - 2026-06-03 + +### Fixed +- **Mobile Drawer Contrast (V2)**: Resolved contrast issues in the Nubenetes V2 mobile navigation drawer under dark mode (`slate`) by overriding `.md-nav__title`, logo, icons, and `.md-nav__source` background/foreground colors. This ensures readable white text and visible icons on dark backgrounds. + ## [[2.3.41]](https://github.com/nubenetes/awesome-kubernetes/releases/tag/v2.3.41) - 2026-06-03 ### Fixed diff --git a/docs/static/v2_elite.css b/docs/static/v2_elite.css index c78a946f..16c38824 100644 --- a/docs/static/v2_elite.css +++ b/docs/static/v2_elite.css @@ -136,6 +136,33 @@ a { text-shadow: 0 0 8px rgba(6, 182, 212, 0.4); } +/* Fix mobile navigation drawer header and repository section contrast in dark mode */ +@media screen and (max-width: 76.1875em) { + [data-md-color-scheme="slate"] .md-nav--primary .md-nav__title { + background-color: #18181b !important; /* Solid Zinc 900 for dark mode */ + color: #ffffff !important; + border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; + } + + [data-md-color-scheme="slate"] .md-nav--primary .md-nav__title .md-logo svg, + [data-md-color-scheme="slate"] .md-nav--primary .md-nav__title .md-logo img { + fill: #ffffff !important; + } + + [data-md-color-scheme="slate"] .md-nav--primary .md-nav__title .md-icon { + color: #ffffff !important; + } + + [data-md-color-scheme="slate"] .md-nav__source { + background-color: #0f0f11 !important; /* Solid Zinc 950 / dark background */ + border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; + } + + [data-md-color-scheme="slate"] .md-source { + color: #ffffff !important; + } +} + /* Elegant Table Rows (Audit Matrix) */ .md-typeset table tr { transition: background-color 0.2s ease-in-out, transform 0.2s ease; diff --git a/v2-mkdocs.yml b/v2-mkdocs.yml index 8e788baf..ca5049da 100644 --- a/v2-mkdocs.yml +++ b/v2-mkdocs.yml @@ -74,7 +74,7 @@ extra: extra_css: - https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap - static/extra.css - - static/v2_elite.css?v=2.3.20 + - static/v2_elite.css?v=2.3.42 markdown_extensions: - admonition