fix(audioPlaybackSpeed): copy hover color behavior

This commit is contained in:
D3SOX 2024-06-01 18:18:16 +02:00
parent 5347356634
commit 8846d70247
No known key found for this signature in database
GPG key ID: 39EC1673FC37B048
2 changed files with 6 additions and 1 deletions

View file

@ -10,7 +10,7 @@ function SpeedIcon() {
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="#e8eaed"
fill="currentColor"
viewBox="0 -960 960 960"
>
<path d="M418-340q24 24 62 23.5t56-27.5l224-336-336 224q-27 18-28.5 55t22.5 61zm62-460q59 0 113.5 16.5T696-734l-76 48q-33-17-68.5-25.5T480-720q-133 0-226.5 93.5T160-400q0 42 11.5 83t32.5 77h552q23-38 33.5-79t10.5-85q0-36-8.5-70T766-540l48-76q30 47 47.5 100T880-406q1 57-13 109t-41 99q-11 18-30 28t-40 10H204q-21 0-40-10t-30-28q-26-45-40-95.5T80-400q0-83 31.5-155.5t86-127Q252-737 325-768.5T480-800zm7 313z"></path>

View file

@ -2,4 +2,9 @@
background-color: transparent;
height: 100%;
z-index: 2;
color: var(--interactive-normal);
}
.vc-audio-playback-speed-icon:hover{
color: var(--interactive-active);
}