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

128 lines
2.0 KiB
SCSS
Raw Normal View History

2019-03-05 01:29:40 +08:00
:root {
2019-03-01 05:39:57 +08:00
--overlay-width: 10vw;
--overlay-min-width: 175px;
--overlay-max-width: 10vw;
--overlay-ratio: calc(4 / 3);
}
2016-07-28 05:50:35 +08:00
@import "../../stylesheets/variables/_all";
2016-05-03 06:42:54 +08:00
.container {
2018-04-10 02:28:54 +08:00
order: 1;
2016-05-03 06:42:54 +08:00
flex: 2;
2018-04-10 02:28:54 +08:00
display: flex;
align-items: center;
justify-content: center;
flex-direction: column-reverse;
}
.content {
display: flex;
align-self: stretch;
2019-03-01 05:39:57 +08:00
flex: 4;
align-items: center;
justify-content: center;
overflow: auto;
2018-04-10 02:28:54 +08:00
width: 100%;
position: relative;
2019-03-01 05:39:57 +08:00
order: 2;
2018-04-10 02:28:54 +08:00
}
.overlay {
flex: 1;
display: flex;
2019-03-05 01:29:40 +08:00
width: 100%;
2019-03-01 05:39:57 +08:00
border: 0;
margin-top: 10px;
margin-bottom: 10px;
// max-height: 10vh;
2019-03-05 01:29:40 +08:00
}
2018-04-12 20:41:49 +08:00
2019-03-05 01:29:40 +08:00
.overlayRelative{
position: relative;
}
2018-04-10 02:28:54 +08:00
2019-03-05 01:29:40 +08:00
.overlayAbsolute{
position: absolute;
height: calc(var(--overlay-width) / var(--overlay-ratio));
min-height: calc(var(--overlay-min-width) / var(--overlay-ratio));
max-height: calc(var(--overlay-max-width) / var(--overlay-ratio));
}
.overlayToTop {
order: 3;
}
.overlayToBottom {
order: 1;
}
.hideOverlay {
visibility: hidden;
position: absolute;
overflow: hidden;
clip: rect(0 0 0 0);
height: 1px; width: 1px;
margin: -1px; padding: 0; border: 0;
2019-03-05 01:29:40 +08:00
}
2018-04-10 02:28:54 +08:00
.floatingOverlay {
2019-03-01 05:39:57 +08:00
margin: 10px;
2018-04-10 02:28:54 +08:00
@include mq($medium-up) {
2018-12-26 19:33:00 +08:00
z-index: 999;
2019-03-01 05:39:57 +08:00
position: absolute;
bottom: 0;
right: 0;
width: var(--overlay-width);
min-width: var(--overlay-min-width);
max-width: var(--overlay-max-width);
height: calc(var(--overlay-width) / var(--overlay-ratio));
min-height: calc(var(--overlay-min-width) / var(--overlay-ratio));
max-height: calc(var(--overlay-max-width) / var(--overlay-ratio));
2018-04-10 02:28:54 +08:00
}
2016-05-03 06:42:54 +08:00
}
2019-03-01 05:39:57 +08:00
2019-03-05 01:29:40 +08:00
.hide {
2019-03-01 05:39:57 +08:00
display: none;
}
2019-03-05 01:29:40 +08:00
.show {
2019-03-01 05:39:57 +08:00
display: block;
}
2019-03-05 01:29:40 +08:00
.top {
2019-03-01 05:39:57 +08:00
top: 0;
}
2019-03-05 01:29:40 +08:00
.bottom {
2019-03-01 05:39:57 +08:00
bottom: 0;
}
2019-03-05 01:29:40 +08:00
.dragging {
2019-03-01 05:39:57 +08:00
opacity: .5;
}
.dropZoneTop,
2019-03-05 01:29:40 +08:00
.dropZoneBottom {
2019-03-01 05:39:57 +08:00
border: 1px dashed var(--color-gray-light);
position: absolute;
width: 100%;
z-index: 9999;
cursor: grabbing;
}
2019-03-05 01:29:40 +08:00
.dropZoneTop {
2019-03-01 05:39:57 +08:00
top: 0;
}
2019-03-05 01:29:40 +08:00
.dropZoneBottom {
2019-03-01 05:39:57 +08:00
bottom: 0;
}
2019-03-05 01:29:40 +08:00
.dropZoneBg {
2019-03-01 05:39:57 +08:00
position: absolute;
z-index: 99;
width: 100%;
2019-03-05 01:29:40 +08:00
background-color: rgba(255, 255, 255, .3);
2019-03-01 05:39:57 +08:00
}