mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Fixed unreadable print view when using dark mode
This commit is contained in:
parent
c6a67ec093
commit
ab60de2b61
@ -9,6 +9,6 @@
|
||||
"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.map": "assets/stylesheets/overrides.2a4bbe42.min.css.map",
|
||||
"assets/stylesheets/palette.css": "assets/stylesheets/palette.3f72e892.min.css",
|
||||
"assets/stylesheets/palette.css.map": "assets/stylesheets/palette.3f72e892.min.css.map"
|
||||
"assets/stylesheets/palette.css": "assets/stylesheets/palette.31e6bbac.min.css",
|
||||
"assets/stylesheets/palette.css.map": "assets/stylesheets/palette.31e6bbac.min.css.map"
|
||||
}
|
File diff suppressed because one or more lines are too long
1
material/assets/stylesheets/palette.31e6bbac.min.css.map
Normal file
1
material/assets/stylesheets/palette.31e6bbac.min.css.map
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -37,7 +37,7 @@
|
||||
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.ce7da9e3.min.css' | url }}">
|
||||
{% if 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 %}
|
||||
{% import "partials/palette.html" as map %}
|
||||
{% set primary = map.primary(
|
||||
|
@ -24,8 +24,11 @@
|
||||
// Rules
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
// Slate theme, i.e. dark mode
|
||||
[data-md-color-scheme="slate"] {
|
||||
// Only use dark mode on screens
|
||||
@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
|
||||
// of the theme, e.g. to make it more redish or greenish. This is a slate-
|
||||
@ -72,4 +75,5 @@
|
||||
// Footer color shades
|
||||
--md-footer-bg-color: hsla(var(--md-hue), 15%, 12%, 0.87);
|
||||
--md-footer-bg-color--dark: hsla(var(--md-hue), 15%, 10%, 1);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user