Commit bf9f3927 authored by Mark Otto's avatar Mark Otto

Fixes #11425: Use margin instead of padding on .modal-dialog to enable...

Fixes #11425: Use margin instead of padding on .modal-dialog to enable click-thru to .modal-backdrop
parent 36b82c37
......@@ -5909,7 +5909,7 @@ button.close {
position: relative;
z-index: 1050;
width: auto;
padding: 10px;
margin: 10px;
margin-right: auto;
margin-left: auto;
}
......@@ -6009,8 +6009,8 @@ button.close {
@media screen and (min-width: 768px) {
.modal-dialog {
width: 600px;
padding-top: 30px;
padding-bottom: 30px;
margin-top: 30px;
margin-bottom: 30px;
}
.modal-content {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -38,7 +38,7 @@
margin-left: auto;
margin-right: auto;
width: auto;
padding: 10px;
margin: 10px;
z-index: (@zindex-modal-background + 10);
}
......@@ -122,8 +122,8 @@
.modal-dialog {
width: 600px;
padding-top: 30px;
padding-bottom: 30px;
margin-top: 30px;
margin-bottom: 30px;
}
.modal-content {
.box-shadow(0 5px 15px rgba(0,0,0,.5));
......
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