]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
fixes #4511: remove focus on opened modal window
authorMark Otto <otto@github.com>
Tue, 30 Oct 2012 04:33:20 +0000 (21:33 -0700)
committerMark Otto <otto@github.com>
Tue, 30 Oct 2012 04:33:20 +0000 (21:33 -0700)
docs/assets/css/bootstrap.css
less/modals.less

index fe075d4274989b463cdb0ca01b16260e6a33db3c..26fcaddbb7bf2b76b5a82301af37b0bf5549547a 100644 (file)
@@ -5069,6 +5069,10 @@ input[type="submit"].btn.btn-mini {
   margin-left: 0;
 }
 
+.modal {
+  outline: none;
+}
+
 .tooltip {
   position: absolute;
   z-index: 1030;
index 53f2bbba1c090dcbab5e8eeff773be0d3284bcb6..4989b65e85b32d8b2edbadc60a57033b8807aab9 100644 (file)
@@ -89,3 +89,8 @@
     margin-left: 0;
   }
 }
+
+// Remove focus outline from opened modal
+.modal {
+  outline: none;
+}