From: Môshe van der Sterre Date: Fri, 27 Dec 2013 20:27:51 +0000 (+0100) Subject: Small fix: I noticed the use of a deprecated variable. This seems to be the only... X-Git-Tag: v3.1.0~132^2~1^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F12028%2Fhead;p=thirdparty%2Fbootstrap.git Small fix: I noticed the use of a deprecated variable. This seems to be the only occurrence. --- diff --git a/less/mixins.less b/less/mixins.less index 5bcaeabbca..31992feca3 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -706,7 +706,7 @@ } } .make-md-column-push(@columns) { - @media (min-width: @screen-md) { + @media (min-width: @screen-md-min) { left: percentage((@columns / @grid-columns)); } }