diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 07f73773..362ed3db 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -4021,6 +4021,7 @@ fieldset[disabled] .navbar-inverse .btn-navbar { top: 10%; left: 50%; z-index: 1050; + display: none; width: 560px; margin-left: -280px; background-color: #fff; @@ -4911,11 +4912,11 @@ a.badge:hover { } .hide { - display: none; + display: none !important; } .show { - display: block; + display: block !important; } .invisible { diff --git a/docs/javascript.html b/docs/javascript.html index bc4d18ca..2d01af56 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -186,7 +186,7 @@ $('#myModal').on('show', function (e) {
A rendered modal with header, body, and set of actions in the footer.
-<div class="modal hide fade">
+<div class="modal fade">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3>Modal header</h3>
@@ -219,7 +219,7 @@ $('#myModal').on('show', function (e) {
Live demo
Toggle a modal via JavaScript by clicking the button below. It will slide down and fade in from the top of the page.
-