/* * DO NOT EDIT THIS FILE. * See the following change record for more information, * https://www.drupal.org/node/3084859 * @preserve */ /** * @file * Styles for pagination. */ [dir="ltr"] .pager__items { margin-left: 0; } [dir="rtl"] .pager__items { margin-right: 0; } [dir="ltr"] .pager__items { padding-left: 0; } [dir="rtl"] .pager__items { padding-right: 0; } [dir="ltr"] .pager__items { padding-right: 0; } [dir="rtl"] .pager__items { padding-left: 0; } .pager__items { display: flex; flex-wrap: wrap; align-items: flex-end; margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; list-style: none; font-weight: bold; } .pager__item { display: flex; align-items: center; justify-content: center; width: 2.8125rem; height: 2.8125rem; cursor: default; color: #6e7172; background-color: #fff; } @media (min-width: 31.25rem) { .pager__item { width: 3.375rem; height: 3.375rem; } } [dir="rtl"] .pager__item--control { transform: scaleX(-1); } .pager__item--active { color: #fff; background-color: #0d77b5; } /* IE11 Specific. */ @media (-ms-high-contrast: active) { .pager__item--control path { fill: currentColor; } } @media (forced-colors: active) { .pager__item--control path { fill: linktext; } } .pager__link { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; text-decoration: none; color: #6e7172; } .pager__link:hover { background-color: #e7edf1; } .pager__link:focus { color: #0d77b5; outline: solid 2px #0d77b5; outline-offset: -2px; } .pager__item svg { display: block; fill: currentColor; } .pager__item--next svg, .pager__item--last svg { transform: rotate(180deg); }