Group calling: fix participant hover state

This commit is contained in:
Josh Perez 2020-11-20 15:24:55 -05:00 committed by Josh Perez
parent daef1feae8
commit 34574583b6
5 changed files with 25 additions and 19 deletions

View file

@ -2,7 +2,6 @@
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import { Tooltip, TooltipTheme } from './Tooltip';
import { CallingPipRemoteVideo } from './CallingPipRemoteVideo';
import { LocalizerType } from '../types/Util';
import { VideoFrameSource } from '../types/Calling';
@ -184,16 +183,14 @@ export const CallingPip = ({
}}
type="button"
/>
<Tooltip content={i18n('calling__pip--off')} theme={TooltipTheme.Dark}>
<button
aria-label={i18n('calling__pip--off')}
className="module-calling-pip__button--pip"
onClick={togglePip}
type="button"
>
<div />
</button>
</Tooltip>
<button
aria-label={i18n('calling__pip--off')}
className="module-calling-pip__button--pip"
onClick={togglePip}
type="button"
>
<div />
</button>
</div>
</div>
);