aboutsummaryrefslogtreecommitdiff
path: root/less/variables.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-08-06 11:18:53 -0700
committerMark Otto <[email protected]>2013-08-06 11:18:53 -0700
commit2f1fcca6c541d45839d39fec94462625526e4bed (patch)
treea2549139cc53523dda3399a2d45323bf8917c943 /less/variables.less
parentf266595092cd43aead1f6617933554110aeb46ac (diff)
downloadbootstrap-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/variables.less')
-rw-r--r--less/variables.less2
1 files changed, 1 insertions, 1 deletions
diff --git a/less/variables.less b/less/variables.less
index 06e1095dc..3a9430e2e 100644
--- a/less/variables.less
+++ b/less/variables.less
@@ -358,7 +358,7 @@
// -------------------------
@tooltip-max-width: 200px;
@tooltip-color: #fff;
-@tooltip-bg: rgba(0,0,0,.9);
+@tooltip-bg: #000;
@tooltip-arrow-width: 5px;
@tooltip-arrow-color: @tooltip-bg;