Skip to content
Snippets Groups Projects
Commit 15ebeed5 authored by catch's avatar catch
Browse files

Issue #3262135 by kostyashupenko, longwave, Spokje, arunkumark,...

Issue #3262135 by kostyashupenko, longwave, Spokje, arunkumark, immaculatexavier: Olivero: Removal of the ie11-autorow CSS class

(cherry picked from commit f3b89549)
parent 8398ea32
No related branches found
No related tags found
19 merge requests!8506Draft: Issue #3456536 by ibrahim tameme,!5646Issue #3350972 by nod_: [random test failure]...,!5600Issue #3350972 by nod_: [random test failure]...,!5343Issue #3305066 by quietone, Rename RedirectLeadingSlashesSubscriber,!3603#ISSUE 3346218 Add a different message on edit comment,!3555Issue #2473873: Views entity operations lack cacheability support, resulting in incorrect dropbuttons,!3494Issue #3327018 by Spokje, longwave, xjm, mondrake: Update PHPStan to 1.9.3 and...,!3410Issue #3340128: UserLoginForm::submitForm has some dead code,!3389Issue #3325184 by Spokje, andypost, xjm, smustgrave: $this->configFactory is...,!3381Issue #3332363: Refactor Claro's menus-and-lists stylesheet,!3307Issue #3326193: CKEditor 5 can grow past the viewport when there is a lot of content,!3236Issue #3332419: Refactor Claro's messages stylesheet,!3231Draft: Issue #3049525 by longwave, fougere, larowlan, kim.pepper, AaronBauman, Wim...,!3212Issue #3294003: Refactor Claro's entity-meta stylesheet,!3194Issue #3330981: Fix PHPStan L1 error "Relying on entity queries to check access by default is deprecated...",!3143Issue #3313342: [PHP 8.1] Deprecated function: strpos(): Passing null to parameter #1 LayoutBuilderUiCacheContext.php on line 28,!2972Issue #1845004: Replace custom password hashing library with PHP 5.5 password_hash(),!2296Issue #3100732: Allow specifying `meta` data on JSON:API objects,!1626Issue #3256642: Make life better for database drivers that extend another database driver
Showing
with 3 additions and 140 deletions
......@@ -75,7 +75,6 @@ autop
autoplace
autoplay
autoreply
autorow
autosave
autosubmit
autowire
......
/*
* DO NOT EDIT THIS FILE.
* See the following change record for more information,
* https://www.drupal.org/node/3084859
* @preserve
*/
/**
* @file
* Utility classes.
*/
/*
* Media query breakpoints.
* Processed by postcss/postcss-custom-media.
*/
/* Navigation related breakpoints */
/* Grid related breakpoints */
/* Grid shifts from 6 to 14 columns. */
/* Width of the entire grid maxes out. */
/*
ie11-autorow
IE11 does not automatically place new rows, which leads to overlapping
content. We can work around this (when we know that each grid item is
going to span the full width) by setting each child to a new row.
*/
.ie11-autorow > *:nth-child(1) {
-ms-grid-row: 1;
}
.ie11-autorow > *:nth-child(2) {
-ms-grid-row: 2;
}
.ie11-autorow > *:nth-child(3) {
-ms-grid-row: 3;
}
.ie11-autorow > *:nth-child(4) {
-ms-grid-row: 4;
}
.ie11-autorow > *:nth-child(5) {
-ms-grid-row: 5;
}
.ie11-autorow > *:nth-child(6) {
-ms-grid-row: 6;
}
.ie11-autorow > *:nth-child(7) {
-ms-grid-row: 7;
}
.ie11-autorow > *:nth-child(8) {
-ms-grid-row: 8;
}
.ie11-autorow > *:nth-child(9) {
-ms-grid-row: 9;
}
.ie11-autorow > *:nth-child(10) {
-ms-grid-row: 10;
}
/**
* @file
* Utility classes.
*/
@import "../base/media-queries.pcss.css";
/*
ie11-autorow
IE11 does not automatically place new rows, which leads to overlapping
content. We can work around this (when we know that each grid item is
going to span the full width) by setting each child to a new row.
*/
.ie11-autorow > * {
&:nth-child(1) {
-ms-grid-row: 1;
}
&:nth-child(2) {
-ms-grid-row: 2;
}
&:nth-child(3) {
-ms-grid-row: 3;
}
&:nth-child(4) {
-ms-grid-row: 4;
}
&:nth-child(5) {
-ms-grid-row: 5;
}
&:nth-child(6) {
-ms-grid-row: 6;
}
&:nth-child(7) {
-ms-grid-row: 7;
}
&:nth-child(8) {
-ms-grid-row: 8;
}
&:nth-child(9) {
-ms-grid-row: 9;
}
&:nth-child(10) {
-ms-grid-row: 10;
}
}
......@@ -5,7 +5,6 @@ global-styling:
css/base/fonts.css: {}
css/base/variables.css: {}
css/base/base.css: {}
css/base/utility.css: {}
layout:
css/layout/layout.css: {}
css/layout/grid.css: {}
......
......@@ -74,7 +74,6 @@
'node',
'node--type-' ~ node.bundle|clean_class,
layout ? 'grid-full',
layout ? 'ie11-autorow',
node.isPromoted() ? 'node--promoted',
node.isSticky() ? 'node--sticky',
not node.isPublished() ? 'node--unpublished',
......
......@@ -100,7 +100,7 @@
{% if page.sidebar %}
<div class="sidebar-grid grid-full">
<main role="main" class="site-main ie11-autorow">
<main role="main" class="site-main">
{{ page.content_above }}
{{ page.content }}
</main>
......
......@@ -19,7 +19,6 @@
'region--' ~ region|clean_class,
'grid-full',
'layout--pass--content-medium',
'ie11-autorow',
]
%}
......
......@@ -19,7 +19,6 @@
'region--' ~ region|clean_class,
'grid-full',
'layout--pass--content-medium',
'ie11-autorow',
]
%}
......
......@@ -19,7 +19,6 @@
'region--' ~ region|clean_class,
'grid-full',
'layout--pass--content-medium',
'ie11-autorow',
]
%}
......
......@@ -19,7 +19,6 @@
'region--' ~ region|clean_class,
'grid-full',
'layout--pass--content-medium',
'ie11-autorow',
]
%}
......
......@@ -19,7 +19,6 @@
'region--' ~ region|clean_class,
'grid-full',
'layout--pass--content-medium',
'ie11-autorow',
]
%}
......
......@@ -19,7 +19,6 @@
'region--' ~ region|clean_class,
'grid-full',
'layout--pass--content-medium',
'ie11-autorow',
]
%}
......
......@@ -39,12 +39,12 @@
<div class="main-content__container container">
{{ page.highlighted }}
<main role="main">
<div class="region region--content-above grid-full layout--pass--content-medium ie11-autorow">
<div class="region region--content-above grid-full layout--pass--content-medium">
{% if title %}
<h1 class="title" id="page-title">{{ title }}</h1>
{% endif %}
</div>
<div class="region region--content grid-full layout--pass--content-medium ie11-autorow" id="content">
<div class="region region--content grid-full layout--pass--content-medium" id="content">
<div id="block-olivero-content" class="block block-system block-system-main-block text-content">
{{ page.content }}
......
......@@ -41,7 +41,6 @@
'view-display-id-' ~ display_id,
'grid-full',
'layout--pass--content-narrow',
'ie11-autorow',
]
%}
<div{{ attributes.addClass(classes) }}>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment