diff options
| author | Mark Otto <[email protected]> | 2014-08-23 13:42:45 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-08-23 13:42:45 -0700 |
| commit | 56bb92ac4fbf6d5773e91afd205fb8ec09e3a573 (patch) | |
| tree | 7469b5c0e465b464cc575dda70fc507a28978223 /less | |
| parent | 3c0e2e28f8c421c3e96ff39da2a088410fffff45 (diff) | |
| download | bootstrap-56bb92ac4fbf6d5773e91afd205fb8ec09e3a573.tar.xz bootstrap-56bb92ac4fbf6d5773e91afd205fb8ec09e3a573.zip | |
Fixes #14386: Reset font, text, and line-height properties in popovers
Diffstat (limited to 'less')
| -rw-r--r-- | less/popovers.less | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/less/popovers.less b/less/popovers.less index bf6af40a0..3abd0598f 100644 --- a/less/popovers.less +++ b/less/popovers.less @@ -11,7 +11,11 @@ display: none; max-width: @popover-max-width; padding: 1px; - text-align: left; // Reset given new insertion method + // Reset font and text propertes given new insertion method + font-size: @font-size-base; + font-weight: normal; + line-height: @line-height-base; + text-align: left; background-color: @popover-bg; background-clip: padding-box; border: 1px solid @popover-fallback-border-color; @@ -33,8 +37,6 @@ margin: 0; // reset heading margin padding: 8px 14px; font-size: @font-size-base; - font-weight: normal; - line-height: 18px; background-color: @popover-title-bg; border-bottom: 1px solid darken(@popover-title-bg, 5%); border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0; |
