From 2f1fcca6c541d45839d39fec94462625526e4bed Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 6 Aug 2013 11:18:53 -0700 Subject: Fixes #9145: Fix tooltip opacity Update tooltips to not use RGBa colors so IE8 can have tooltips, too (means we're now using `opacity`). --- less/tooltip.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less/tooltip.less') diff --git a/less/tooltip.less b/less/tooltip.less index 819b9dffd..5a95b8462 100644 --- a/less/tooltip.less +++ b/less/tooltip.less @@ -13,7 +13,7 @@ line-height: 1.4; .opacity(0); - &.in { .opacity(1); } + &.in { .opacity(.9); } &.top { margin-top: -3px; padding: 5px 0; } &.right { margin-left: 3px; padding: 0 5px; } &.bottom { margin-top: 3px; padding: 5px 0; } -- cgit v1.2.3