19 lines
341 B
SCSS
19 lines
341 B
SCSS
![]() |
.video-js .vjs-play-control {
|
||
|
cursor: pointer;
|
||
|
@include flex(none);
|
||
|
}
|
||
|
.video-js .vjs-play-control {
|
||
|
&:before {
|
||
|
font-family: $icon-font-family;
|
||
|
content: '\e60e';
|
||
|
}
|
||
|
//@extend .vjs-icon-play;
|
||
|
}
|
||
|
.video-js .vjs-play-control.vjs-playing {
|
||
|
//@extend .vjs-icon-pause;
|
||
|
&:before {
|
||
|
font-family: $icon-font-family;
|
||
|
content: '\e60b';
|
||
|
}
|
||
|
}
|