Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/components/CallView/shared/LocalVideo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -411,9 +411,14 @@ export default {
}

.bad-connection-quality {
/* This adds black bars around the video depending on the resolution,
* but it's still better than having your half-transparent avatar
* shine an underlying video/avatar through it. */
background-color: #000000;

.video,
.avatar-container {
opacity: 0.5
opacity: 0.3
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would keep opacity to 0.5, as that value was set for consistency with the opacity of remote videos during an ICE disconnection.

}
}

Expand Down