mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-26 17:20:29 +00:00
Fixes #18681: Use a local varible to calculate a unit-less border offset for the popover title
This commit is contained in:
parent
b09f70e101
commit
ea5fdc5b5f
1 changed files with 2 additions and 1 deletions
|
|
@ -108,7 +108,8 @@
|
|||
font-size: $font-size-base;
|
||||
background-color: $popover-title-bg;
|
||||
border-bottom: $popover-border-width solid darken($popover-title-bg, 5%);
|
||||
@include border-radius(($border-radius-lg - 1) ($border-radius-lg - 1) 0 0);
|
||||
$offset-border-width: ($border-width / $font-size-root);
|
||||
@include border-radius(($border-radius-lg - $offset-border-width) ($border-radius-lg - $offset-border-width) 0 0);
|
||||
}
|
||||
|
||||
.popover-content {
|
||||
|
|
|
|||
Loading…
Reference in a new issue