| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .breadcrumb {
- margin: 1.5rem 1rem 0 1rem;
- padding-bottom: 1.5rem;
- @include truncate($grid-body-width);
- @include themify($themes) {
- border-bottom: 1px solid themed('hr-color');
- background-color: themed('breadcrumb-background-color');
- }
- ol {
- @include flexbox();
- @include align-items(center);
- }
- li {
- display: inline;
- font-size: 0.9rem;
-
- a {
- @include themify($themes) {
- color: themed('breadcrumb-item-color');
- @include on-event {
- color: themed('link-hover');
- }
- }
- }
- &:last-child {
- @include themify($themes) {
- color: themed('breadcrumb-item-active-color');
- }
- }
- }
- li+li:before {
- padding: 0.5rem;
- content: "»";
- @include themify($themes) {
- color: themed('breadcrumb-item-color');
- }
- }
- }
|