2018-11-30 01:24:02 +08:00
|
|
|
@import "/imports/ui/stylesheets/mixins/focus";
|
|
|
|
@import "/imports/ui/stylesheets/variables/_all";
|
|
|
|
|
2021-03-17 00:56:12 +08:00
|
|
|
.hoverToolbar {
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
:hover > & {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-06 04:19:27 +08:00
|
|
|
.mobileControlsOverlay {
|
|
|
|
position: absolute;
|
|
|
|
top:0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: transparent;
|
2021-03-17 00:56:12 +08:00
|
|
|
}
|
|
|
|
|
2021-08-06 04:19:27 +08:00
|
|
|
.showMobileHoverToolbar {
|
2018-11-30 01:24:02 +08:00
|
|
|
display: flex;
|
2021-08-06 04:19:27 +08:00
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
.dontShowMobileHoverToolbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.videoPlayerWrapper {
|
2018-11-30 01:24:02 +08:00
|
|
|
position: relative;
|
2021-08-06 04:19:27 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.videoPlayer {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
& iframe {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
position: relative;
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
|
|
|
border-style: none;
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
2018-11-30 01:24:02 +08:00
|
|
|
}
|
2019-10-08 01:45:16 +08:00
|
|
|
|
2021-10-29 04:08:47 +08:00
|
|
|
.fullscreen {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
z-index: 99;
|
|
|
|
}
|
|
|
|
|
2019-10-08 01:45:16 +08:00
|
|
|
.autoPlayWarning {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 100;
|
2019-10-17 01:16:25 +08:00
|
|
|
font-size: x-large;
|
2019-10-08 01:45:16 +08:00
|
|
|
color: white;
|
|
|
|
width: 100%;
|
|
|
|
background-color: rgba(6,23,42,0.5);
|
2019-10-17 01:16:25 +08:00
|
|
|
bottom: 20%;
|
2019-10-08 01:45:16 +08:00
|
|
|
vertical-align: middle;
|
|
|
|
text-align: center;
|
2019-10-17 01:16:25 +08:00
|
|
|
pointer-events: none;
|
2019-10-08 01:45:16 +08:00
|
|
|
}
|