Skip to content

Commit c7613dd

Browse files
authored
resolves #115 hide built-in arrow on summary element in Safari (PR #116)
1 parent f0ea3d8 commit c7613dd

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/css/base.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ button::-moz-focus-inner {
9292
summary {
9393
cursor: pointer;
9494
-webkit-tap-highlight-color: transparent;
95+
outline: none;
9596
}
9697

9798
table {

src/css/doc.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -657,6 +657,10 @@
657657
margin-bottom: 0.5rem;
658658
}
659659

660+
.doc details > summary::-webkit-details-marker {
661+
display: none;
662+
}
663+
660664
.doc details > summary::before {
661665
content: "";
662666
border: solid transparent;

0 commit comments

Comments
 (0)