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:
parent
b6fbf9bd4b
commit
c3b648f975
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue