Experimental "read only" room support
This commit is contained in:
parent
490c436e09
commit
0b84bf3caa
8 changed files with 169 additions and 17 deletions
|
|
@ -295,6 +295,19 @@ body {
|
|||
}
|
||||
}
|
||||
|
||||
.input-area-read-only {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-color: rgba(white, 0.8);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 40;
|
||||
}
|
||||
|
||||
@media #{map-get($display-breakpoints, 'sm-and-down')} {
|
||||
position: fixed;
|
||||
bottom: 0px;
|
||||
|
|
@ -1466,6 +1479,21 @@ body {
|
|||
.mic-button {
|
||||
z-index: 0;
|
||||
}
|
||||
.mic-button.dimmed {
|
||||
opacity: 0.5;
|
||||
}
|
||||
.toast-read-only {
|
||||
position: fixed;
|
||||
left: 10px;
|
||||
right: 10px;
|
||||
bottom: 10px;
|
||||
background-color: rgba(black, 0.7);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 40;
|
||||
color: white;
|
||||
}
|
||||
}
|
||||
|
||||
.audio-layout.voice-recorder {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue