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.
81 lines
1.7 KiB
81 lines
1.7 KiB
/* |
|
* DO NOT EDIT THIS FILE. |
|
* See the following change record for more information, |
|
* https://www.drupal.org/node/3084859 |
|
* @preserve |
|
*/ |
|
|
|
/** |
|
* @file |
|
* Visual styles for fields. |
|
*/ |
|
|
|
/* |
|
* 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. */ |
|
|
|
.field:not(:last-child) { |
|
margin-bottom: var(--sp2); |
|
} |
|
|
|
.node--view-mode-teaser .field { |
|
margin-bottom: var(--sp) |
|
} |
|
|
|
.node--view-mode-teaser .field:last-child { |
|
margin-bottom: 0; |
|
} |
|
|
|
@media (min-width: 62.5rem) { |
|
|
|
.node--view-mode-teaser .field { |
|
margin-bottom: var(--sp2) |
|
} |
|
} |
|
|
|
.field__label { |
|
font-weight: bold; |
|
} |
|
|
|
.field--label-inline .field__label, |
|
.field--label-inline .field__items { |
|
float: left /* LTR */ |
|
|
|
/** |
|
* Chromium and Webkit do not yet support flow relative logical properties, |
|
* such as float: inline-end. However, PostCSS Logical does not compile this |
|
* value, so we accommodate by not using these. |
|
* |
|
* @see https://caniuse.com/mdn-css_properties_clear_flow_relative_values |
|
* @see https://github.com/csstools/postcss-plugins/issues/632 |
|
*/ |
|
} |
|
|
|
[dir="rtl"] .field--label-inline .field__label,[dir="rtl"] .field--label-inline .field__items { |
|
float: right; |
|
} |
|
|
|
[dir="ltr"] .field--label-inline .field__label,[dir="ltr"] |
|
.field--label-inline > .field__item,[dir="ltr"] |
|
.field--label-inline .field__items { |
|
padding-right: 0.5em; |
|
} |
|
|
|
[dir="rtl"] .field--label-inline .field__label,[dir="rtl"] |
|
.field--label-inline > .field__item,[dir="rtl"] |
|
.field--label-inline .field__items { |
|
padding-left: 0.5em; |
|
} |
|
|
|
.field--label-inline .field__label::after { |
|
content: ":"; |
|
}
|
|
|