From: Panayiotis Lipiridis Date: Mon, 20 Oct 2014 19:43:03 +0000 (+0200) Subject: Removed double parentheses from expressions X-Git-Tag: v3.3.0~86^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F14836%2Fhead;p=thirdparty%2Fbootstrap.git Removed double parentheses from expressions --- diff --git a/less/variables.less b/less/variables.less index 86d53e629b..5610236f38 100644 --- a/less/variables.less +++ b/less/variables.less @@ -322,17 +322,17 @@ //## Define the maximum width of `.container` for different screen sizes. // Small screen / tablet -@container-tablet: ((720px + @grid-gutter-width)); +@container-tablet: (720px + @grid-gutter-width); //** For `@screen-sm-min` and up. @container-sm: @container-tablet; // Medium screen / desktop -@container-desktop: ((940px + @grid-gutter-width)); +@container-desktop: (940px + @grid-gutter-width); //** For `@screen-md-min` and up. @container-md: @container-desktop; // Large screen / wide desktop -@container-large-desktop: ((1140px + @grid-gutter-width)); +@container-large-desktop: (1140px + @grid-gutter-width); //** For `@screen-lg-min` and up. @container-lg: @container-large-desktop;