stylesheets: hide summary details marker on procedure summary

Chrome needs a specific syntax, but other browsers use the standard way.

See developer.mozilla.org/fr/docs/Web/HTML/Element/details#Personnaliser_le_marqueur_de_r%C3%A9v%C3%A9lation
This commit is contained in:
Pierre de La Morinerie 2020-07-06 18:09:41 +02:00
parent b6fbf9bd4b
commit c3b648f975

View file

@ -51,6 +51,9 @@ $procedure-description-line-height: 22px;
summary {
font-size: 20px;
// Hide the default triangle details marker
list-style: none;
// (using the non-standard way for Chrome.)
&::-webkit-details-marker {
display: none;
}