Skip to content
Snippets Groups Projects
Unverified Commit 81c0d2cc authored by Lauri Timmanee's avatar Lauri Timmanee
Browse files

Issue #3211889 by mherchel, Gauravmahlawat: Autoprefixer and PostCSS calc not...

Issue #3211889 by mherchel, Gauravmahlawat: Autoprefixer and PostCSS calc not generating proper IE11 grid syntax when repeat() function contains calc()

(cherry picked from commit 51a82dbf)
parent a06d5d8e
Branches
Tags
11 merge requests!10011Issue #3200534 by quietone, longwave, Kristen Pol: Use dataprovider for...,!3134Issue #3222236: Lighthouse SEO: Uncrawlable Link a#main-content,!2571Issue #3000717: Missing mapping for "nodereference_url" widget,!2521Issue #3185775: Place Views preview on the side on large monitors,!1603Issue #3231707: mxr576's core patch playground,!1479Issue #3250298: Return empty string "" with JSON Serializer instead of FALSE,!1478Issue #3250298: Return empty string "" with JSON Serializer instead of FALSE,!1203Issue #3236191 Wrong group exposed form widgets and multiple selection error.,!1076Issue #2903336 Added node context for tokens.,!1015Issue #3226944: REST's Request handler doesn't resolve $data argument for put method,!577Issue #3209779: Create new database storage for the tracker module
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
.layout--content-narrow .grid-full, .layout--content-narrow .grid-full,
.layout--pass--content-narrow > * .grid-full { .layout--pass--content-narrow > * .grid-full {
-ms-grid-columns: (minmax(0, 1fr))12]; -ms-grid-columns: (minmax(0, 1fr))[ 12 ];
grid-template-columns: repeat(12, minmax(0, 1fr)) grid-template-columns: repeat(12, minmax(0, 1fr))
} }
} }
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
.layout--content-narrow .grid-full, .layout--content-narrow .grid-full,
.layout--pass--content-narrow > * .grid-full { .layout--pass--content-narrow > * .grid-full {
-ms-grid-columns: (minmax(0, 1fr))8]; -ms-grid-columns: (minmax(0, 1fr))[ 8 ];
grid-template-columns: repeat(8, minmax(0, 1fr)) grid-template-columns: repeat(8, minmax(0, 1fr))
} }
} }
...@@ -69,7 +69,7 @@ ...@@ -69,7 +69,7 @@
.layout--content-medium .grid-full, .layout--content-medium .grid-full,
.layout--pass--content-medium > * .grid-full { .layout--pass--content-medium > * .grid-full {
-ms-grid-columns: (minmax(0, 1fr))12]; -ms-grid-columns: (minmax(0, 1fr))[ 12 ];
grid-template-columns: repeat(12, minmax(0, 1fr)) grid-template-columns: repeat(12, minmax(0, 1fr))
} }
} }
...@@ -78,7 +78,7 @@ ...@@ -78,7 +78,7 @@
.layout--content-medium .grid-full, .layout--content-medium .grid-full,
.layout--pass--content-medium > * .grid-full { .layout--pass--content-medium > * .grid-full {
-ms-grid-columns: (minmax(0, 1fr))10]; -ms-grid-columns: (minmax(0, 1fr))[ 10 ];
grid-template-columns: repeat(10, minmax(0, 1fr)) grid-template-columns: repeat(10, minmax(0, 1fr))
} }
} }
...@@ -30,10 +30,12 @@ ...@@ -30,10 +30,12 @@
.layout--content-narrow .grid-full, .layout--content-narrow .grid-full,
.layout--pass--content-narrow > * .grid-full { .layout--pass--content-narrow > * .grid-full {
@media (--grid-md) { @media (--grid-md) {
-ms-grid-columns: (minmax(0, 1fr))[ calc(var(--grid-col-count--md) - 2) ];
grid-template-columns: repeat(calc(var(--grid-col-count--md) - 2), minmax(0, 1fr)); grid-template-columns: repeat(calc(var(--grid-col-count--md) - 2), minmax(0, 1fr));
} }
@media (--lg) { @media (--lg) {
-ms-grid-columns: (minmax(0, 1fr))[ calc(var(--grid-col-count--lg) - 6) ];
grid-template-columns: repeat(calc(var(--grid-col-count--lg) - 6), minmax(0, 1fr)); grid-template-columns: repeat(calc(var(--grid-col-count--lg) - 6), minmax(0, 1fr));
} }
} }
...@@ -46,10 +48,12 @@ ...@@ -46,10 +48,12 @@
.layout--content-medium .grid-full, .layout--content-medium .grid-full,
.layout--pass--content-medium > * .grid-full { .layout--pass--content-medium > * .grid-full {
@media (--grid-md) { @media (--grid-md) {
-ms-grid-columns: (minmax(0, 1fr))[ calc(var(--grid-col-count--md) - 2) ];
grid-template-columns: repeat(calc(var(--grid-col-count--md) - 2), minmax(0, 1fr)); grid-template-columns: repeat(calc(var(--grid-col-count--md) - 2), minmax(0, 1fr));
} }
@media (--lg) { @media (--lg) {
-ms-grid-columns: (minmax(0, 1fr))[ calc(var(--grid-col-count--md) - 4) ];
grid-template-columns: repeat(calc(var(--grid-col-count--md) - 4), minmax(0, 1fr)); grid-template-columns: repeat(calc(var(--grid-col-count--md) - 4), minmax(0, 1fr));
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment