2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Popovers
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2011-11-17 02:58:36 -05:00
|
|
|
|
|
|
|
.popover {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2012-11-30 18:23:13 -05:00
|
|
|
z-index: @zindex-popover;
|
2011-11-17 02:58:36 -05:00
|
|
|
display: none;
|
2013-07-26 08:04:15 -04:00
|
|
|
max-width: @popover-max-width;
|
2012-07-27 02:42:36 -04:00
|
|
|
padding: 1px;
|
2012-12-02 05:30:00 -05:00
|
|
|
text-align: left; // Reset given new insertion method
|
2013-03-31 20:19:12 -04:00
|
|
|
background-color: @popover-bg;
|
2013-05-08 02:43:51 -04:00
|
|
|
background-clip: padding-box;
|
2013-07-26 08:04:15 -04:00
|
|
|
border: 1px solid @popover-border-color;
|
2014-07-09 00:19:14 -04:00
|
|
|
.border-radius(@border-radius-large);
|
|
|
|
.box-shadow(0 5px 10px rgba(0,0,0,.2));
|
2012-06-28 13:03:46 -04:00
|
|
|
|
2012-11-03 16:42:08 -04:00
|
|
|
// Overrides for proper insertion
|
|
|
|
white-space: normal;
|
|
|
|
|
2012-06-28 13:03:46 -04:00
|
|
|
// Offset the popover to account for the popover arrow
|
2014-02-10 04:57:11 -05:00
|
|
|
&.top { margin-top: -@popover-arrow-width; }
|
|
|
|
&.right { margin-left: @popover-arrow-width; }
|
|
|
|
&.bottom { margin-top: @popover-arrow-width; }
|
|
|
|
&.left { margin-left: -@popover-arrow-width; }
|
2012-01-30 04:20:51 -05:00
|
|
|
}
|
2012-06-28 13:03:46 -04:00
|
|
|
|
2012-01-30 04:20:51 -05:00
|
|
|
.popover-title {
|
2012-07-10 00:13:33 -04:00
|
|
|
margin: 0; // reset heading margin
|
2012-06-28 13:03:46 -04:00
|
|
|
padding: 8px 14px;
|
2013-04-23 18:41:06 -04:00
|
|
|
font-size: @font-size-base;
|
2012-06-28 13:03:46 -04:00
|
|
|
font-weight: normal;
|
|
|
|
line-height: 18px;
|
2013-03-31 20:19:12 -04:00
|
|
|
background-color: @popover-title-bg;
|
|
|
|
border-bottom: 1px solid darken(@popover-title-bg, 5%);
|
2014-03-06 23:59:19 -05:00
|
|
|
border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0;
|
2012-01-30 04:20:51 -05:00
|
|
|
}
|
2012-06-28 13:03:46 -04:00
|
|
|
|
2012-01-30 04:20:51 -05:00
|
|
|
.popover-content {
|
2012-06-28 13:03:46 -04:00
|
|
|
padding: 9px 14px;
|
2012-01-30 04:20:51 -05:00
|
|
|
}
|
2012-07-10 01:14:30 -04:00
|
|
|
|
|
|
|
// Arrows
|
2012-11-28 04:38:21 -05:00
|
|
|
//
|
|
|
|
// .arrow is outer, .arrow:after is inner
|
|
|
|
|
2014-02-02 17:14:22 -05:00
|
|
|
.popover > .arrow {
|
2013-07-07 01:02:58 -04:00
|
|
|
&,
|
|
|
|
&:after {
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-color: transparent;
|
|
|
|
border-style: solid;
|
|
|
|
}
|
2012-07-10 01:14:30 -04:00
|
|
|
}
|
2014-02-02 17:14:22 -05:00
|
|
|
.popover > .arrow {
|
2012-11-30 18:40:44 -05:00
|
|
|
border-width: @popover-arrow-outer-width;
|
2012-11-28 04:38:21 -05:00
|
|
|
}
|
2014-02-02 17:14:22 -05:00
|
|
|
.popover > .arrow:after {
|
2012-11-30 18:40:44 -05:00
|
|
|
border-width: @popover-arrow-width;
|
2012-07-10 01:14:30 -04:00
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
|
|
|
|
.popover {
|
2014-02-02 17:14:22 -05:00
|
|
|
&.top > .arrow {
|
2012-11-28 04:38:21 -05:00
|
|
|
left: 50%;
|
2012-11-30 18:40:44 -05:00
|
|
|
margin-left: -@popover-arrow-outer-width;
|
2012-11-28 04:38:21 -05:00
|
|
|
border-bottom-width: 0;
|
2012-11-30 18:40:44 -05:00
|
|
|
border-top-color: @popover-arrow-outer-color;
|
|
|
|
bottom: -@popover-arrow-outer-width;
|
2012-11-28 04:38:21 -05:00
|
|
|
&:after {
|
2013-06-27 22:36:56 -04:00
|
|
|
content: " ";
|
2012-11-28 04:38:21 -05:00
|
|
|
bottom: 1px;
|
2012-11-30 18:40:44 -05:00
|
|
|
margin-left: -@popover-arrow-width;
|
2012-11-28 04:38:21 -05:00
|
|
|
border-bottom-width: 0;
|
2012-11-30 18:40:44 -05:00
|
|
|
border-top-color: @popover-arrow-color;
|
2012-11-28 04:38:21 -05:00
|
|
|
}
|
|
|
|
}
|
2014-02-02 17:14:22 -05:00
|
|
|
&.right > .arrow {
|
2012-11-28 04:38:21 -05:00
|
|
|
top: 50%;
|
2012-11-30 18:40:44 -05:00
|
|
|
left: -@popover-arrow-outer-width;
|
|
|
|
margin-top: -@popover-arrow-outer-width;
|
2012-11-28 04:38:21 -05:00
|
|
|
border-left-width: 0;
|
2012-11-30 18:40:44 -05:00
|
|
|
border-right-color: @popover-arrow-outer-color;
|
2012-11-28 04:38:21 -05:00
|
|
|
&:after {
|
2013-06-27 22:36:56 -04:00
|
|
|
content: " ";
|
2012-11-28 04:38:21 -05:00
|
|
|
left: 1px;
|
2012-11-30 18:40:44 -05:00
|
|
|
bottom: -@popover-arrow-width;
|
2012-11-28 04:38:21 -05:00
|
|
|
border-left-width: 0;
|
2012-11-30 18:40:44 -05:00
|
|
|
border-right-color: @popover-arrow-color;
|
2012-11-28 04:38:21 -05:00
|
|
|
}
|
|
|
|
}
|
2014-02-02 17:14:22 -05:00
|
|
|
&.bottom > .arrow {
|
2012-11-28 04:38:21 -05:00
|
|
|
left: 50%;
|
2012-11-30 18:40:44 -05:00
|
|
|
margin-left: -@popover-arrow-outer-width;
|
2012-11-28 04:38:21 -05:00
|
|
|
border-top-width: 0;
|
2012-11-30 18:40:44 -05:00
|
|
|
border-bottom-color: @popover-arrow-outer-color;
|
|
|
|
top: -@popover-arrow-outer-width;
|
2012-11-28 04:38:21 -05:00
|
|
|
&:after {
|
2013-06-27 22:36:56 -04:00
|
|
|
content: " ";
|
2012-11-28 04:38:21 -05:00
|
|
|
top: 1px;
|
2012-11-30 18:40:44 -05:00
|
|
|
margin-left: -@popover-arrow-width;
|
2012-11-28 04:38:21 -05:00
|
|
|
border-top-width: 0;
|
2012-11-30 18:40:44 -05:00
|
|
|
border-bottom-color: @popover-arrow-color;
|
2012-11-28 04:38:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-02 17:14:22 -05:00
|
|
|
&.left > .arrow {
|
2012-11-28 04:38:21 -05:00
|
|
|
top: 50%;
|
2012-11-30 18:40:44 -05:00
|
|
|
right: -@popover-arrow-outer-width;
|
|
|
|
margin-top: -@popover-arrow-outer-width;
|
2012-11-28 04:38:21 -05:00
|
|
|
border-right-width: 0;
|
2012-11-30 18:40:44 -05:00
|
|
|
border-left-color: @popover-arrow-outer-color;
|
2012-11-28 04:38:21 -05:00
|
|
|
&:after {
|
2013-06-27 22:36:56 -04:00
|
|
|
content: " ";
|
2012-11-28 04:38:21 -05:00
|
|
|
right: 1px;
|
|
|
|
border-right-width: 0;
|
2012-11-30 18:40:44 -05:00
|
|
|
border-left-color: @popover-arrow-color;
|
|
|
|
bottom: -@popover-arrow-width;
|
2012-11-28 04:38:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-10 01:14:30 -04:00
|
|
|
}
|