1234567891011121314151617181920212223242526272829303132 |
- /**
- * @file
- * Breadcrumbs.
- */
- .breadcrumb {
- line-height: 1.8;
- padding: 20px 0;
- }
- .breadcrumb ol {
- margin: 0;
- padding: 0;
- }
- [dir="rtl"] .breadcrumb ol {
- /* This is required to win over specificity of [dir="rtl"] ol */
- margin-right: 0;
- }
- .breadcrumb li {
- display: inline;
- list-style-type: none;
- padding: 0;
- }
- /* IE8 does not support :not() and :last-child. */
- .breadcrumb li:before {
- content: ' \BB ';
- color: #0678be;
- }
- .breadcrumb li:first-child:before {
- content: none;
- }
|