[ruby/rdoc] Remove details markers in HTML documents

`summary {list-style: none;}` still does not work in Safari 18.

https://github.com/ruby/rdoc/commit/c6a0a6a0d5
This commit is contained in:
Nobuyoshi Nakada 2024-10-25 16:05:02 +09:00 коммит произвёл git
Родитель 0d7f746097
Коммит 10e0ebc7c2
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -258,6 +258,10 @@ nav ul li details > summary {
position: relative; /* So that the open/close triangle can position itself absolutely inside */
}
nav ul li details > summary::-webkit-details-marker {
display: none; /* Removes the default marker, in Safari 18. */
}
nav ul li details > summary::after {
content: '▶'; /* Unicode right-pointing triangle */
position: absolute;