2014-12-02 17:02:35 -05:00
|
|
|
.popover {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2020-06-26 10:06:20 -04:00
|
|
|
left: 0 #{"/* rtl:ignore */"};
|
2014-12-02 17:02:35 -05:00
|
|
|
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;
|
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();
|
2019-02-07 17:32:05 -05:00
|
|
|
@include font-size($popover-font-size);
|
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;
|
2017-12-18 15:08:25 -05:00
|
|
|
@include border-radius($popover-border-radius);
|
2016-01-09 18:33:13 -05:00
|
|
|
@include box-shadow($popover-box-shadow);
|
2015-05-12 17:28:11 -04:00
|
|
|
|
2019-02-11 05:27:14 -05:00
|
|
|
.popover-arrow {
|
2017-05-23 08:17:07 -04:00
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
width: $popover-arrow-width;
|
|
|
|
height: $popover-arrow-height;
|
2017-12-27 00:58:57 -05:00
|
|
|
|
|
|
|
&::before,
|
|
|
|
&::after {
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
content: "";
|
|
|
|
border-color: transparent;
|
|
|
|
border-style: solid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bs-popover-top {
|
2019-02-11 05:27:14 -05:00
|
|
|
> .popover-arrow {
|
2019-09-03 13:18:44 -04:00
|
|
|
bottom: subtract(-$popover-arrow-height, $popover-border-width);
|
2017-04-19 04:59:10 -04:00
|
|
|
|
2019-01-13 19:29:37 -05:00
|
|
|
&::before {
|
|
|
|
bottom: 0;
|
2021-06-14 12:35:30 -04:00
|
|
|
border-width: $popover-arrow-height ($popover-arrow-width * .5) 0;
|
2019-01-13 19:29:37 -05:00
|
|
|
border-top-color: $popover-arrow-outer-color;
|
|
|
|
}
|
2017-05-23 08:17:07 -04:00
|
|
|
|
2019-01-13 19:29:37 -05:00
|
|
|
&::after {
|
|
|
|
bottom: $popover-border-width;
|
2021-06-14 12:35:30 -04:00
|
|
|
border-width: $popover-arrow-height ($popover-arrow-width * .5) 0;
|
2019-01-13 19:29:37 -05:00
|
|
|
border-top-color: $popover-arrow-color;
|
|
|
|
}
|
2017-12-27 00:58:57 -05:00
|
|
|
}
|
|
|
|
}
|
2015-08-23 16:54:38 -04:00
|
|
|
|
2020-06-26 10:06:20 -04:00
|
|
|
.bs-popover-end {
|
2019-02-11 05:27:14 -05:00
|
|
|
> .popover-arrow {
|
2020-12-04 10:55:50 -05:00
|
|
|
left: subtract(-$popover-arrow-height, $popover-border-width);
|
2017-12-27 00:58:57 -05:00
|
|
|
width: $popover-arrow-height;
|
|
|
|
height: $popover-arrow-width;
|
2015-05-12 17:28:11 -04:00
|
|
|
|
2019-01-13 19:29:37 -05:00
|
|
|
&::before {
|
2020-12-04 10:55:50 -05:00
|
|
|
left: 0;
|
2021-06-14 12:35:30 -04:00
|
|
|
border-width: ($popover-arrow-width * .5) $popover-arrow-height ($popover-arrow-width * .5) 0;
|
2020-12-04 10:55:50 -05:00
|
|
|
border-right-color: $popover-arrow-outer-color;
|
2019-01-13 19:29:37 -05:00
|
|
|
}
|
2017-05-23 08:17:07 -04:00
|
|
|
|
2019-01-13 19:29:37 -05:00
|
|
|
&::after {
|
2020-12-04 10:55:50 -05:00
|
|
|
left: $popover-border-width;
|
2021-06-14 12:35:30 -04:00
|
|
|
border-width: ($popover-arrow-width * .5) $popover-arrow-height ($popover-arrow-width * .5) 0;
|
2020-12-04 10:55:50 -05:00
|
|
|
border-right-color: $popover-arrow-color;
|
2019-01-13 19:29:37 -05:00
|
|
|
}
|
2017-12-27 00:58:57 -05:00
|
|
|
}
|
|
|
|
}
|
2015-08-23 16:54:38 -04:00
|
|
|
|
2017-12-27 00:58:57 -05:00
|
|
|
.bs-popover-bottom {
|
2019-02-11 05:27:14 -05:00
|
|
|
> .popover-arrow {
|
2019-09-03 13:18:44 -04:00
|
|
|
top: subtract(-$popover-arrow-height, $popover-border-width);
|
2015-05-12 17:28:11 -04:00
|
|
|
|
2019-01-13 19:29:37 -05:00
|
|
|
&::before {
|
|
|
|
top: 0;
|
2021-06-14 12:35:30 -04:00
|
|
|
border-width: 0 ($popover-arrow-width * .5) $popover-arrow-height ($popover-arrow-width * .5);
|
2019-01-13 19:29:37 -05:00
|
|
|
border-bottom-color: $popover-arrow-outer-color;
|
|
|
|
}
|
2017-05-23 08:17:07 -04:00
|
|
|
|
2019-01-13 19:29:37 -05:00
|
|
|
&::after {
|
|
|
|
top: $popover-border-width;
|
2021-06-14 12:35:30 -04:00
|
|
|
border-width: 0 ($popover-arrow-width * .5) $popover-arrow-height ($popover-arrow-width * .5);
|
2019-01-13 19:29:37 -05:00
|
|
|
border-bottom-color: $popover-arrow-color;
|
|
|
|
}
|
2017-12-27 00:58:57 -05:00
|
|
|
}
|
2015-08-23 16:54:38 -04:00
|
|
|
|
2017-12-27 00:58:57 -05:00
|
|
|
// This will remove the popover-header's border just below the arrow
|
|
|
|
.popover-header::before {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 50%;
|
|
|
|
display: block;
|
|
|
|
width: $popover-arrow-width;
|
2021-06-14 12:35:30 -04:00
|
|
|
margin-left: -$popover-arrow-width * .5;
|
2017-12-27 00:58:57 -05:00
|
|
|
content: "";
|
|
|
|
border-bottom: $popover-border-width solid $popover-header-bg;
|
|
|
|
}
|
|
|
|
}
|
2015-08-23 16:54:38 -04:00
|
|
|
|
2020-06-26 10:06:20 -04:00
|
|
|
.bs-popover-start {
|
2019-02-11 05:27:14 -05:00
|
|
|
> .popover-arrow {
|
2020-12-04 10:55:50 -05:00
|
|
|
right: subtract(-$popover-arrow-height, $popover-border-width);
|
2017-12-27 00:58:57 -05:00
|
|
|
width: $popover-arrow-height;
|
|
|
|
height: $popover-arrow-width;
|
2017-05-23 08:17:07 -04:00
|
|
|
|
2019-01-13 19:29:37 -05:00
|
|
|
&::before {
|
2020-12-04 10:55:50 -05:00
|
|
|
right: 0;
|
2021-06-14 12:35:30 -04:00
|
|
|
border-width: ($popover-arrow-width * .5) 0 ($popover-arrow-width * .5) $popover-arrow-height;
|
2020-12-04 10:55:50 -05:00
|
|
|
border-left-color: $popover-arrow-outer-color;
|
2019-01-13 19:29:37 -05:00
|
|
|
}
|
2015-08-23 16:54:38 -04:00
|
|
|
|
2019-01-13 19:29:37 -05:00
|
|
|
&::after {
|
2020-12-04 10:55:50 -05:00
|
|
|
right: $popover-border-width;
|
2021-06-14 12:35:30 -04:00
|
|
|
border-width: ($popover-arrow-width * .5) 0 ($popover-arrow-width * .5) $popover-arrow-height;
|
2020-12-04 10:55:50 -05:00
|
|
|
border-left-color: $popover-arrow-color;
|
2019-01-13 19:29:37 -05:00
|
|
|
}
|
2017-12-27 00:58:57 -05:00
|
|
|
}
|
|
|
|
}
|
2015-08-23 16:54:38 -04:00
|
|
|
|
2017-12-27 00:58:57 -05:00
|
|
|
.bs-popover-auto {
|
2020-06-19 04:17:01 -04:00
|
|
|
&[data-popper-placement^="top"] {
|
2017-12-27 00:58:57 -05:00
|
|
|
@extend .bs-popover-top;
|
2015-05-27 18:49:55 -04:00
|
|
|
}
|
2020-06-19 04:17:01 -04:00
|
|
|
&[data-popper-placement^="right"] {
|
2020-06-26 10:06:20 -04:00
|
|
|
@extend .bs-popover-end;
|
2017-12-27 00:58:57 -05:00
|
|
|
}
|
2020-06-19 04:17:01 -04:00
|
|
|
&[data-popper-placement^="bottom"] {
|
2017-12-27 00:58:57 -05:00
|
|
|
@extend .bs-popover-bottom;
|
|
|
|
}
|
2020-06-19 04:17:01 -04:00
|
|
|
&[data-popper-placement^="left"] {
|
2020-06-26 10:06:20 -04:00
|
|
|
@extend .bs-popover-start;
|
2017-05-24 08:09:36 -04:00
|
|
|
}
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
|
2015-05-12 17:28:11 -04:00
|
|
|
// Offset the popover to account for the popover arrow
|
2017-06-15 01:03:33 -04:00
|
|
|
.popover-header {
|
|
|
|
padding: $popover-header-padding-y $popover-header-padding-x;
|
2017-01-03 16:51:06 -05:00
|
|
|
margin-bottom: 0; // Reset the default from Reboot
|
2019-02-07 17:32:05 -05:00
|
|
|
@include font-size($font-size-base);
|
2017-06-15 01:03:33 -04:00
|
|
|
color: $popover-header-color;
|
|
|
|
background-color: $popover-header-bg;
|
2021-05-18 08:22:06 -04:00
|
|
|
border-bottom: $popover-border-width solid $popover-border-color;
|
2019-05-07 06:01:30 -04:00
|
|
|
@include border-top-radius($popover-inner-border-radius);
|
2016-05-12 14:12:40 -04:00
|
|
|
|
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
|
2017-06-15 01:03:33 -04:00
|
|
|
.popover-body {
|
|
|
|
padding: $popover-body-padding-y $popover-body-padding-x;
|
|
|
|
color: $popover-body-color;
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|