From f9d8ba9a7d418468a55c422cb05f0628ed0a223f Mon Sep 17 00:00:00 2001 From: Jared Christensen Date: Wed, 29 Jul 2015 22:05:07 -0500 Subject: [PATCH] Fix for issue #16871 This will prevent a long word from breaking the tooltip --- less/tooltip.less | 2 ++ 1 file changed, 2 insertions(+) diff --git a/less/tooltip.less b/less/tooltip.less index b48d63e07ad8..ab3dcc246b2a 100644 --- a/less/tooltip.less +++ b/less/tooltip.less @@ -48,6 +48,8 @@ margin-left: -@tooltip-arrow-width; border-width: @tooltip-arrow-width @tooltip-arrow-width 0; border-top-color: @tooltip-arrow-color; + overflow: hidden; + text-overflow: ellipsis; } &.top-left .tooltip-arrow { bottom: 0;