diff options
| author | Mark Otto <[email protected]> | 2013-06-20 16:01:59 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-06-20 16:02:05 -0700 |
| commit | 2aec6dae597b69502d09aec983598e5f955ca558 (patch) | |
| tree | 3e03a009dbc144fd669fc4553d4a60d43493a0ee /less | |
| parent | 2fccf927c5320a4dfe3ad58b0a2752ed8f15354e (diff) | |
| download | bootstrap-2aec6dae597b69502d09aec983598e5f955ca558.tar.xz bootstrap-2aec6dae597b69502d09aec983598e5f955ca558.zip | |
Fixes #7730: Better hiding of empty titles in popovers
If the popover's title contains no text, hide it via JS. Previously was
done via CSS's `:empty` property, but that doesn't work in IE8, so JS
it is.
/cc @fat becaue I probably did this wrong <3
Diffstat (limited to 'less')
| -rw-r--r-- | less/popovers.less | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/less/popovers.less b/less/popovers.less index b3399fa34..bcd30e919 100644 --- a/less/popovers.less +++ b/less/popovers.less @@ -40,10 +40,6 @@ background-color: @popover-title-bg; border-bottom: 1px solid darken(@popover-title-bg, 5%); border-radius: 5px 5px 0 0; - - &:empty { - display: none; - } } .popover-content { |
