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:
parent
ea8b63e96f
commit
e44eef8c21
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@
|
|||
.video-js:hover {
|
||||
|
||||
.vjs-big-play-button {
|
||||
background-color: rgba(var(--color-primary),0.6);
|
||||
background-color: var(--color-primary);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue