You are here

field.css in Drupal 10

Visual styles for fields.

File

core/themes/olivero/css/components/field.css
View source
  1. /*
  2. * DO NOT EDIT THIS FILE.
  3. * See the following change record for more information,
  4. * https://www.drupal.org/node/3084859
  5. * @preserve
  6. */
  7. /**
  8. * @file
  9. * Visual styles for fields.
  10. */
  11. /*
  12. * Media query breakpoints.
  13. * Processed by postcss/postcss-custom-media.
  14. */
  15. /* Navigation related breakpoints */
  16. /* Grid related breakpoints */
  17. /* Grid shifts from 6 to 14 columns. */
  18. /* Width of the entire grid maxes out. */
  19. .field:not(:last-child) {
  20. margin-bottom: var(--sp2);
  21. }
  22. .node--view-mode-teaser .field {
  23. margin-bottom: var(--sp)
  24. }
  25. .node--view-mode-teaser .field:last-child {
  26. margin-bottom: 0;
  27. }
  28. @media (min-width: 62.5rem) {
  29. .node--view-mode-teaser .field {
  30. margin-bottom: var(--sp2)
  31. }
  32. }
  33. .field__label {
  34. font-weight: bold;
  35. }
  36. [dir="ltr"] .field--label-inline .field__label,[dir="ltr"]
  37. .field--label-inline .field__items {
  38. float: left;
  39. }
  40. [dir="rtl"] .field--label-inline .field__label,[dir="rtl"]
  41. .field--label-inline .field__items {
  42. float: right;
  43. }
  44. [dir="ltr"] .field--label-inline .field__label,[dir="ltr"]
  45. .field--label-inline > .field__item,[dir="ltr"]
  46. .field--label-inline .field__items {
  47. padding-right: 0.5em;
  48. }
  49. [dir="rtl"] .field--label-inline .field__label,[dir="rtl"]
  50. .field--label-inline > .field__item,[dir="rtl"]
  51. .field--label-inline .field__items {
  52. padding-left: 0.5em;
  53. }
  54. .field--label-inline .field__label::after {
  55. content: ":";
  56. }