Force theming on tooltips for calling
This commit is contained in:
parent
6a6f8e28ce
commit
8ff0ca9593
6 changed files with 60 additions and 21 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue