Browse Source

ref: remove grayscale filter from participants thumbnails

master
paweldomas 4 years ago
parent
commit
18536cb14c
2 changed files with 0 additions and 18 deletions
  1. 0
    11
      css/_videolayout_default.scss
  2. 0
    7
      modules/UI/videolayout/RemoteVideo.js

+ 0
- 11
css/_videolayout_default.scss View File

@@ -181,12 +181,6 @@
181 181
         visibility: hidden;
182 182
         z-index: $zindex2;
183 183
     }
184
-
185
-    &.audio-only {
186
-        .videoThumbnailProblemFilter {
187
-            filter: none;
188
-        }
189
-    }
190 184
 }
191 185
 
192 186
 #localVideoWrapper {
@@ -573,11 +567,6 @@
573 567
     filter: grayscale(.5) opacity(0.8);
574 568
 }
575 569
 
576
-.videoThumbnailProblemFilter {
577
-    -webkit-filter: grayscale(100%);
578
-    filter: grayscale(100%);
579
-}
580
-
581 570
 #remotePresenceMessage,
582 571
 #remoteConnectionMessage {
583 572
     position: absolute;

+ 0
- 7
modules/UI/videolayout/RemoteVideo.js View File

@@ -435,13 +435,6 @@ export default class RemoteVideo extends SmallVideo {
435 435
         // Update 'mutedWhileDisconnected' flag
436 436
         this._figureOutMutedWhileDisconnected();
437 437
         this.updateConnectionStatus(connectionStatus);
438
-
439
-        const isInterrupted = connectionStatus === JitsiParticipantConnectionStatus.INTERRUPTED;
440
-
441
-        // Toggle thumbnail video problem filter
442
-
443
-        this.selectVideoElement().toggleClass('videoThumbnailProblemFilter', isInterrupted);
444
-        this.$avatar().toggleClass('videoThumbnailProblemFilter', isInterrupted);
445 438
     }
446 439
 
447 440
     /**

Loading…
Cancel
Save