mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Fixed hidden content tabs when printing
This commit is contained in:
parent
c7fd099895
commit
c6a67ec093
@ -5,8 +5,8 @@
|
||||
"assets/javascripts/vendor.js.map": "assets/javascripts/vendor.a018d6bb.min.js.map",
|
||||
"assets/javascripts/worker/search.js": "assets/javascripts/worker/search.4ac00218.min.js",
|
||||
"assets/javascripts/worker/search.js.map": "assets/javascripts/worker/search.4ac00218.min.js.map",
|
||||
"assets/stylesheets/main.css": "assets/stylesheets/main.498e8cd6.min.css",
|
||||
"assets/stylesheets/main.css.map": "assets/stylesheets/main.498e8cd6.min.css.map",
|
||||
"assets/stylesheets/main.css": "assets/stylesheets/main.ce7da9e3.min.css",
|
||||
"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",
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
material/assets/stylesheets/main.ce7da9e3.min.css.map
Normal file
1
material/assets/stylesheets/main.ce7da9e3.min.css.map
Normal file
File diff suppressed because one or more lines are too long
@ -34,7 +34,7 @@
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
{% block styles %}
|
||||
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.498e8cd6.min.css' | url }}">
|
||||
<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 }}">
|
||||
|
@ -34,6 +34,12 @@
|
||||
width: 100%;
|
||||
box-shadow: 0 px2rem(-1px) var(--md-default-fg-color--lightest);
|
||||
|
||||
// Show all tabs when printing
|
||||
@media print {
|
||||
display: block;
|
||||
order: initial;
|
||||
}
|
||||
|
||||
// Mirror old superfences behavior, if there's only a single code block.
|
||||
> pre:only-child,
|
||||
> .codehilite:only-child pre,
|
||||
|
Loading…
Reference in New Issue
Block a user