Adjust remote access tooltip colors
This commit is contained in:
parent
ea5fb35762
commit
6c0f854a69
1 changed files with 8 additions and 8 deletions
|
|
@ -1338,20 +1338,20 @@ export function TicketSummaryHeader({ ticket }: TicketHeaderProps) {
|
|||
</span>
|
||||
</Button>
|
||||
</TooltipTrigger>
|
||||
<TooltipContent className="max-w-xs space-y-1 rounded-xl border border-sidebar-ring/20 bg-sidebar-accent/90 px-3 py-2 text-left text-xs text-white shadow-lg backdrop-blur">
|
||||
<p className="text-sm font-semibold text-white">Acesso remoto</p>
|
||||
<TooltipContent className="max-w-xs space-y-1 rounded-xl border border-sidebar-ring/20 bg-white px-3 py-2 text-left text-xs text-neutral-900 shadow-lg">
|
||||
<p className="text-sm font-semibold text-neutral-900">Acesso remoto</p>
|
||||
{remoteShortcutHostname ? (
|
||||
<p className="text-xs text-white/90">
|
||||
<span className="font-semibold text-white">Host:</span> {remoteShortcutHostname}
|
||||
<p className="text-xs text-neutral-700">
|
||||
<span className="font-semibold text-neutral-900">Host:</span> {remoteShortcutHostname}
|
||||
</p>
|
||||
) : null}
|
||||
{remoteShortcutAccess?.identifier ? (
|
||||
<p className="text-xs text-white/90">
|
||||
<span className="font-semibold text-white">ID RustDesk:</span> {remoteShortcutAccess.identifier}
|
||||
<p className="text-xs text-neutral-700">
|
||||
<span className="font-semibold text-neutral-900">ID RustDesk:</span> {remoteShortcutAccess.identifier}
|
||||
</p>
|
||||
) : null}
|
||||
<p className="text-xs text-white/90">
|
||||
<span className="font-semibold text-white">Status:</span> {remoteShortcutStatusLabel}
|
||||
<p className="text-xs text-neutral-700">
|
||||
<span className="font-semibold text-neutral-900">Status:</span> {remoteShortcutStatusLabel}
|
||||
</p>
|
||||
</TooltipContent>
|
||||
</Tooltip>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue