videojs: make control bar slightly transparent.
## Issue Closes #5392 better support for non-standard resolution videos It's not actually cropped -- the control bar was opaque. ## Change Use 0.80 opacity to somewhat see the full picture. Using 0.5 or less would be even better, but due to the default tiny size of the control bar, the text becomes unreadable (it's readable if you zoom the browser to get larger text). Don't want to mess with sizing for now, so using 0.80 to get the best of both worlds.
This commit is contained in:
parent
9f9da5fd64
commit
0699c55229
1 changed files with 1 additions and 1 deletions
|
@ -387,7 +387,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.vjs-control-bar {
|
.vjs-control-bar {
|
||||||
background-color: #000000;
|
background-color: rgba(0, 0, 0, 0.8);
|
||||||
|
|
||||||
.vjs-remaining-time {
|
.vjs-remaining-time {
|
||||||
display: none;
|
display: none;
|
||||||
|
|
Loading…
Reference in a new issue