You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@sureshkumarAQ The selectors in the hint-core.scss file will need tweaking. In case the aria-label is empty, the :after element doesn't show because of undefined content value (content: attr(aria-label)). But the :before shows because it has valid content: ''.
To fix this we should change the showing of :after and :before to only when aria-label isn't undefined or empty string.
This hides the Tooltip:
<a class="hint--left" aria-label="">Left</a>
This does not hide the Tooltip:
<a class="hint--top">Top</a>
The text was updated successfully, but these errors were encountered: