Mercurial > hg > isophonics-drupal-site
annotate core/themes/classy/css/components/breadcrumb.css @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | af1871eacc83 |
children |
rev | line source |
---|---|
Chris@0 | 1 /** |
Chris@0 | 2 * @file |
Chris@0 | 3 * Styles for breadcrumbs. |
Chris@0 | 4 */ |
Chris@0 | 5 |
Chris@0 | 6 .breadcrumb { |
Chris@0 | 7 padding-bottom: 0.5em; |
Chris@0 | 8 } |
Chris@0 | 9 .breadcrumb ol { |
Chris@0 | 10 margin: 0; |
Chris@0 | 11 padding: 0; |
Chris@0 | 12 } |
Chris@0 | 13 [dir="rtl"] .breadcrumb ol { |
Chris@0 | 14 /* This is required to win over specificity of [dir="rtl"] ol */ |
Chris@0 | 15 margin-right: 0; |
Chris@0 | 16 } |
Chris@0 | 17 .breadcrumb li { |
Chris@0 | 18 display: inline; |
Chris@0 | 19 margin: 0; |
Chris@0 | 20 padding: 0; |
Chris@18 | 21 list-style-type: none; |
Chris@0 | 22 } |
Chris@0 | 23 /* IE8 does not support :not() and :last-child. */ |
Chris@0 | 24 .breadcrumb li:before { |
Chris@18 | 25 content: " \BB "; |
Chris@0 | 26 } |
Chris@0 | 27 .breadcrumb li:first-child:before { |
Chris@0 | 28 content: none; |
Chris@0 | 29 } |