Commit 07098d1b authored by Mark Otto's avatar Mark Otto

Fixes #12470: Scope large modal styles to minimum viewport width

parent 952afba7
......@@ -5197,6 +5197,8 @@ button.close {
.modal-sm {
width: 300px;
}
}
@media (min-width: 992px) {
.modal-lg {
width: 900px;
}
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -121,7 +121,6 @@
// Scale up the modal
@media (min-width: @screen-sm-min) {
// Automatically set modal's width for larger viewports
.modal-dialog {
width: @modal-md;
......@@ -133,6 +132,8 @@
// Modal sizes
.modal-sm { width: @modal-sm; }
.modal-lg { width: @modal-lg; }
}
@media (min-width: @screen-md-min) {
.modal-lg { width: @modal-lg; }
}
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