2012-06-28 21:46:45 -07:00
|
|
|
//
|
|
|
|
// Tooltips
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2011-11-16 23:58:36 -08:00
|
|
|
|
2012-07-09 22:14:30 -07:00
|
|
|
// Base class
|
2012-01-11 21:42:55 -08:00
|
|
|
.tooltip {
|
2011-11-16 23:58:36 -08:00
|
|
|
position: absolute;
|
2012-11-30 15:23:13 -08:00
|
|
|
z-index: @zindex-tooltip;
|
2011-11-17 01:28:42 -08:00
|
|
|
display: block;
|
2011-11-16 23:58:36 -08:00
|
|
|
visibility: visible;
|
2013-07-17 23:55:58 -07:00
|
|
|
font-size: @font-size-small;
|
2012-12-26 09:36:07 -06:00
|
|
|
line-height: 1.4;
|
2011-11-20 20:58:04 -08:00
|
|
|
.opacity(0);
|
2013-02-05 22:42:54 -08:00
|
|
|
|
2013-08-06 11:18:53 -07:00
|
|
|
&.in { .opacity(.9); }
|
2013-02-05 22:29:59 -08:00
|
|
|
&.top { margin-top: -3px; padding: 5px 0; }
|
|
|
|
&.right { margin-left: 3px; padding: 0 5px; }
|
|
|
|
&.bottom { margin-top: 3px; padding: 5px 0; }
|
|
|
|
&.left { margin-left: -3px; padding: 0 5px; }
|
2011-11-16 23:58:36 -08:00
|
|
|
}
|
2012-07-09 22:14:30 -07:00
|
|
|
|
|
|
|
// Wrapper for the tooltip content
|
2012-01-11 21:42:55 -08:00
|
|
|
.tooltip-inner {
|
2013-07-26 17:04:15 +05:00
|
|
|
max-width: @tooltip-max-width;
|
2011-11-16 23:58:36 -08:00
|
|
|
padding: 3px 8px;
|
2012-11-30 15:40:44 -08:00
|
|
|
color: @tooltip-color;
|
2011-11-16 23:58:36 -08:00
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
2013-03-31 17:19:12 -07:00
|
|
|
background-color: @tooltip-bg;
|
2012-11-30 14:45:25 -08:00
|
|
|
border-radius: @border-radius-base;
|
2011-11-16 23:58:36 -08:00
|
|
|
}
|
2012-07-09 22:14:30 -07:00
|
|
|
|
|
|
|
// Arrows
|
2012-01-11 21:42:55 -08:00
|
|
|
.tooltip-arrow {
|
2011-11-16 23:58:36 -08:00
|
|
|
position: absolute;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
2012-07-09 22:14:30 -07:00
|
|
|
border-color: transparent;
|
|
|
|
border-style: solid;
|
|
|
|
}
|
|
|
|
.tooltip {
|
|
|
|
&.top .tooltip-arrow {
|
|
|
|
bottom: 0;
|
|
|
|
left: 50%;
|
2012-11-30 15:40:44 -08:00
|
|
|
margin-left: -@tooltip-arrow-width;
|
|
|
|
border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
|
|
|
|
border-top-color: @tooltip-arrow-color;
|
2012-07-09 22:14:30 -07:00
|
|
|
}
|
2013-06-27 20:50:00 -07:00
|
|
|
&.top-left .tooltip-arrow {
|
|
|
|
bottom: 0;
|
|
|
|
left: 5px;
|
|
|
|
border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
|
|
|
|
border-top-color: @tooltip-arrow-color;
|
|
|
|
}
|
|
|
|
&.top-right .tooltip-arrow {
|
|
|
|
bottom: 0;
|
|
|
|
right: 5px;
|
|
|
|
border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
|
|
|
|
border-top-color: @tooltip-arrow-color;
|
|
|
|
}
|
2012-07-09 22:14:30 -07:00
|
|
|
&.right .tooltip-arrow {
|
|
|
|
top: 50%;
|
|
|
|
left: 0;
|
2012-11-30 15:40:44 -08:00
|
|
|
margin-top: -@tooltip-arrow-width;
|
|
|
|
border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;
|
|
|
|
border-right-color: @tooltip-arrow-color;
|
2012-07-09 22:14:30 -07:00
|
|
|
}
|
|
|
|
&.left .tooltip-arrow {
|
|
|
|
top: 50%;
|
|
|
|
right: 0;
|
2012-11-30 15:40:44 -08:00
|
|
|
margin-top: -@tooltip-arrow-width;
|
|
|
|
border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;
|
|
|
|
border-left-color: @tooltip-arrow-color;
|
2012-07-09 22:14:30 -07:00
|
|
|
}
|
|
|
|
&.bottom .tooltip-arrow {
|
|
|
|
top: 0;
|
|
|
|
left: 50%;
|
2012-11-30 15:40:44 -08:00
|
|
|
margin-left: -@tooltip-arrow-width;
|
|
|
|
border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
|
|
|
|
border-bottom-color: @tooltip-arrow-color;
|
2012-07-09 22:14:30 -07:00
|
|
|
}
|
2013-06-27 20:50:00 -07:00
|
|
|
&.bottom-left .tooltip-arrow {
|
|
|
|
top: 0;
|
|
|
|
left: 5px;
|
|
|
|
border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
|
|
|
|
border-bottom-color: @tooltip-arrow-color;
|
|
|
|
}
|
|
|
|
&.bottom-right .tooltip-arrow {
|
|
|
|
top: 0;
|
|
|
|
right: 5px;
|
|
|
|
border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
|
|
|
|
border-bottom-color: @tooltip-arrow-color;
|
|
|
|
}
|
2011-11-16 23:58:36 -08:00
|
|
|
}
|