mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 20:26:24 +00:00
Force theming on tooltips for calling
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
|
||||
import React from 'react';
|
||||
import classNames from 'classnames';
|
||||
import { Tooltip, TooltipPlacement } from './Tooltip';
|
||||
import { Tooltip, TooltipPlacement, TooltipTheme } from './Tooltip';
|
||||
import { LocalizerType } from '../types/Util';
|
||||
|
||||
export enum CallingButtonType {
|
||||
@@ -60,7 +60,11 @@ export const CallingButton = ({
|
||||
);
|
||||
|
||||
return (
|
||||
<Tooltip content={tooltipContent} direction={tooltipDirection}>
|
||||
<Tooltip
|
||||
content={tooltipContent}
|
||||
direction={tooltipDirection}
|
||||
theme={TooltipTheme.Dark}
|
||||
>
|
||||
<button
|
||||
aria-label={tooltipContent}
|
||||
type="button"
|
||||
|
||||
Reference in New Issue
Block a user