Remove user agent summary arrow (#132)

* - Add rule to remove user agent details arrow
* - Remove docs.css specific rule that fixed this
This commit is contained in:
Isiah Lloyd 2022-05-21 20:56:45 -04:00 committed by GitHub
parent e90bc335d6
commit ec33cdb93b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View file

@ -102,10 +102,6 @@ summary {
display: inline;
}
summary::-webkit-details-marker {
display: none;
}
details[open] summary {
margin-bottom: 8px;
}

View file

@ -695,6 +695,10 @@ ul.tree-view details[open] > summary:before {
content: "-";
}
ul.tree-view details > summary::marker, ul.tree-view details > summary::-webkit-details-marker {
content: "";
}
pre {
display: block;
background: var(--button-highlight);