holden321
holden321

Reputation: 1183

HTML5 Video - Shadow DOM - Change CSS styles

I want to style the slider thumb of video control in Chrome.
The css path

video::-webkit-media-slider-thumb

doesn't work.

Playground: http://jsfiddle.net/holden321/27fUR/

Upvotes: 1

Views: 2654

Answers (1)

Enethion
Enethion

Reputation: 1257

Here you go :)

video::-webkit-media-controls-timeline::-webkit-media-slider-thumb {
    background:red; /* works */
}

That's because slider-thumb is "child" of timeline :)

Upvotes: 1

Related Questions