From b57f42abcff9242dcfd3e3541ae7568863803fd3 Mon Sep 17 00:00:00 2001 From: Graham Harper Date: Tue, 14 Mar 2023 14:52:43 -0600 Subject: [PATCH] Update doxygen stylesheet to only use a white table.tutorial in light mode (not dark mode) --- doc/doxygen/stylesheet.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/doxygen/stylesheet.css b/doc/doxygen/stylesheet.css index d5bc3096ed..c7487e8a43 100644 --- a/doc/doxygen/stylesheet.css +++ b/doc/doxygen/stylesheet.css @@ -5,12 +5,14 @@ color: #80ff00; } -table.tutorial { +@media (prefers-color-scheme: light) { + table.tutorial { color: black; border: 1px solid #aaa; background-color: #f9f9f9; padding: 5px; font-size: 95%; + } } div.tutorial { color: black; -- 2.39.5