title.css

Same filename and directory in other branches
  1. 11.x core/modules/navigation/components/title/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. :is(#extra-specificity-hack, [data-drupal-admin-styles]) {
  13. .toolbar-title {
  14. font-variation-settings: "wght" 500;
  15. }
  16. /* Sizes aligned with variables from css/base/variables.pcss.css */
  17. .toolbar-title--xs {
  18. font-size: var(--admin-toolbar-font-size-heading-xs);
  19. }
  20. .toolbar-title--ellipsis {
  21. .toolbar-title__label {
  22. overflow: hidden;
  23. max-width: var(--toolbar--title-max-width);
  24. white-space: nowrap;
  25. text-overflow: ellipsis;
  26. }
  27. }
  28. .toolbar-title:has(.toolbar-title__icon) {
  29. display: flex;
  30. align-items: center;
  31. gap: var(--admin-toolbar-space-8);
  32. }
  33. .toolbar-title__icon {
  34. flex-shrink: 0;
  35. inline-size: var(--admin-toolbar-space-16);
  36. block-size: var(--admin-toolbar-space-16);
  37. @media (forced-colors: active) {
  38. &,
  39. path {
  40. &:not([fill="none"]) {
  41. fill: canvasText;
  42. }
  43. }
  44. }
  45. }
  46. }

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