Fix MR widget ci status icon tooltip flicker

This commit is contained in:
Clement Ho 2018-07-16 17:38:35 -05:00
parent 7f0431dd85
commit 9a042ebe3a
No known key found for this signature in database
GPG key ID: BB456A3D0492E374
2 changed files with 3 additions and 1 deletions

View file

@ -175,6 +175,7 @@ export default {
<span
:aria-label="stage.title"
aria-hidden="true"
class="no-pointer-events"
>
<icon :name="borderlessIcon" />
</span>

View file

@ -128,7 +128,8 @@ table {
border-spacing: 0;
}
.tooltip {
.tooltip,
.no-pointer-events {
// Fix bootstrap4 bug whereby tooltips flicker when they are hovered over their borders
pointer-events: none;
}