title.css

Toolbar title styles.

File

core/modules/navigation/components/title/title.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. /* cspell:ignore csvg cpath wght */
  8. /**
  9. * @file
  10. * Toolbar title styles.
  11. */
  12. .toolbar-title {
  13. font-variation-settings: "wght" 500;
  14. }
  15. /* Sizes aligned with variables from css/base/variables.pcss.css */
  16. .toolbar-title--xs {
  17. font-size: var(--admin-toolbar-font-size-heading-xs);
  18. }
  19. .toolbar-title--ellipsis .toolbar-title__label {
  20. overflow: hidden;
  21. max-width: var(--toolbar--title-max-width);
  22. white-space: nowrap;
  23. text-overflow: ellipsis;
  24. }
  25. .toolbar-title:has(.toolbar-title__icon) {
  26. display: flex;
  27. align-items: center;
  28. gap: var(--admin-toolbar-space-8);
  29. }
  30. .toolbar-title__icon {
  31. flex-shrink: 0;
  32. inline-size: var(--admin-toolbar-space-16);
  33. block-size: var(--admin-toolbar-space-16);
  34. }

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.