diff options
| author | Mark Otto <[email protected]> | 2012-07-24 00:35:54 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-07-24 00:35:54 -0700 |
| commit | 4912dd441d46dbacd7414628b6d70a8ae0d85d7f (patch) | |
| tree | db653cd5377923bd98463f173310a79260ef6dec /docs/assets/css | |
| parent | 7ce048bccd618bbae794a9115861d1927664b8ed (diff) | |
| download | bootstrap-4912dd441d46dbacd7414628b6d70a8ae0d85d7f.tar.xz bootstrap-4912dd441d46dbacd7414628b6d70a8ae0d85d7f.zip | |
fix h3 in modal and make modal unhidden by removing important from earlier issue
Diffstat (limited to 'docs/assets/css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 5525614d6..4a4b3e5f4 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -4715,6 +4715,11 @@ input[type="submit"].btn.btn-mini { margin-top: 2px; } +.modal-header h3 { + margin: 0; + line-height: 1; +} + .modal-body { max-height: 400px; padding: 15px; @@ -5498,11 +5503,11 @@ a.badge:hover { } .hide { - display: none !important; + display: none; } .show { - display: block !important; + display: block; } .invisible { |
