Skip to content

Commit

Permalink
Replace default marker with animated one
Browse files Browse the repository at this point in the history
  • Loading branch information
aazuspan committed Dec 6, 2024
1 parent f52468b commit bc2ea15
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions eerepr/static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,23 @@ body.vscode-dark {
.ee-v {
color: var(--font-color-primary);
}

.ee details > summary::before {
content: '▼';
display: inline-block;
margin-right: 6px;
transition: transform 0.2s;
transform: rotate(-90deg);
}

.ee details[open] > summary::before {
transform: rotate(0deg);
}

.ee details summary::-webkit-details-marker {
display:none;
}

.ee details summary {
list-style-type: none;
}

0 comments on commit bc2ea15

Please sign in to comment.