Mercurial > hg > isophonics-drupal-site
diff core/themes/bartik/css/components/pager.css @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children | af1871eacc83 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/core/themes/bartik/css/components/pager.css Wed Nov 29 16:09:58 2017 +0000 @@ -0,0 +1,42 @@ +/** + * @file + * Styles for Bartik's pagination. + */ + +/* Using .pager selector on the first one to override .region-content ul. */ +.pager .pager__items { + padding: 0; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; +} +.pager__item { + font-size: 0.929em; + padding: 10px 15px; +} +.pager__item a { + display: inline-block; +} +.pager__item.is-active a { + color: #3b3b3b; + border-bottom: 0; +} +.pager__item--first, +.pager__item--previous { + padding: 10px 10px 10px 0; /* LTR */ +} +[dir="rtl"] .pager__item--first, +[dir="rtl"] .pager__item--previous { + padding-left: 10px; + padding-right: 0; +} +.pager__item--ellipsis { + padding: 10px 0; +} +.pager__item--last, +.pager__item--next { + padding: 10px 0 10px 10px; /* LTR */ +} +[dir="rtl"] .pager__item--last, +[dir="rtl"] .pager__item--next { + padding-left: 0; + padding-right: 10px; +}