From cdcffcd31eaea408e4a0cff63a7f82d95141680c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Thu, 29 Oct 2015 12:32:32 +0100 Subject: [PATCH] fix(css): restored tooltip background to dark for white theme #3079 --- public/less/variables.light.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/less/variables.light.less b/public/less/variables.light.less index 27dcf8575f4..f9063c4cd74 100644 --- a/public/less/variables.light.less +++ b/public/less/variables.light.less @@ -278,8 +278,8 @@ // Tooltips and popovers // ------------------------- -@tooltipColor: @grayDark; -@tooltipBackground: darken(@white,3%); +@tooltipColor: @white; +@tooltipBackground: @grayDark; @tooltipArrowWidth: 5px; @tooltipArrowColor: @tooltipBackground; @tooltipLinkColor: darken(@white,11%);