diff options
| author | Mark Otto <[email protected]> | 2012-12-28 14:18:59 -0600 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-12-28 14:18:59 -0600 |
| commit | 1c0e4fc7bb6ab2ef12f1050ed177a02d16ebdbce (patch) | |
| tree | 739dbe65f42db4df38f149022199e99afc52e3af /docs | |
| parent | f69d12af3d47b26c0948f207b1fbb876edf0f1b3 (diff) | |
| download | bootstrap-1c0e4fc7bb6ab2ef12f1050ed177a02d16ebdbce.tar.xz bootstrap-1c0e4fc7bb6ab2ef12f1050ed177a02d16ebdbce.zip | |
Popovers are now flexible width:
* Instead of a fixed width, we use max-width
* Width has been increased from 240px to 280px
* Added ability to hide the title via CSS :empty selector if no title is provided
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 133091b04..2e2f06160 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -5301,7 +5301,7 @@ input[type="submit"].btn.btn-mini { left: 0; z-index: 1010; display: none; - width: 236px; + max-width: 276px; padding: 1px; text-align: left; white-space: normal; @@ -5348,6 +5348,10 @@ input[type="submit"].btn.btn-mini { border-radius: 5px 5px 0 0; } +.popover-title:empty { + display: none; +} + .popover-content { padding: 9px 14px; } |
