bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/webcam/styles.scss

29 lines
363 B
SCSS
Raw Normal View History

2021-07-13 20:56:39 +08:00
%resizable {
&:hover {
background-color: rgba(255, 255, 255, .3);
}
}
.resizeWrapperH {
div {
@extend %resizable;
width: 100% !important;
}
}
2021-07-13 20:30:10 +08:00
2021-07-13 20:56:39 +08:00
.resizeWrapperV {
div {
@extend %resizable;
height: 100% !important;
2021-07-13 20:30:10 +08:00
}
2021-07-13 20:56:39 +08:00
}
2021-07-13 20:30:10 +08:00
.draggable {
video {
cursor: grabbing;
}
}
.draggingBg {
2021-07-13 20:30:10 +08:00
background-color: rgba(200, 200, 200, 0.5);
}