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
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;
}