layout-builder-fourcol-section.css
Same filename in other branches
/* * DO NOT EDIT THIS FILE. * See the following change record for more information, * https://www.drupal.org/node/3084859 * @preserve */ /* * @file * Provides the layout styles for four-column layout section. */ .layout--fourcol-section { display: flex; flex-wrap: wrap; } .layout--fourcol-section > .layout__region { flex: 1 0 100%; margin-block-end: var(--grid-gap); } @media (min-width: 43.75rem) { .layout--fourcol-section > .layout__region { flex-basis: calc(50% - (var(--grid-gap) * 0.5)); flex-grow: 0; flex-shrink: 0; margin-block-end: 0; } } /* Two column layout. */ @media (min-width: 43.75rem) { .layout--fourcol-section > .layout__region--first, .layout--fourcol-section > .layout__region--second { margin-block-end: var(--grid-gap); } .layout--fourcol-section > .layout__region--first, .layout--fourcol-section > .layout__region--third { margin-inline-end: calc(var(--grid-gap) * 0.5); } .layout--fourcol-section > .layout__region--second, .layout--fourcol-section > .layout__region--fourth { margin-inline-start: calc(var(--grid-gap) * 0.5); } } /* Four column layout. */ @media (min-width: 62.5rem) { .layout--fourcol-section > .layout__region { flex-basis: calc(25% - (var(--grid-gap) * 0.75)); } .layout--fourcol-section > .layout__region--first, .layout--fourcol-section > .layout__region--second { margin-block-end: 0; } .layout--fourcol-section > .layout__region--first { margin-inline-end: calc(var(--grid-gap) * 0.5); } .layout--fourcol-section > .layout__region--second, .layout--fourcol-section > .layout__region--third { margin-inline: calc(var(--grid-gap) * 0.5); } .layout--fourcol-section > .layout__region--fourth { margin-inline-start: calc(var(--grid-gap) * 0.5); } }
File
-
core/
themes/ olivero/ css/ layout/ layout-builder-fourcol-section.css
View source
- /*
- * DO NOT EDIT THIS FILE.
- * See the following change record for more information,
- * https://www.drupal.org/node/3084859
- * @preserve
- */
-
- /*
- * @file
- * Provides the layout styles for four-column layout section.
- */
-
- .layout--fourcol-section {
- display: flex;
- flex-wrap: wrap;
- }
-
- .layout--fourcol-section > .layout__region {
- flex: 1 0 100%;
- margin-block-end: var(--grid-gap);
- }
-
- @media (min-width: 43.75rem) {
- .layout--fourcol-section > .layout__region {
- flex-basis: calc(50% - (var(--grid-gap) * 0.5));
- flex-grow: 0;
- flex-shrink: 0;
- margin-block-end: 0;
- }
- }
-
- /* Two column layout. */
-
- @media (min-width: 43.75rem) {
- .layout--fourcol-section > .layout__region--first,
- .layout--fourcol-section > .layout__region--second {
- margin-block-end: var(--grid-gap);
- }
-
- .layout--fourcol-section > .layout__region--first,
- .layout--fourcol-section > .layout__region--third {
- margin-inline-end: calc(var(--grid-gap) * 0.5);
- }
-
- .layout--fourcol-section > .layout__region--second,
- .layout--fourcol-section > .layout__region--fourth {
- margin-inline-start: calc(var(--grid-gap) * 0.5);
- }
- }
-
- /* Four column layout. */
-
- @media (min-width: 62.5rem) {
- .layout--fourcol-section > .layout__region {
- flex-basis: calc(25% - (var(--grid-gap) * 0.75));
- }
-
- .layout--fourcol-section > .layout__region--first,
- .layout--fourcol-section > .layout__region--second {
- margin-block-end: 0;
- }
-
- .layout--fourcol-section > .layout__region--first {
- margin-inline-end: calc(var(--grid-gap) * 0.5);
- }
-
- .layout--fourcol-section > .layout__region--second,
- .layout--fourcol-section > .layout__region--third {
- margin-inline: calc(var(--grid-gap) * 0.5);
- }
-
- .layout--fourcol-section > .layout__region--fourth {
- margin-inline-start: calc(var(--grid-gap) * 0.5);
- }
- }
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.