You are here

breadcrumb.css in Drupal 9

Breadcrumbs.

File

core/themes/claro/css/components/breadcrumb.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. * Breadcrumbs.
  10. */
  11. .breadcrumb {
  12. padding: 0;
  13. color: #222330;
  14. font-size: 0.79rem;
  15. }
  16. .breadcrumb__list,
  17. [dir="rtl"] .breadcrumb__list {
  18. margin: 0;
  19. padding: 0;
  20. list-style-type: none;
  21. }
  22. .breadcrumb__item,
  23. .breadcrumb__link {
  24. display: inline;
  25. text-decoration: none;
  26. color: #222330;
  27. font-weight: bold;
  28. }
  29. .breadcrumb__item + .breadcrumb__item::before {
  30. padding: 0 0.75rem;
  31. content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' height='8' width='5'%3e%3cpath fill='currentColor' d='M1.207.647L.5 1.354 3.146 4 .5 6.647l.707.707L4.561 4z'/%3e%3c/svg%3e");
  32. }
  33. [dir="rtl"] .breadcrumb__item + .breadcrumb__item::before {
  34. content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='5' height='8'%3e%3cpath fill='currentColor' d='M3.793.647l.707.707L1.854 4 4.5 6.647l-.707.707L.439 4z'/%3e%3c/svg%3e");
  35. }
  36. .breadcrumb__link:hover,
  37. .breadcrumb__link:focus {
  38. text-decoration: none;
  39. }