From 87edaf295c44bbd5fa6ae4a435a27e8c8fc8e9eb Mon Sep 17 00:00:00 2001 From: Julian Thilo Date: Thu, 30 Oct 2014 16:33:14 +0100 Subject: [PATCH] Fix #14936: Use correct left/right and margin on tooltip arrows --- less/tooltip.less | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/less/tooltip.less b/less/tooltip.less index bd626996f9..ecab304b82 100644 --- a/less/tooltip.less +++ b/less/tooltip.less @@ -49,13 +49,15 @@ } &.top-left .tooltip-arrow { bottom: 0; - left: @tooltip-arrow-width; + right: @tooltip-arrow-width; + margin-bottom: -@tooltip-arrow-width; border-width: @tooltip-arrow-width @tooltip-arrow-width 0; border-top-color: @tooltip-arrow-color; } &.top-right .tooltip-arrow { bottom: 0; - right: @tooltip-arrow-width; + left: @tooltip-arrow-width; + margin-bottom: -@tooltip-arrow-width; border-width: @tooltip-arrow-width @tooltip-arrow-width 0; border-top-color: @tooltip-arrow-color; } @@ -82,13 +84,15 @@ } &.bottom-left .tooltip-arrow { top: 0; - left: @tooltip-arrow-width; + right: @tooltip-arrow-width; + margin-top: -@tooltip-arrow-width; border-width: 0 @tooltip-arrow-width @tooltip-arrow-width; border-bottom-color: @tooltip-arrow-color; } &.bottom-right .tooltip-arrow { top: 0; - right: @tooltip-arrow-width; + left: @tooltip-arrow-width; + margin-top: -@tooltip-arrow-width; border-width: 0 @tooltip-arrow-width @tooltip-arrow-width; border-bottom-color: @tooltip-arrow-color; }