summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Ho <clemmakesapps@gmail.com>2018-06-29 20:34:10 +0000
committerMike Greiling <mike@pixelcog.com>2018-06-29 20:34:10 +0000
commitf2cf9b9ee1068c615bdbd88d9196013b1df7f5e9 (patch)
tree87d7d20558125ef7341cf134ca0991dd6db3e7dc
parentfb770344b3bc8100e241aad5103aee59dd0d8a07 (diff)
downloadgitlab-ce-f2cf9b9ee1068c615bdbd88d9196013b1df7f5e9.tar.gz
Fix tooltip flicker
-rw-r--r--app/assets/stylesheets/bootstrap_migration.scss5
-rw-r--r--changelogs/unreleased/fix-tooltip-flicker.yml5
2 files changed, 10 insertions, 0 deletions
diff --git a/app/assets/stylesheets/bootstrap_migration.scss b/app/assets/stylesheets/bootstrap_migration.scss
index f610a1aea08..ded33e8b151 100644
--- a/app/assets/stylesheets/bootstrap_migration.scss
+++ b/app/assets/stylesheets/bootstrap_migration.scss
@@ -128,6 +128,11 @@ table {
border-spacing: 0;
}
+.tooltip {
+ // Fix bootstrap4 bug whereby tooltips flicker when they are hovered over their borders
+ pointer-events: none;
+}
+
.popover {
font-size: 14px;
}
diff --git a/changelogs/unreleased/fix-tooltip-flicker.yml b/changelogs/unreleased/fix-tooltip-flicker.yml
new file mode 100644
index 00000000000..c94723d83df
--- /dev/null
+++ b/changelogs/unreleased/fix-tooltip-flicker.yml
@@ -0,0 +1,5 @@
+---
+title: Fix tooltip flickering bug
+merge_request:
+author:
+type: fixed