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

89 lines
1.3 KiB
SCSS
Raw Normal View History

@import "/imports/ui/stylesheets/variables/_all";
2016-05-21 00:35:15 +08:00
.videoDock {
position: absolute;
2018-02-06 03:52:07 +08:00
width: 100%;
top: 0;
right: 0;
2016-05-20 23:02:57 +08:00
background-size: cover;
background-position: center;
2018-02-06 03:52:07 +08:00
text-align: center;
@include mq($portrait) {
height: 96px;
}
}
.videoDock video {
height: auto;
width: auto;
max-height: 100%;
max-width: 100%;
display: block;
margin: 0 auto;
}
.webcamArea {
@include mq($portrait) {
position: absolute;
margin: 0 auto;
left: 0;
right: 0;
bottom: 0;
background: #04111F;
}
}
2017-09-01 23:26:57 +08:00
.sharedWebcamVideo {
display: none;
2018-02-06 03:52:07 +08:00
vertical-align: middle;
2017-09-01 23:26:57 +08:00
}
.sharedWebcamVideoLocal {
2018-02-06 03:52:07 +08:00
display: inline-block;
}
.videoContainer {
2018-02-06 03:52:07 +08:00
background-color: #000;
}
.videoText {
2018-02-06 03:52:07 +08:00
margin-top: -22px;
padding: 0 5px;
z-index: 1;
text-align: left;
}
.userName {
color: #FFFFFF;
background: #555;
padding: 3px 8px;
border-radius: 0.75rem;
font-size: 10px;
line-height: 13px;
2018-02-06 03:52:07 +08:00
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
position: relative;
display: inline-block;
max-width: 100%;
}
.pauseButton {
float: right;
span:last-child {
display: none;
} // TODO fix it better
span:first-child {
background: #D8D8D8;
border: 1px solid #555;
i {
font-size: 11px; // TODO size should be set on button?
color: #555;
}
}
}