mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 03:12:29 +00:00
Renames videocontainer overlay to hoverOverlay.
This commit is contained in:
@@ -81,7 +81,7 @@
|
||||
height: $thumbnailIndicatorSize + $toolbarPadding;
|
||||
}
|
||||
|
||||
.videocontainer__overlay {
|
||||
.videocontainer__hoverOverlay {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
@@ -255,7 +255,7 @@
|
||||
<audio id="localAudio" autoplay muted></audio>
|
||||
<div class="videocontainer__toolbar"></div>
|
||||
<div class="videocontainer__toptoolbar"></div>
|
||||
<div class="videocontainer__overlay"></div>
|
||||
<div class="videocontainer__hoverOverlay"></div>
|
||||
</span>
|
||||
<audio id="userJoined" src="sounds/joined.wav" preload="auto"></audio>
|
||||
<audio id="userLeft" src="sounds/left.wav" preload="auto"></audio>
|
||||
|
||||
@@ -577,7 +577,7 @@ RemoteVideo.createContainer = function (spanId) {
|
||||
container.appendChild(toolbar);
|
||||
|
||||
let overlay = document.createElement('div');
|
||||
overlay.className = "videocontainer__overlay";
|
||||
overlay.className = "videocontainer__hoverOverlay";
|
||||
container.appendChild(overlay);
|
||||
|
||||
var remotes = document.getElementById('remoteVideos');
|
||||
|
||||
@@ -512,7 +512,7 @@ SmallVideo.prototype.updateView = function () {
|
||||
// show hide overlay when there is a video or avatar under
|
||||
// the display name
|
||||
UIUtil.setVisibility( $('#' + this.videoSpanId
|
||||
+ ' .videocontainer__overlay'),
|
||||
+ ' .videocontainer__hoverOverlay'),
|
||||
(displayMode === DISPLAY_AVATAR_WITH_NAME
|
||||
|| displayMode === DISPLAY_VIDEO_WITH_NAME));
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user