diff options
| author | Chris Rebert <[email protected]> | 2014-12-29 13:40:19 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-01-06 17:47:13 -0800 |
| commit | cbb3b1ff9aa4d16888697d18ff6764689d7c29eb (patch) | |
| tree | fd6967af659f3ab0cb7ccd72b42e5498f299a4a5 /scss/_modal.scss | |
| parent | 746e09f8ae5b6601db5e965cd71c632b4e42827a (diff) | |
| download | bootstrap-cbb3b1ff9aa4d16888697d18ff6764689d7c29eb.tar.xz bootstrap-cbb3b1ff9aa4d16888697d18ff6764689d7c29eb.zip | |
Kill scss/mixins/_media-queries.scss
replaced media-xs => media-breakpoint-down(xs)
replaced media-sm => media-breakpoint-up(sm)
replaced media-sm-max => media-breakpoint-only(sm)
replaced media-md => media-breakpoint-up(md)
replaced media-md-max => media-breakpoint-only(md)
replaced media-lg => media-breakpoint-up(lg)
Diffstat (limited to 'scss/_modal.scss')
| -rw-r--r-- | scss/_modal.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/_modal.scss b/scss/_modal.scss index 2566c3ef2..da3b90c0b 100644 --- a/scss/_modal.scss +++ b/scss/_modal.scss @@ -126,7 +126,7 @@ } // Scale up the modal -@include media-sm { +@include media-breakpoint-up(sm) { // Automatically set modal's width for larger viewports .modal-dialog { width: $modal-md; @@ -140,6 +140,6 @@ .modal-sm { width: $modal-sm; } } -@include media-md { +@include media-breakpoint-up(md) { .modal-lg { width: $modal-lg; } } |
