Improve theme handling when JS is disabled

This commit is contained in:
Guillaume Gomez 2024-10-22 18:45:11 +02:00
parent c056928af2
commit ca5c6f6c26

View file

@ -204,7 +204,7 @@ details[open] {
}
/* Expanding the mdBook theme*/
.light {
.light, body:not([class]) {
--inline-code-bg: #f6f7f6;
}
.rust {
@ -220,6 +220,16 @@ details[open] {
--inline-code-bg: #191f26;
}
@media (prefers-color-scheme: dark) {
body:not([class]) {
/*
In case JS is disabled and the user's system is in dark mode, we take "coal" as default
dark theme.
*/
--inline-code-bg: #1d1f21;
}
}
#settings-dropdown {
position: absolute;
margin: 0.7em;