2014-12-02 17:02:35 -05:00
|
|
|
.popover {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: $zindex-popover;
|
2015-05-12 17:28:11 -04:00
|
|
|
display: block;
|
2014-12-02 17:02:35 -05:00
|
|
|
max-width: $popover-max-width;
|
2016-05-12 14:12:22 -04:00
|
|
|
padding: $popover-inner-padding;
|
2015-06-19 02:56:43 -04:00
|
|
|
// Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.
|
|
|
|
// So reset our font and text properties to avoid inheriting weird values.
|
|
|
|
@include reset-text();
|
|
|
|
font-size: $font-size-sm;
|
2016-01-18 01:23:29 -05:00
|
|
|
// Allow breaking very long words so they don't overflow the popover's bounds
|
|
|
|
word-wrap: break-word;
|
2014-12-02 17:02:35 -05:00
|
|
|
background-color: $popover-bg;
|
|
|
|
background-clip: padding-box;
|
2015-11-15 02:11:20 -05:00
|
|
|
border: $popover-border-width solid $popover-border-color;
|
2014-12-02 17:02:35 -05:00
|
|
|
@include border-radius($border-radius-lg);
|
2016-01-09 18:33:13 -05:00
|
|
|
@include box-shadow($popover-box-shadow);
|
2015-05-12 17:28:11 -04:00
|
|
|
|
|
|
|
|
|
|
|
// Popover directions
|
|
|
|
|
|
|
|
&.popover-top,
|
2015-05-27 18:49:55 -04:00
|
|
|
&.bs-tether-element-attached-bottom {
|
2015-05-12 17:28:11 -04:00
|
|
|
margin-top: -$popover-arrow-width;
|
|
|
|
|
2015-08-23 16:54:38 -04:00
|
|
|
&::before,
|
|
|
|
&::after {
|
2015-05-12 17:28:11 -04:00
|
|
|
left: 50%;
|
2015-08-23 16:54:38 -04:00
|
|
|
border-bottom-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
bottom: -$popover-arrow-outer-width;
|
2015-05-12 17:28:11 -04:00
|
|
|
margin-left: -$popover-arrow-outer-width;
|
|
|
|
border-top-color: $popover-arrow-outer-color;
|
2015-08-23 16:54:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
bottom: -($popover-arrow-outer-width - 1);
|
|
|
|
margin-left: -$popover-arrow-width;
|
|
|
|
border-top-color: $popover-arrow-color;
|
2015-05-12 17:28:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.popover-right,
|
|
|
|
&.bs-tether-element-attached-left {
|
|
|
|
margin-left: $popover-arrow-width;
|
|
|
|
|
2015-08-23 16:54:38 -04:00
|
|
|
&::before,
|
|
|
|
&::after {
|
2015-05-12 17:28:11 -04:00
|
|
|
top: 50%;
|
2015-08-23 16:54:38 -04:00
|
|
|
border-left-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::before {
|
2015-05-12 17:28:11 -04:00
|
|
|
left: -$popover-arrow-outer-width;
|
|
|
|
margin-top: -$popover-arrow-outer-width;
|
|
|
|
border-right-color: $popover-arrow-outer-color;
|
2015-08-23 16:54:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
left: -($popover-arrow-outer-width - 1);
|
|
|
|
margin-top: -($popover-arrow-outer-width - 1);
|
|
|
|
border-right-color: $popover-arrow-color;
|
2015-05-12 17:28:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.popover-bottom,
|
|
|
|
&.bs-tether-element-attached-top {
|
|
|
|
margin-top: $popover-arrow-width;
|
|
|
|
|
2015-08-23 16:54:38 -04:00
|
|
|
&::before,
|
|
|
|
&::after {
|
2015-05-12 17:28:11 -04:00
|
|
|
left: 50%;
|
|
|
|
border-top-width: 0;
|
2015-08-23 16:54:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
top: -$popover-arrow-outer-width;
|
|
|
|
margin-left: -$popover-arrow-outer-width;
|
2015-05-12 17:28:11 -04:00
|
|
|
border-bottom-color: $popover-arrow-outer-color;
|
2015-08-23 16:54:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
top: -($popover-arrow-outer-width - 1);
|
|
|
|
margin-left: -$popover-arrow-width;
|
2017-04-13 04:52:41 -04:00
|
|
|
border-bottom-color: $popover-arrow-color;
|
2015-08-23 16:54:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// This will remove the popover-title's border just below the arrow
|
|
|
|
.popover-title::before {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 50%;
|
|
|
|
display: block;
|
|
|
|
width: 20px;
|
|
|
|
margin-left: -10px;
|
|
|
|
content: "";
|
|
|
|
border-bottom: 1px solid $popover-title-bg;
|
2015-05-12 17:28:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.popover-left,
|
|
|
|
&.bs-tether-element-attached-right {
|
2015-05-27 18:49:55 -04:00
|
|
|
margin-left: -$popover-arrow-width;
|
2015-05-12 17:28:11 -04:00
|
|
|
|
2015-08-23 16:54:38 -04:00
|
|
|
&::before,
|
|
|
|
&::after {
|
2015-05-12 17:28:11 -04:00
|
|
|
top: 50%;
|
2015-08-23 16:54:38 -04:00
|
|
|
border-right-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::before {
|
2015-05-12 17:28:11 -04:00
|
|
|
right: -$popover-arrow-outer-width;
|
|
|
|
margin-top: -$popover-arrow-outer-width;
|
|
|
|
border-left-color: $popover-arrow-outer-color;
|
2015-08-23 16:54:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
right: -($popover-arrow-outer-width - 1);
|
|
|
|
margin-top: -($popover-arrow-outer-width - 1);
|
|
|
|
border-left-color: $popover-arrow-color;
|
2015-05-12 17:28:11 -04:00
|
|
|
}
|
2015-05-27 18:49:55 -04:00
|
|
|
}
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
|
2014-12-19 22:10:10 -05:00
|
|
|
|
2015-05-12 17:28:11 -04:00
|
|
|
// Offset the popover to account for the popover arrow
|
2014-12-02 17:02:35 -05:00
|
|
|
.popover-title {
|
2016-01-09 17:46:04 -05:00
|
|
|
padding: $popover-title-padding-y $popover-title-padding-x;
|
2017-01-03 16:51:06 -05:00
|
|
|
margin-bottom: 0; // Reset the default from Reboot
|
2014-12-02 17:02:35 -05:00
|
|
|
font-size: $font-size-base;
|
2017-03-28 18:21:47 -04:00
|
|
|
color: $popover-title-color;
|
2014-12-02 17:02:35 -05:00
|
|
|
background-color: $popover-title-bg;
|
2015-11-15 02:11:20 -05:00
|
|
|
border-bottom: $popover-border-width solid darken($popover-title-bg, 5%);
|
2017-01-03 16:50:25 -05:00
|
|
|
$offset-border-width: calc(#{$border-radius-lg} - #{$popover-border-width});
|
|
|
|
@include border-top-radius($offset-border-width);
|
2016-05-12 14:12:40 -04:00
|
|
|
|
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.popover-content {
|
2016-01-09 17:46:04 -05:00
|
|
|
padding: $popover-content-padding-y $popover-content-padding-x;
|
2017-03-28 18:21:47 -04:00
|
|
|
color: $popover-content-color;
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
|
2015-04-18 14:38:47 -04:00
|
|
|
|
2014-12-02 17:02:35 -05:00
|
|
|
// Arrows
|
|
|
|
//
|
2015-08-19 16:31:31 -04:00
|
|
|
// .popover-arrow is outer, .popover-arrow::after is inner
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2015-08-23 16:54:38 -04:00
|
|
|
.popover::before,
|
|
|
|
.popover::after {
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-color: transparent;
|
|
|
|
border-style: solid;
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
2015-08-23 16:54:38 -04:00
|
|
|
|
|
|
|
.popover::before {
|
|
|
|
content: "";
|
2014-12-02 17:02:35 -05:00
|
|
|
border-width: $popover-arrow-outer-width;
|
|
|
|
}
|
2015-08-23 16:54:38 -04:00
|
|
|
.popover::after {
|
2014-12-02 17:02:35 -05:00
|
|
|
content: "";
|
2014-12-11 15:05:29 -05:00
|
|
|
border-width: $popover-arrow-width;
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|