bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/screenshare/styles.scss
Max Franke 5d0ae8ff04 feat(screenshare): change loading icon
Change the previous loading spinner to the new loading dots, ensuring
a bit more UI consistency.
Add the "unhealthy stream" filter to make the dots a little more visible and
remove the loading spinner.
2021-07-09 14:51:38 -03:00

56 lines
1.0 KiB
SCSS
Executable File

@import "/imports/ui/components/media/styles";
@import '/imports/ui/components/loading-screen/styles';
.screenshareContainer {
display: flex;
align-items: center;
justify-content: center;
background-color: var(--color-content-background);
width: 100%;
height: 100%;
}
.screenshareContainerPresenter {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: var(--color-content-background);
width: 100%;
height: 100%;
}
.screenshareContainerInside {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
}
.mainText {
color: var(--color-white);
font-size: 2rem;
}
.screenshareContainerDefault {
position: absolute;
align-items: center;
justify-content: center;
padding-top: 4rem;
}
.unhealthyStream {
filter: grayscale(50%) opacity(50%);
}
.spinnerWrapper {
position: absolute;
display: flex;
align-items: center;
justify-content: center;
z-index: 1;
width: 100%;
height: 100%;
}