]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
rgba() tooltip bg
authorMark Otto <otto@github.com>
Sat, 3 Nov 2012 20:44:55 +0000 (13:44 -0700)
committerMark Otto <otto@github.com>
Sat, 3 Nov 2012 20:44:55 +0000 (13:44 -0700)
docs/assets/css/bootstrap.css
less/tooltip.less
less/variables.less

index 5bde2636e27cffeeeca9fa8462fa94656ead6ad9..57c498650df10886c1cd64acc4329f17a12404b2 100644 (file)
@@ -4535,8 +4535,8 @@ input[type="button"].btn-block {
 }
 
 .tooltip.in {
-  opacity: 0.8;
-  filter: alpha(opacity=80);
+  opacity: 1;
+  filter: alpha(opacity=100);
 }
 
 .tooltip.top {
@@ -4561,7 +4561,7 @@ input[type="button"].btn-block {
   color: #ffffff;
   text-align: center;
   text-decoration: none;
-  background-color: #000000;
+  background-color: rgba(0, 0, 0, 0.9);
   border-radius: 4px;
 }
 
@@ -4577,7 +4577,7 @@ input[type="button"].btn-block {
   bottom: 0;
   left: 50%;
   margin-left: -5px;
-  border-top-color: #000000;
+  border-top-color: rgba(0, 0, 0, 0.9);
   border-width: 5px 5px 0;
 }
 
@@ -4585,7 +4585,7 @@ input[type="button"].btn-block {
   top: 50%;
   left: 0;
   margin-top: -5px;
-  border-right-color: #000000;
+  border-right-color: rgba(0, 0, 0, 0.9);
   border-width: 5px 5px 5px 0;
 }
 
@@ -4593,7 +4593,7 @@ input[type="button"].btn-block {
   top: 50%;
   right: 0;
   margin-top: -5px;
-  border-left-color: #000000;
+  border-left-color: rgba(0, 0, 0, 0.9);
   border-width: 5px 0 5px 5px;
 }
 
@@ -4601,7 +4601,7 @@ input[type="button"].btn-block {
   top: 0;
   left: 50%;
   margin-left: -5px;
-  border-bottom-color: #000000;
+  border-bottom-color: rgba(0, 0, 0, 0.9);
   border-width: 0 5px 5px;
 }
 
index 0d8eb4f1c026a9f713e59b26fd6f485cfbafe519..34f4a905f60d65e07f03bed6c67c0a8cf15ed52a 100644 (file)
@@ -12,7 +12,7 @@
   padding: 5px;
   font-size: 11px;
   .opacity(0);
-  &.in     { .opacity(80); }
+  &.in     { .opacity(100); }
   &.top    { margin-top:  -3px; }
   &.right  { margin-left:  3px; }
   &.bottom { margin-top:   3px; }
index 783652333a7e76449ec4002177d8d512fb03ee89..11a4d2daa423d2b9b072f1a2110ed02f53e17fe1 100644 (file)
 // Tooltips and popovers
 // -------------------------
 @tooltipColor:            #fff;
-@tooltipBackground:       #000;
+@tooltipBackground:       rgba(0,0,0,.9);
 @tooltipArrowWidth:       5px;
 @tooltipArrowColor:       @tooltipBackground;