Commit ce573787 authored by Mark Otto's avatar Mark Otto

fixes #8665: have modals use auto margin on sides and widen it instead of...

fixes #8665: have modals use auto margin on sides and widen it instead of positioning and negative margin
parent 5aad25b3
...@@ -3366,13 +3366,11 @@ button.close { ...@@ -3366,13 +3366,11 @@ button.close {
} }
.modal-dialog { .modal-dialog {
position: relative;
top: 0;
right: 0;
left: 0;
z-index: 1050; z-index: 1050;
width: auto; width: auto;
padding: 10px; padding: 10px;
margin-right: auto;
margin-left: auto;
} }
.modal-content { .modal-content {
...@@ -3471,10 +3469,9 @@ button.close { ...@@ -3471,10 +3469,9 @@ button.close {
.modal-dialog { .modal-dialog {
right: auto; right: auto;
left: 50%; left: 50%;
width: 560px; width: 600px;
padding-top: 30px; padding-top: 30px;
padding-bottom: 30px; padding-bottom: 30px;
margin-left: -280px;
} }
.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 source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -34,10 +34,8 @@ ...@@ -34,10 +34,8 @@
// Shell div to position the modal with bottom padding // Shell div to position the modal with bottom padding
.modal-dialog { .modal-dialog {
position: relative; margin-left: auto;
top: 0; margin-right: auto;
left: 0;
right: 0;
width: auto; width: auto;
padding: 10px; padding: 10px;
z-index: (@zindex-modal-background + 10); z-index: (@zindex-modal-background + 10);
...@@ -124,8 +122,7 @@ ...@@ -124,8 +122,7 @@
.modal-dialog { .modal-dialog {
left: 50%; left: 50%;
right: auto; right: auto;
width: 560px; width: 600px;
margin-left: -280px;
padding-top: 30px; padding-top: 30px;
padding-bottom: 30px; padding-bottom: 30px;
} }
......
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