improved color scheme for embed player

This commit changes the colors of the play button on the embed video player to blend better with other websites. This relates to Issue #3706
This commit is contained in:
Michael Tunnell 2020-02-19 22:20:14 -06:00 committed by Sean Yesmunt
parent bbd263c441
commit 73d6fd9e90

View file

@ -167,6 +167,7 @@
.vjs-big-play-button {
@extend .button--icon;
@extend .button--play;
background-color: rgba(0,0,0,0.6);
border: none;
position: static;
z-index: 2;
@ -176,6 +177,13 @@
}
}
}
.video-js:hover {
.vjs-big-play-button {
background-color: rgba(var(--color-primary),0.6);
}
}
}
.video-overlay__wrapper {