Merge branch '49165-pipeline-graph-in-new-merge-request-widget-is-flickering' into 'master'

Resolve "Pipeline graph in new merge request widget is flickering"

Closes #49165

See merge request gitlab-org/gitlab-ce!20660
This commit is contained in:
Annabel Gray 2018-07-17 15:01:50 +00:00
commit 6fdc6976ec
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;
}