2021-09-08 23:18:22 -04:00
|
|
|
// stylelint-disable custom-property-empty-line-before
|
|
|
|
|
2014-12-02 17:02:35 -05:00
|
|
|
.popover {
|
2021-09-08 23:18:22 -04:00
|
|
|
// scss-docs-start popover-css-vars
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
--#{$prefix}popover-zindex: #{$zindex-popover};
|
|
|
|
--#{$prefix}popover-max-width: #{$popover-max-width};
|
|
|
|
@include rfs($popover-font-size, --#{$prefix}popover-font-size);
|
|
|
|
--#{$prefix}popover-bg: #{$popover-bg};
|
|
|
|
--#{$prefix}popover-border-width: #{$popover-border-width};
|
|
|
|
--#{$prefix}popover-border-color: #{$popover-border-color};
|
|
|
|
--#{$prefix}popover-border-radius: #{$popover-border-radius};
|
|
|
|
--#{$prefix}popover-box-shadow: #{$popover-box-shadow};
|
|
|
|
--#{$prefix}popover-header-padding-x: #{$popover-header-padding-x};
|
|
|
|
--#{$prefix}popover-header-padding-y: #{$popover-header-padding-y};
|
2022-03-28 11:42:14 -04:00
|
|
|
@include rfs($popover-header-font-size, --#{$prefix}popover-header-font-size);
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
--#{$prefix}popover-header-color: #{$popover-header-color};
|
|
|
|
--#{$prefix}popover-header-bg: #{$popover-header-bg};
|
|
|
|
--#{$prefix}popover-body-padding-x: #{$popover-body-padding-x};
|
|
|
|
--#{$prefix}popover-body-padding-y: #{$popover-body-padding-y};
|
|
|
|
--#{$prefix}popover-body-color: #{$popover-body-color};
|
|
|
|
--#{$prefix}popover-arrow-width: #{$popover-arrow-width};
|
|
|
|
--#{$prefix}popover-arrow-height: #{$popover-arrow-height};
|
|
|
|
--#{$prefix}popover-arrow-border: var(--#{$prefix}popover-border-color);
|
2021-09-08 23:18:22 -04:00
|
|
|
// scss-docs-end popover-css-vars
|
|
|
|
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
z-index: var(--#{$prefix}popover-zindex);
|
2015-05-12 17:28:11 -04:00
|
|
|
display: block;
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
max-width: var(--#{$prefix}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();
|
2022-03-31 12:12:52 -04:00
|
|
|
@include font-size(var(--#{$prefix}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;
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
background-color: var(--#{$prefix}popover-bg);
|
2014-12-02 17:02:35 -05:00
|
|
|
background-clip: padding-box;
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
border: var(--#{$prefix}popover-border-width) solid var(--#{$prefix}popover-border-color);
|
|
|
|
@include border-radius(var(--#{$prefix}popover-border-radius));
|
|
|
|
@include box-shadow(var(--#{$prefix}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
|
|
|
display: block;
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
width: var(--#{$prefix}popover-arrow-width);
|
|
|
|
height: var(--#{$prefix}popover-arrow-height);
|
2017-12-27 00:58:57 -05:00
|
|
|
|
|
|
|
&::before,
|
|
|
|
&::after {
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
content: "";
|
|
|
|
border-color: transparent;
|
|
|
|
border-style: solid;
|
2021-09-08 23:18:22 -04:00
|
|
|
border-width: 0;
|
2017-12-27 00:58:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bs-popover-top {
|
2019-02-11 05:27:14 -05:00
|
|
|
> .popover-arrow {
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
bottom: calc((var(--#{$prefix}popover-arrow-height)) * -1); // stylelint-disable-line function-disallowed-list
|
2021-09-08 23:18:22 -04:00
|
|
|
|
|
|
|
&::before,
|
|
|
|
&::after {
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
border-width: var(--#{$prefix}popover-arrow-height) calc(var(--#{$prefix}popover-arrow-width) * .5) 0; // stylelint-disable-line function-disallowed-list
|
2021-09-08 23:18:22 -04:00
|
|
|
}
|
2017-04-19 04:59:10 -04:00
|
|
|
|
2019-01-13 19:29:37 -05:00
|
|
|
&::before {
|
|
|
|
bottom: 0;
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
border-top-color: var(--#{$prefix}popover-arrow-border);
|
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 {
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
bottom: var(--#{$prefix}popover-border-width);
|
|
|
|
border-top-color: var(--#{$prefix}popover-bg);
|
2019-01-13 19:29:37 -05:00
|
|
|
}
|
2017-12-27 00:58:57 -05:00
|
|
|
}
|
|
|
|
}
|
2015-08-23 16:54:38 -04:00
|
|
|
|
2022-02-28 11:04:29 -05:00
|
|
|
/* rtl:begin:ignore */
|
2020-06-26 10:06:20 -04:00
|
|
|
.bs-popover-end {
|
2019-02-11 05:27:14 -05:00
|
|
|
> .popover-arrow {
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
left: calc((var(--#{$prefix}popover-arrow-height)) * -1); // stylelint-disable-line function-disallowed-list
|
|
|
|
width: var(--#{$prefix}popover-arrow-height);
|
|
|
|
height: var(--#{$prefix}popover-arrow-width);
|
2021-09-08 23:18:22 -04:00
|
|
|
|
|
|
|
&::before,
|
|
|
|
&::after {
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
border-width: calc(var(--#{$prefix}popover-arrow-width) * .5) var(--#{$prefix}popover-arrow-height) calc(var(--#{$prefix}popover-arrow-width) * .5) 0; // stylelint-disable-line function-disallowed-list
|
2021-09-08 23:18:22 -04:00
|
|
|
}
|
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;
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
border-right-color: var(--#{$prefix}popover-arrow-border);
|
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 {
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
left: var(--#{$prefix}popover-border-width);
|
|
|
|
border-right-color: var(--#{$prefix}popover-bg);
|
2019-01-13 19:29:37 -05:00
|
|
|
}
|
2017-12-27 00:58:57 -05:00
|
|
|
}
|
|
|
|
}
|
2015-08-23 16:54:38 -04:00
|
|
|
|
2022-02-28 11:04:29 -05:00
|
|
|
/* rtl:end:ignore */
|
|
|
|
|
2017-12-27 00:58:57 -05:00
|
|
|
.bs-popover-bottom {
|
2019-02-11 05:27:14 -05:00
|
|
|
> .popover-arrow {
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
top: calc((var(--#{$prefix}popover-arrow-height)) * -1); // stylelint-disable-line function-disallowed-list
|
2021-09-08 23:18:22 -04:00
|
|
|
|
|
|
|
&::before,
|
|
|
|
&::after {
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
border-width: 0 calc(var(--#{$prefix}popover-arrow-width) * .5) var(--#{$prefix}popover-arrow-height); // stylelint-disable-line function-disallowed-list
|
2021-09-08 23:18:22 -04:00
|
|
|
}
|
2015-05-12 17:28:11 -04:00
|
|
|
|
2019-01-13 19:29:37 -05:00
|
|
|
&::before {
|
|
|
|
top: 0;
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
border-bottom-color: var(--#{$prefix}popover-arrow-border);
|
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 {
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
top: var(--#{$prefix}popover-border-width);
|
|
|
|
border-bottom-color: var(--#{$prefix}popover-bg);
|
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
|
|
|
// This will remove the popover-header's border just below the arrow
|
|
|
|
.popover-header::before {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 50%;
|
|
|
|
display: block;
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
width: var(--#{$prefix}popover-arrow-width);
|
|
|
|
margin-left: calc(var(--#{$prefix}popover-arrow-width) * -.5); // stylelint-disable-line function-disallowed-list
|
2017-12-27 00:58:57 -05:00
|
|
|
content: "";
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
border-bottom: var(--#{$prefix}popover-border-width) solid var(--#{$prefix}popover-header-bg);
|
2017-12-27 00:58:57 -05:00
|
|
|
}
|
|
|
|
}
|
2015-08-23 16:54:38 -04:00
|
|
|
|
2022-02-28 11:04:29 -05:00
|
|
|
/* rtl:begin:ignore */
|
2020-06-26 10:06:20 -04:00
|
|
|
.bs-popover-start {
|
2019-02-11 05:27:14 -05:00
|
|
|
> .popover-arrow {
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
right: calc((var(--#{$prefix}popover-arrow-height)) * -1); // stylelint-disable-line function-disallowed-list
|
|
|
|
width: var(--#{$prefix}popover-arrow-height);
|
|
|
|
height: var(--#{$prefix}popover-arrow-width);
|
2021-09-08 23:18:22 -04:00
|
|
|
|
|
|
|
&::before,
|
|
|
|
&::after {
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
border-width: calc(var(--#{$prefix}popover-arrow-width) * .5) 0 calc(var(--#{$prefix}popover-arrow-width) * .5) var(--#{$prefix}popover-arrow-height); // stylelint-disable-line function-disallowed-list
|
2021-09-08 23:18:22 -04:00
|
|
|
}
|
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;
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
border-left-color: var(--#{$prefix}popover-arrow-border);
|
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 {
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
right: var(--#{$prefix}popover-border-width);
|
|
|
|
border-left-color: var(--#{$prefix}popover-bg);
|
2019-01-13 19:29:37 -05:00
|
|
|
}
|
2017-12-27 00:58:57 -05:00
|
|
|
}
|
|
|
|
}
|
2015-08-23 16:54:38 -04:00
|
|
|
|
2022-02-28 11:04:29 -05:00
|
|
|
/* rtl:end:ignore */
|
|
|
|
|
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 {
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
padding: var(--#{$prefix}popover-header-padding-y) var(--#{$prefix}popover-header-padding-x);
|
2017-01-03 16:51:06 -05:00
|
|
|
margin-bottom: 0; // Reset the default from Reboot
|
2022-03-28 11:42:14 -04:00
|
|
|
font-size: var(--#{$prefix}popover-header-font-size);
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
color: var(--#{$prefix}popover-header-color);
|
|
|
|
background-color: var(--#{$prefix}popover-header-bg);
|
|
|
|
border-bottom: var(--#{$prefix}popover-border-width) solid var(--#{$prefix}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 {
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
padding: var(--#{$prefix}popover-body-padding-y) var(--#{$prefix}popover-body-padding-x);
|
|
|
|
color: var(--#{$prefix}popover-body-color);
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|