1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-12 01:50:52 +01:00

Replaced deprecated -webkit-details-marker (#2285)

[Deprecation] ::-webkit-details-marker pseudo element selector is deprecated. Please use ::marker instead. See https://chromestatus.com/feature/6730096436051968 for more details.
This commit is contained in:
Benjamin Staneck 2021-02-11 20:33:15 +01:00 committed by GitHub
parent 7ede86eba1
commit 07c4379221
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@
}
// Hide native details marker
&::-webkit-details-marker {
&::marker {
display: none;
}
}

View File

@ -595,7 +595,7 @@
}
// Hide native details marker
&::-webkit-details-marker {
&::marker {
display: none;
}