0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-25 02:31:59 -05:00

Renamed generic class names for video card

refs https://github.com/TryGhost/Team/issues/1229
This commit is contained in:
Rishabh 2021-12-13 18:55:53 +05:30
parent cd238c64ba
commit 7e061cee39
2 changed files with 2 additions and 2 deletions

View file

@ -40,7 +40,7 @@
background: transparent;
}
.kg-player {
.kg-video-player {
display: flex;
flex-grow: 1;
align-items: center;

View file

@ -1,6 +1,6 @@
(function() {
const handleVideoPlayer = function (videoElementContainer) {
const videoPlayerContainer = videoElementContainer.querySelector('.kg-player');
const videoPlayerContainer = videoElementContainer.querySelector('.kg-video-player');
const playIconContainer = videoElementContainer.querySelector('.kg-video-play-icon');
const pauseIconContainer = videoElementContainer.querySelector('.kg-video-pause-icon');
const seekSlider = videoElementContainer.querySelector('.kg-video-seek-slider');