bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/external-video-player/styles.scss

72 lines
1.1 KiB
SCSS
Raw Normal View History

@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;
}
}
.mobileControlsOverlay {
position: absolute;
top:0;
left: 0;
width: 100%;
height: 100%;
background-color: transparent;
2021-03-17 00:56:12 +08:00
}
.showMobileHoverToolbar {
display: flex;
z-index: 2;
}
.dontShowMobileHoverToolbar {
display: none;
}
.videoPlayerWrapper {
position: relative;
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;
}
}
.fullscreen {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: 99;
}
.autoPlayWarning {
position: absolute;
z-index: 100;
font-size: x-large;
color: white;
width: 100%;
background-color: rgba(6,23,42,0.5);
bottom: 20%;
vertical-align: middle;
text-align: center;
pointer-events: none;
}