From 46114bf28e6b0a434d670596463183add38da0d1 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Thu, 24 Sep 2020 19:56:27 +0200 Subject: [PATCH] docs: html: improve css for small displays fixed-width navi/toc links were not switched in color for small width displays, and thus they were barely readable as the background switches to dark for small widths. Signed-off-by: Thomas Lamprecht --- docs/custom.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/custom.css b/docs/custom.css index d8827d11..386ad72f 100644 --- a/docs/custom.css +++ b/docs/custom.css @@ -32,3 +32,11 @@ div.sphinxsidebar form.search { div.sphinxsidebar h3 { width: 100%; } +@media screen and (max-width: 875px) { + div.sphinxsidebar span { + color: #AAA; + } + ul li.toctree-l1 > a { + color: #FFF; + } +} -- 2.39.2