1
0
mirror of https://github.com/videojs/video.js.git synced 2024-12-25 02:42:10 +02:00

fix: set width and height for vjs-button like the SubsCaps button (#4548)

Add a width and height property of 100% to `.vjs-control .vjs-button` selector.

Fixes #4547.
This commit is contained in:
Kishan 2017-08-11 00:49:59 +05:30 committed by Gary Katsevman
parent 998c0042cb
commit cd2f5106ca

View File

@ -15,3 +15,8 @@
-moz-appearance: none;
appearance: none;
}
.vjs-control .vjs-button {
width: 100%;
height: 100%;
}