blob: 8e09c6b9957f44f1bf85d24424dbdd24b0853d94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*!
Default styles for videojs-wavesurfer 2.5.1
*/
/* Position fullscreen control on right side of the player.
--------------------------------------------------------------------------------
*/
.video-js.vjs-wavesurfer .vjs-control.vjs-fullscreen-control {
position: absolute;
right: 0; }
/* Ensure custom controls are always visible because
the plugin hides and replace the video.js native mobile
controls.
--------------------------------------------------------------------------------
*/
.vjs-wavesurfer .vjs-using-native-controls .vjs-control-bar {
display: flex !important; }
/* Ensure playToggle has pointer cursor.
--------------------------------------------------------------------------------
*/
.vjs-wavesurfer button.vjs-play-control.vjs-control.vjs-button {
cursor: pointer; }
/* Ensure that vjs menus and interfaces can be interacted with (such as the
closed captions button).
--------------------------------------------------------------------------------
*/
.vjs-wavesurfer .vjs-menu-content {
z-index: 4; }
.vjs-wavesurfer .vjs-modal-dialog, .vjs-text-track-display {
z-index: 4; }
/* Handle responsive / fluid view.
--------------------------------------------------------------------------------
*/
.vjs-wavesurfer.vjs-fluid wave.vjs-wavedisplay {
top: 0;
position: absolute !important;
width: 100%;
min-width: 100%;
max-width: 100%;
height: 100%; }
/*# sourceMappingURL=videojs.wavesurfer.css.map*/
|