Fixed unreadable print view when using dark mode

This commit is contained in:
squidfunk 2020-10-17 16:45:20 +02:00
parent c6a67ec093
commit ab60de2b61
6 changed files with 49 additions and 45 deletions

View File

@ -9,6 +9,6 @@
"assets/stylesheets/main.css.map": "assets/stylesheets/main.ce7da9e3.min.css.map", "assets/stylesheets/main.css.map": "assets/stylesheets/main.ce7da9e3.min.css.map",
"assets/stylesheets/overrides.css": "assets/stylesheets/overrides.2a4bbe42.min.css", "assets/stylesheets/overrides.css": "assets/stylesheets/overrides.2a4bbe42.min.css",
"assets/stylesheets/overrides.css.map": "assets/stylesheets/overrides.2a4bbe42.min.css.map", "assets/stylesheets/overrides.css.map": "assets/stylesheets/overrides.2a4bbe42.min.css.map",
"assets/stylesheets/palette.css": "assets/stylesheets/palette.3f72e892.min.css", "assets/stylesheets/palette.css": "assets/stylesheets/palette.31e6bbac.min.css",
"assets/stylesheets/palette.css.map": "assets/stylesheets/palette.3f72e892.min.css.map" "assets/stylesheets/palette.css.map": "assets/stylesheets/palette.31e6bbac.min.css.map"
} }

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -37,7 +37,7 @@
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.ce7da9e3.min.css' | url }}"> <link rel="stylesheet" href="{{ 'assets/stylesheets/main.ce7da9e3.min.css' | url }}">
{% if config.theme.palette %} {% if config.theme.palette %}
{% set palette = config.theme.palette %} {% set palette = config.theme.palette %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.3f72e892.min.css' | url }}"> <link rel="stylesheet" href="{{ 'assets/stylesheets/palette.31e6bbac.min.css' | url }}">
{% if palette.primary %} {% if palette.primary %}
{% import "partials/palette.html" as map %} {% import "partials/palette.html" as map %}
{% set primary = map.primary( {% set primary = map.primary(

View File

@ -24,8 +24,11 @@
// Rules // Rules
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Slate theme, i.e. dark mode // Only use dark mode on screens
[data-md-color-scheme="slate"] { @media screen {
// Slate theme, i.e. dark mode
[data-md-color-scheme="slate"] {
// Slate's hue in the range [0,360] - change this variable to alter the tone // Slate's hue in the range [0,360] - change this variable to alter the tone
// of the theme, e.g. to make it more redish or greenish. This is a slate- // of the theme, e.g. to make it more redish or greenish. This is a slate-
@ -72,4 +75,5 @@
// Footer color shades // Footer color shades
--md-footer-bg-color: hsla(var(--md-hue), 15%, 12%, 0.87); --md-footer-bg-color: hsla(var(--md-hue), 15%, 12%, 0.87);
--md-footer-bg-color--dark: hsla(var(--md-hue), 15%, 10%, 1); --md-footer-bg-color--dark: hsla(var(--md-hue), 15%, 10%, 1);
}
} }