breadcrumb.css 491 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * @file
  3. * Styles for breadcrumbs.
  4. */
  5. .breadcrumb {
  6. padding-bottom: 0.5em;
  7. }
  8. .breadcrumb ol {
  9. margin: 0;
  10. padding: 0;
  11. }
  12. [dir="rtl"] .breadcrumb ol {
  13. /* This is required to win over specificity of [dir="rtl"] ol */
  14. margin-right: 0;
  15. }
  16. .breadcrumb li {
  17. display: inline;
  18. list-style-type: none;
  19. margin: 0;
  20. padding: 0;
  21. }
  22. /* IE8 does not support :not() and :last-child. */
  23. .breadcrumb li:before {
  24. content: ' \BB ';
  25. }
  26. .breadcrumb li:first-child:before {
  27. content: none;
  28. }