mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-12 01:50:52 +01:00
Fixed default details marker showing due to Safari bug
This commit is contained in:
parent
cc04ddead0
commit
0b22e78832
File diff suppressed because one or more lines are too long
1
material/assets/stylesheets/main.62128196.min.css.map
Normal file
1
material/assets/stylesheets/main.62128196.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
@ -34,7 +34,7 @@
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
{% block styles %}
|
||||
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.816931ca.min.css' | url }}">
|
||||
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.62128196.min.css' | url }}">
|
||||
{% if config.theme.palette %}
|
||||
{% set palette = config.theme.palette %}
|
||||
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.9204c3b2.min.css' | url }}">
|
||||
|
@ -33,6 +33,6 @@
|
||||
"source.file.date.updated": "Senaste uppdaterad",
|
||||
"source.file.date.created": "Skapad",
|
||||
"tabs.title": "Flikar",
|
||||
"toc.title": "Innehållsförteckning"
|
||||
"toc.title": "Innehållsförteckning",
|
||||
"top.title": "Tillbaka till toppen"
|
||||
}[key] }}{% endmacro %}
|
||||
|
@ -109,8 +109,10 @@
|
||||
}
|
||||
}
|
||||
|
||||
// Hide native details marker
|
||||
&:is(::marker, ::-webkit-details-marker) {
|
||||
// Hide native details marker - Safari (iOS and macOS) does not seem to
|
||||
// like :is() on details elements, so just go with a selector list.
|
||||
&::marker,
|
||||
&::-webkit-details-marker {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user