From: Laury GvR Date: Fri, 5 Jun 2015 14:14:17 +0000 (-0400) Subject: Added large-down and medium-down as viable media queries. X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/index.cgi?a=commitdiff_plain;h=bd567019c97a1e292127e6ec5eb8a87c3d0ce73e;p=web%2FGruntInit%2FglmTheme.git Added large-down and medium-down as viable media queries. --- diff --git a/root/scss/_settings.scss b/root/scss/_settings.scss index 7af3a57..f3999fb 100644 --- a/root/scss/_settings.scss +++ b/root/scss/_settings.scss @@ -174,9 +174,13 @@ $small-only: "#{$screen} and (max-width: #{upper-bound($small-range)})"; $medium-up: "#{$screen} and (min-width:#{lower-bound($medium-range)})"; $medium-only: "#{$screen} and (min-width:#{lower-bound($medium-range)}) and (max-width:#{upper-bound($medium-range)})"; +$medium-down: "#{$screen} and (min-width:#{lower-bound($small-range)}) and (max-width:#{upper-bound($medium-range)})"; + $large-up: "#{$screen} and (min-width:#{lower-bound($large-range)})"; $large-only: "#{$screen} and (min-width:#{lower-bound($large-range)}) and (max-width:#{upper-bound($large-range)})"; +$large-down: "#{$screen} and (min-width:#{lower-bound($small-range)}) and (max-width:#{upper-bound($large-range)})"; + $xlarge-up: "#{$screen} and (min-width:#{lower-bound($xlarge-range)})"; $xlarge-only: "#{$screen} and (min-width:#{lower-bound($xlarge-range)}) and (max-width:#{upper-bound($xlarge-range)})";