Changing the audio triangle shape

Hi guys,
Is there any way to change these big triangles or make them smaller?

Same with the “solution arrows”, i havent found a way to customize them.

aHR0cHM6Ly9hd3MxLmRpc2NvdXJzZS1jZG4uY29tL3N0YW5kYXJkMTEvdXBsb2Fkcy9hbmtpMi9vcHRpbWl6ZWQvMlgvYi9iOGI3OGM3NzgyMjU5MmQ0YzhkY2FjZmRkYTEwNzZjZGFlMDNlOTg3XzJfNjkweDM3MC5wbmc_

@Panda the class of the replay button is replay-button, so you can scale it like this:

.replay-button {
  transform: scale(0.8);
}

To change the icon, you can put a custom icon into your collection.media folder (prefix the file name with an underscore to prevent deletion on “Check Media”) and use it as background-image to display it instead of the default one:

.playImage {
  visibility: hidden;
}
.replay-button {
  background-image: url("_speaker.png");
  background-size: contain;
}

@Nici for your solution arrow, that would be:

#typearrow {
  color: red; /*<- or whatever */
}
7 Likes

@kleinerpirat Great, Thank you very much

1 Like