mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
Fleet UI: Safari hack to be able to triple click tooltip (#9466)
This commit is contained in:
parent
357c0484fc
commit
d9165084eb
@ -55,7 +55,11 @@ const TruncatedTextCell = ({
|
||||
clickable
|
||||
delayHide={200} // need delay set to hover using clickable
|
||||
>
|
||||
{value}
|
||||
<>
|
||||
{value}
|
||||
<div className="safari-hack"> </div>
|
||||
{/* Fixes triple click selecting next element in Safari */}
|
||||
</>
|
||||
</ReactTooltip>
|
||||
</div>
|
||||
);
|
||||
|
@ -27,6 +27,10 @@
|
||||
overflow-wrap: break-word;
|
||||
display: block;
|
||||
white-space: pre-wrap;
|
||||
|
||||
.safari-hack {
|
||||
height: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: $break-990) {
|
||||
|
Loading…
Reference in New Issue
Block a user