Reputation: 2017
I'm trying to style the duration of SoundCloud players (Stylish or Tampermonkey).
I dunno canvas enough. How can I style the duration in color and size?
It is the last canvas in .waveform__layer
<div class="waveform__layer waveform__scene">
<canvas aria-hidden="true" class="g-box-full sceneLayer" width="900" height="110"></canvas>
<canvas aria-hidden="true" class="g-box-full sceneLayer waveformCommentsNode loaded" width="900" height="110"></canvas>
<canvas aria-hidden="true" class="g-box-full sceneLayer" width="900" height="110"></canvas>
</div>
Example page: https://soundcloud.com/kenny-dope/fmg-1-side-b-set-if-off-7-instrumental-strafe
Upvotes: 0
Views: 356
Reputation: 13906
You can't, the canvas part is styled with JavaScript, so not possible with Stylish.
Upvotes: 1