mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-24 07:30:12 +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 %}
|
{% endif %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block styles %}
|
{% 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 %}
|
{% if config.theme.palette %}
|
||||||
{% set palette = config.theme.palette %}
|
{% set palette = config.theme.palette %}
|
||||||
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.9204c3b2.min.css' | url }}">
|
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.9204c3b2.min.css' | url }}">
|
||||||
|
@ -33,6 +33,6 @@
|
|||||||
"source.file.date.updated": "Senaste uppdaterad",
|
"source.file.date.updated": "Senaste uppdaterad",
|
||||||
"source.file.date.created": "Skapad",
|
"source.file.date.created": "Skapad",
|
||||||
"tabs.title": "Flikar",
|
"tabs.title": "Flikar",
|
||||||
"toc.title": "Innehållsförteckning"
|
"toc.title": "Innehållsförteckning",
|
||||||
"top.title": "Tillbaka till toppen"
|
"top.title": "Tillbaka till toppen"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
@ -109,8 +109,10 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Hide native details marker
|
// Hide native details marker - Safari (iOS and macOS) does not seem to
|
||||||
&:is(::marker, ::-webkit-details-marker) {
|
// like :is() on details elements, so just go with a selector list.
|
||||||
|
&::marker,
|
||||||
|
&::-webkit-details-marker {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user