You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
4.6 KiB
138 lines
4.6 KiB
/* |
|
* DO NOT EDIT THIS FILE. |
|
* See the following change record for more information, |
|
* https://www.drupal.org/node/3084859 |
|
* @preserve |
|
*/ |
|
|
|
/** |
|
* @file |
|
* Grid system definition for the content narrow layout. |
|
*/ |
|
|
|
.layout--content-narrow, |
|
.layout--pass--content-narrow > * { |
|
grid-column: 1 / 7; |
|
width: 100%; |
|
} |
|
|
|
@media (min-width: 43.75rem) { |
|
.layout--content-narrow, |
|
.layout--pass--content-narrow > * { |
|
grid-column: 2 / 14; |
|
} |
|
} |
|
|
|
@media (min-width: 62.5rem) { |
|
.layout--content-narrow, |
|
.layout--pass--content-narrow > * { |
|
grid-column: 3 / 11; |
|
} |
|
} |
|
|
|
/* |
|
If .layout--content-narrow is nested within any of the following, allocate the appropriate |
|
amount of columns within its parent .grid-full. |
|
- .layout--content-narrow class. |
|
- Element that's inheriting the layout--content-narrow styles from its parent region. |
|
- .layout--content-medium class. |
|
- Element that's inheriting the layout--content-medium styles from its parent region. |
|
*/ |
|
|
|
@media (min-width: 43.75rem) { |
|
.layout--content-narrow .layout--content-narrow, |
|
.layout--pass--content-narrow > * .layout--content-narrow, |
|
.layout--content-medium .layout--content-narrow, |
|
.layout--pass--content-medium > * .layout--content-narrow, |
|
.layout--content-narrow .layout--pass--content-narrow > *, |
|
.layout--pass--content-narrow > * .layout--pass--content-narrow > *, |
|
.layout--content-medium .layout--pass--content-narrow > *, |
|
.layout--pass--content-medium > * .layout--pass--content-narrow > * { |
|
grid-column: 1 / 13; |
|
} |
|
} |
|
|
|
@media (min-width: 62.5rem) { |
|
.layout--content-narrow .layout--content-narrow, |
|
.layout--pass--content-narrow > * .layout--content-narrow, |
|
.layout--content-medium .layout--content-narrow, |
|
.layout--pass--content-medium > * .layout--content-narrow, |
|
.layout--content-narrow .layout--pass--content-narrow > *, |
|
.layout--pass--content-narrow > * .layout--pass--content-narrow > *, |
|
.layout--content-medium .layout--pass--content-narrow > *, |
|
.layout--pass--content-medium > * .layout--pass--content-narrow > * { |
|
grid-column: 1 / 9; |
|
} |
|
} |
|
|
|
/* |
|
Special grid-breaking treatment for text-content elements that |
|
reside in a content-narrow layout. |
|
*/ |
|
|
|
@media (min-width: 43.75rem) { |
|
.layout--content-narrow.text-content blockquote::before, |
|
.layout--pass--content-narrow > *.text-content blockquote::before, |
|
.layout--content-narrow .text-content blockquote::before, |
|
.layout--pass--content-narrow > * .text-content blockquote::before { |
|
inset-inline-start: calc(-1 * (var(--grid-col-width) + var(--grid-gap))); |
|
} |
|
} |
|
|
|
@media (min-width: 43.75rem) { |
|
.layout--content-narrow.text-content blockquote::after, |
|
.layout--pass--content-narrow > *.text-content blockquote::after, |
|
.layout--content-narrow .text-content blockquote::after, |
|
.layout--pass--content-narrow > * .text-content blockquote::after { |
|
inset-inline-start: calc(-1 * (var(--grid-col-width) + var(--grid-gap))); |
|
width: var(--sp); |
|
height: calc(100% - 2.8125rem); |
|
margin-inline-start: 2px; |
|
} |
|
} |
|
|
|
@media (min-width: 43.75rem) { |
|
.layout--content-narrow.text-content blockquote, |
|
.layout--pass--content-narrow > *.text-content blockquote, |
|
.layout--content-narrow .text-content blockquote, |
|
.layout--pass--content-narrow > * .text-content blockquote { |
|
width: calc(10 * var(--grid-col-width) + 9 * var(--grid-gap)); |
|
margin-block: var(--sp3); |
|
padding-inline-start: 0; |
|
} |
|
} |
|
|
|
@media (min-width: 43.75rem) { |
|
.layout--content-narrow.text-content pre, |
|
.layout--pass--content-narrow > *.text-content pre, |
|
.layout--content-narrow .text-content pre, |
|
.layout--pass--content-narrow > * .text-content pre { |
|
margin-block: var(--sp3); |
|
} |
|
} |
|
|
|
@media (min-width: 62.5rem) { |
|
.layout--content-narrow.text-content pre, |
|
.layout--pass--content-narrow > *.text-content pre, |
|
.layout--content-narrow .text-content pre, |
|
.layout--pass--content-narrow > * .text-content pre { |
|
width: calc(12 * var(--grid-col-width) + 11 * var(--grid-gap)); |
|
margin-inline-start: calc(-1 * (var(--grid-col-width) + var(--grid-gap))); |
|
} |
|
} |
|
|
|
/** |
|
* <pre> and <blockquote> elements should not break containers and overflow |
|
* into sidebar region when present. |
|
*/ |
|
|
|
.sidebar-grid .layout--content-narrow.text-content blockquote, |
|
.sidebar-grid .layout--pass--content-narrow > *.text-content blockquote, |
|
.sidebar-grid .layout--content-narrow .text-content blockquote, |
|
.sidebar-grid .layout--pass--content-narrow > * .text-content blockquote, |
|
.sidebar-grid .layout--content-narrow.text-content pre, |
|
.sidebar-grid .layout--pass--content-narrow > *.text-content pre, |
|
.sidebar-grid .layout--content-narrow .text-content pre, |
|
.sidebar-grid .layout--pass--content-narrow > * .text-content pre { |
|
width: auto; |
|
}
|
|
|