]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Removed double parentheses from expressions 14836/head
authorPanayiotis Lipiridis <lipiridis@gmail.com>
Mon, 20 Oct 2014 19:43:03 +0000 (21:43 +0200)
committerPanayiotis Lipiridis <lipiridis@gmail.com>
Mon, 20 Oct 2014 19:43:03 +0000 (21:43 +0200)
less/variables.less

index 86d53e629b1205c8e1975174ad3091158d8fab80..5610236f385f80f2eceb886e40c0bc2923990d2f 100644 (file)
 //## 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;