1
Fork 0

rustdoc: use the regular arrow indicator for dir-entry CSS

This mostly reverts 468acca108, while still
fixing the problem it fixed by using an internal list-style-position. It
results in a slight change in the hover indicator, but nothing misleading.
This commit is contained in:
Michael Howell 2022-12-30 11:58:58 -07:00
parent 7c991868c6
commit dd0f5882d9

View file

@ -1391,31 +1391,10 @@ details.dir-entry {
padding-left: 4px;
}
details.dir-entry > summary::after {
content: " ►";
position: absolute;
left: -15px;
top: 0px;
font-size: 80%;
padding: 2px 0px;
/* set width to cover gap between arrow and text */
width: 25px;
}
details[open].dir-entry > summary::after {
content: " ▼";
}
details.dir-entry > summary::-webkit-details-marker,
details.dir-entry > summary::marker {
display: none;
}
details.dir-entry > summary {
margin: 0 0 0 13px;
list-style: none;
margin: 0 0 0 -4px;
padding: 0 0 0 4px;
cursor: pointer;
position: relative;
}
details.dir-entry div.folders, details.dir-entry div.files {