test/css/grid/layout.css in ezy-0.2.6.alpha vs test/css/grid/layout.css in ezy-0.2.7.alpha

- old
+ new

@@ -41,29 +41,37 @@ _display: inline; } .page { max-width: 330px; + /* Forcing static grid on IE6 and IE7 */ + *width: 330px; padding-left: 1em; padding-right: 1em; } @media (min-width: 990px) { .page { max-width: 690px; + /* Forcing static grid on IE6 and IE7 */ + *width: 690px; padding-left: 50px; padding-right: 100px; } } @media (min-width: 1250px) { .page { max-width: 1050px; + /* Forcing static grid on IE6 and IE7 */ + *width: 1050px; padding-left: 100px; padding-right: 100px; } } .no-media-queries .page { /* Fallback for browsers not supporting media queries */ max-width: 1050px; + /* Forcing static grid on IE6 and IE7 */ + *width: 1050px; padding-left: 100px; padding-right: 100px; } .grid {