Commit bf9f3927 authored by Mark Otto's avatar Mark Otto
Browse files

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
Showing with 7 additions and 7 deletions
+7 -7
...@@ -5909,7 +5909,7 @@ button.close { ...@@ -5909,7 +5909,7 @@ button.close {
position: relative; position: relative;
z-index: 1050; z-index: 1050;
width: auto; width: auto;
padding: 10px; margin: 10px;
margin-right: auto; margin-right: auto;
margin-left: auto; margin-left: auto;
} }
...@@ -6009,8 +6009,8 @@ button.close { ...@@ -6009,8 +6009,8 @@ button.close {
@media screen and (min-width: 768px) { @media screen and (min-width: 768px) {
.modal-dialog { .modal-dialog {
width: 600px; width: 600px;
padding-top: 30px; margin-top: 30px;
padding-bottom: 30px; margin-bottom: 30px;
} }
.modal-content { .modal-content {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
......
This diff is collapsed.
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
width: auto; width: auto;
padding: 10px; margin: 10px;
z-index: (@zindex-modal-background + 10); z-index: (@zindex-modal-background + 10);
} }
...@@ -122,8 +122,8 @@ ...@@ -122,8 +122,8 @@
.modal-dialog { .modal-dialog {
width: 600px; width: 600px;
padding-top: 30px; margin-top: 30px;
padding-bottom: 30px; margin-bottom: 30px;
} }
.modal-content { .modal-content {
.box-shadow(0 5px 15px rgba(0,0,0,.5)); .box-shadow(0 5px 15px rgba(0,0,0,.5));
......
Supports Markdown
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