tooltip icon indicating copy to clipboard operation
tooltip copied to clipboard

How to remove arrow in the tooltip ?

Open jegang opened this issue 5 years ago • 2 comments

I don't want the arrow in the tooltip. Can you please let me know how to remove the arrow in the tooltip ? Any help on this issue is really appreciated. Thanks in advance.

jegang avatar May 15 '19 00:05 jegang

Can override the style:

.rc-tooltip-arrow { display: none; }

colinwurtz avatar Jun 25 '19 17:06 colinwurtz

<span data-tip="test" data-class="tool-tip"></span>

.tool-tip::before {
  border-right: none !important;
}

justinherrera avatar May 18 '21 04:05 justinherrera