123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- /*
- * 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);
- }
|