Commit 5bb6c424 authored by Mark Otto's avatar Mark Otto

fixes #4511: remove focus on opened modal window

parent a6968c49
...@@ -5069,6 +5069,10 @@ input[type="submit"].btn.btn-mini { ...@@ -5069,6 +5069,10 @@ input[type="submit"].btn.btn-mini {
margin-left: 0; margin-left: 0;
} }
.modal {
outline: none;
}
.tooltip { .tooltip {
position: absolute; position: absolute;
z-index: 1030; z-index: 1030;
......
...@@ -89,3 +89,8 @@ ...@@ -89,3 +89,8 @@
margin-left: 0; margin-left: 0;
} }
} }
// Remove focus outline from opened modal
.modal {
outline: none;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment