Skip to content
Snippets Groups Projects
Verified Commit dd0ee83f authored by Cristina Chumillas's avatar Cristina Chumillas
Browse files

Issue #3446078 by mherchel, javi-er: Olivero content shift on page load

parent 05b6144b
No related branches found
No related tags found
6 merge requests!11958Issue #3490507 by alexpott, smustgrave: Fix bogus mocking in...,!11769Issue #3517987: Add option to contextual filters to encode slashes in query parameter.,!11185Issue #3477324 by andypost, alexpott: Fix usage of str_getcsv() and fgetcsv() for PHP 8.4,!9944Issue #3483353: Consider making the createCopy config action optionally fail...,!8325Update file Sort.php,!8095Expose document root on install
Pipeline #167906 canceled
Pipeline: drupal

#167909

    ......@@ -65,3 +65,12 @@ body.is-fixed .container {
    padding-block-start: var(--sp5);
    }
    }
    /*
    * Contextual link wrappers load without the ".contextual" CSS class, which
    * causes layout shifts. We fix this by setting this to position: absolute;
    */
    [data-contextual-id]:not(.contextual) {
    position: absolute;
    }
    ......@@ -55,3 +55,11 @@
    padding-block-start: var(--sp5);
    }
    }
    /*
    * Contextual link wrappers load without the ".contextual" CSS class, which
    * causes layout shifts. We fix this by setting this to position: absolute;
    */
    [data-contextual-id]:not(.contextual) {
    position: absolute;
    }
    ......@@ -10,18 +10,18 @@
    * Region default layout.
    */
    .region > * {
    .region > *:where(:not([data-big-pipe-placeholder-id])) {
    margin-block-end: var(--sp);
    }
    @media (min-width: 43.75rem) {
    .region > * {
    .region > *:where(:not([data-big-pipe-placeholder-id])) {
    margin-block-end: var(--sp2);
    }
    }
    @media (min-width: 62.5rem) {
    .region > * {
    .region > *:where(:not([data-big-pipe-placeholder-id])) {
    margin-block-end: var(--sp3);
    }
    }
    ......@@ -5,7 +5,7 @@
    @import "../base/media-queries.pcss.css";
    .region > * {
    .region > *:where(:not([data-big-pipe-placeholder-id])) {
    margin-block-end: var(--sp);
    @media (--md) {
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment