Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <otto@github.com>2012-10-30 08:33:20 +0400
committerMark Otto <otto@github.com>2012-10-30 08:33:20 +0400
commit5bb6c42405d030cb481395e5fc4006bc1925f39d (patch)
treecbdac8d73e9fca248f2034661a8d5ceda0ec8284
parenta6968c4934f699c066b9e545b2f9c0c6da500fff (diff)
fixes #4511: remove focus on opened modal window
-rw-r--r--docs/assets/css/bootstrap.css4
-rw-r--r--less/modals.less5
2 files changed, 9 insertions, 0 deletions
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;
+}