Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2016-05-12 21:12:40 +0300
committerMark Otto <markdotto@gmail.com>2016-05-12 21:12:40 +0300
commita6b797d17b995774de646658bfb91ad8a445ef2f (patch)
treece1ddc2e091a89d083156cb39527d67dd2b861bc /scss
parentdf6facf66e19566b962327899f981258b695076c (diff)
Restore hiding of the .popover-title with :empty
Diffstat (limited to 'scss')
-rw-r--r--scss/_popover.scss4
1 files changed, 4 insertions, 0 deletions
diff --git a/scss/_popover.scss b/scss/_popover.scss
index a5de83c379..6e6fe3c9cb 100644
--- a/scss/_popover.scss
+++ b/scss/_popover.scss
@@ -112,6 +112,10 @@
border-bottom: $popover-border-width solid darken($popover-title-bg, 5%);
$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);
+
+ &:empty {
+ display: none;
+ }
}
.popover-content {