From: Mark Otto Date: Tue, 30 Oct 2012 04:33:20 +0000 (-0700) Subject: fixes #4511: remove focus on opened modal window X-Git-Tag: v2.2.0^2^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5bb6c42405d030cb481395e5fc4006bc1925f39d;p=thirdparty%2Fbootstrap.git fixes #4511: remove focus on opened modal window --- diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index fe075d4274..26fcaddbb7 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -5069,6 +5069,10 @@ input[type="submit"].btn.btn-mini { margin-left: 0; } +.modal { + outline: none; +} + .tooltip { position: absolute; z-index: 1030; diff --git a/less/modals.less b/less/modals.less index 53f2bbba1c..4989b65e85 100644 --- a/less/modals.less +++ b/less/modals.less @@ -89,3 +89,8 @@ margin-left: 0; } } + +// Remove focus outline from opened modal +.modal { + outline: none; +}