diff options
| author | Mark Otto <[email protected]> | 2013-08-06 11:18:53 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-06 11:18:53 -0700 |
| commit | 2f1fcca6c541d45839d39fec94462625526e4bed (patch) | |
| tree | a2549139cc53523dda3399a2d45323bf8917c943 /less/tooltip.less | |
| parent | f266595092cd43aead1f6617933554110aeb46ac (diff) | |
| download | bootstrap-2f1fcca6c541d45839d39fec94462625526e4bed.tar.xz bootstrap-2f1fcca6c541d45839d39fec94462625526e4bed.zip | |
Fixes #9145: Fix tooltip opacity
Update tooltips to not use RGBa colors so IE8 can have tooltips, too
(means we're now using `opacity`).
Diffstat (limited to 'less/tooltip.less')
| -rw-r--r-- | less/tooltip.less | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
