Merge pull request #12529 from pedrobmarin/f-v-ti

fix(video): talking indicator
This commit is contained in:
Anton Georgiev 2021-06-06 14:45:21 -04:00 committed by GitHub
commit a6968df7f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 6 deletions

View File

@ -104,13 +104,8 @@
white-space: nowrap;
z-index: 1;
vertical-align: middle;
margin: 0 -0.25em 0 0;
border-radius: 1px;
opacity: 1;
[dir="rtl"] & {
margin: 0 0 0 -0.25em
}
}
.loadingText {

View File

@ -196,7 +196,11 @@ class VideoListItem extends Component {
{
!videoIsReady
&& (
<div data-test="webcamConnecting" className={styles.connecting}>
<div data-test="webcamConnecting" className={cx({
[styles.connecting]: true,
[styles.content]: true,
[styles.talking]: voiceUser.talking,
})}>
<span className={styles.loadingText}>{name}</span>
</div>
)