From: Mark Otto Date: Thu, 20 Dec 2012 21:53:38 +0000 (-0800) Subject: Add important flag to .show/.hide utility classes; remove .hide requirement from... X-Git-Tag: v3.0.0-rc1~836^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6bd5dc7d9fefd6d936def8a224bf38c6beeac234;p=thirdparty%2Fbootstrap.git Add important flag to .show/.hide utility classes; remove .hide requirement from modals --- diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 07f737734d..362ed3db40 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 bc4d18ca7c..2d01af561f 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -186,7 +186,7 @@ $('#myModal').on('show', function (e) {

Static example

A rendered modal with header, body, and set of actions in the footer.

-