fixed a variable conflict for embed play button

This fix addresses a problem with the color variable "var(--color-primary)" being used in the hover element. The output of the variable is not compatible with the rgba modification from the previous code. This commit fixes this bug in relation to Issue #3706
This commit is contained in:
Michael Tunnell 2020-02-20 14:39:15 -06:00 committed by Sean Yesmunt
parent ea8b63e96f
commit e44eef8c21

View file

@ -181,7 +181,7 @@
.video-js:hover {
.vjs-big-play-button {
background-color: rgba(var(--color-primary),0.6);
background-color: var(--color-primary);
}
}
}