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

40 lines
665 B
SCSS

@import "/imports/ui/stylesheets/mixins/focus";
@import "/imports/ui/stylesheets/variables/_all";
.hoverToolbar {
display: none;
:hover > & {
display: flex;
}
}
.videoPlayerWrapper {
position: relative;
}
.videoPlayer 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;
}
.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;
}