2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-15 11:59:39 +03:00

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

This commit is contained in:
Mark Otto
2014-02-04 02:01:31 -08:00
parent 952afba70d
commit 07098d1bb7
6 changed files with 10 additions and 7 deletions
+2
View File
@@ -5197,6 +5197,8 @@ button.close {
.modal-sm {
width: 300px;
}
}
@media (min-width: 992px) {
.modal-lg {
width: 900px;
}
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+4 -3
View File
@@ -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; }
}