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

Issue #3398277 by saschaeggi, Gauravvvv, bnjmnm, cilefen: Claro content editing area is too narrow

parent 5863929d
No related branches found
No related tags found
17 merge requests!8376Drupal views: adding more granularity to the ‘use ajax’ functionality,!8300Issue #3443586 View area displays even when parent view has no results.,!7567Issue #3153723 by quietone, Hardik_Patel_12: Change the scaffolding...,!7565Issue #3153723 by quietone, Hardik_Patel_12: Change the scaffolding...,!7509Change label "Block description" to "Block type",!7344Issue #3292350 by O'Briat, KlemenDEV, hswong3i, smustgrave, quietone: Update...,!6922Issue #3412959 by quietone, smustgrave, longwave: Fix 12 'un' words,!6848Issue #3417553 by longwave: Remove withConsecutive() in CacheCollectorTest,!6720Revert "Issue #3358581 by pfrenssen, _tarik_, a.dmitriiev, smustgrave:...,!6560Update ClaroPreRender.php, confirming classes provided are in array format,!6528Issue #3414261 by catch: Add authenticated user umami performance tests,!6501Issue #3263668 by omkar-pd, Wim Leers, hooroomoo: Re-enable inline form errors...,!6354Draft: Issue #3380392 by phma: Updating language weight from the overview reverts label if translated,!6324Issue #3416723 by Ludo.R: Provide a "node type" views default argument,!6119Issue #3405704 by Spokje, longwave: symfony/psr-http-message-bridge major version bump,!5950Issue #3403653 by alexpott, longwave: Incorporate improvements to how contrib runs PHPStan to core,!5858Issue #3401971 by fjgarlin: Test-only job shouldn't require constant rebases...
Pipeline #64521 passed with warnings
Pipeline: drupal

#64537

    Pipeline: drupal

    #64531

      Pipeline: drupal

      #64526

        +1
        ......@@ -249,4 +249,9 @@
        * Breadcrumb.
        */
        --breadcrumb-height: 1.25rem;
        /**
        * Layout.
        */
        --layout-region-edit-width: min(60rem, 100%);
        --layout-region-edit-extended-width: min(68rem, 100%);
        }
        ......@@ -243,4 +243,9 @@
        * Breadcrumb.
        */
        --breadcrumb-height: 1.25rem;
        /**
        * Layout.
        */
        --layout-region-edit-width: min(960px, 100%);
        --layout-region-edit-extended-width: min(1088px, 100%);
        }
        ......@@ -28,7 +28,13 @@
        .layout-region--node-footer {
        grid-column: 1;
        margin-inline: auto;
        width: min(52rem, 100%);
        width: var(--layout-region-edit-width);
        }
        /* When the layout has vertical tabs */
        .layout-region--node-main:has(.vertical-tabs),
        .layout-region--node-main:has(.vertical-tabs) ~ .layout-region--node-footer {
        width: var(--layout-region-edit-extended-width);
        }
        /* Push sidebar down to horizontal align with form section. */
        ......
        ......@@ -24,7 +24,13 @@
        .layout-region--node-footer {
        grid-column: 1;
        margin-inline: auto;
        width: min(832px, 100%);
        width: var(--layout-region-edit-width);
        }
        /* When the layout has vertical tabs */
        .layout-region--node-main:has(.vertical-tabs),
        .layout-region--node-main:has(.vertical-tabs) ~ .layout-region--node-footer {
        width: var(--layout-region-edit-extended-width);
        }
        /* Push sidebar down to horizontal align with form section. */
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment