You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
1.7 KiB
91 lines
1.7 KiB
/* |
|
* DO NOT EDIT THIS FILE. |
|
* See the following change record for more information, |
|
* https://www.drupal.org/node/3084859 |
|
* @preserve |
|
*/ |
|
|
|
/** |
|
* @file |
|
* Styles for pagination. |
|
*/ |
|
|
|
#block-olives-solrsearchcontentsearchresultspagerforcollectionmembers .pager__group { |
|
justify-content: space-around; |
|
} |
|
.pager__items { |
|
display: flex; |
|
flex-wrap: wrap; |
|
align-items: flex-end; |
|
margin-block: 0; |
|
margin-inline-start: 0; |
|
padding-block: 0; |
|
padding-inline-start: 0; |
|
padding-inline-end: 0; |
|
list-style: none; |
|
font-weight: bold; |
|
} |
|
|
|
.pager__item { |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
width: var(--sp2-5); |
|
height: var(--sp2-5); |
|
cursor: default; |
|
color: var(--color-text-neutral-soft); |
|
background-color: var(--color--white); |
|
} |
|
|
|
@media (min-width: 31.25rem) { |
|
.pager__item { |
|
width: var(--sp3); |
|
height: var(--sp3); |
|
} |
|
} |
|
|
|
[dir="rtl"] .pager__item--control { |
|
transform: scaleX(-1); |
|
} |
|
|
|
.pager__item--active { |
|
color: var(--color--white); |
|
background-color: var(--color--primary-40); |
|
} |
|
|
|
@media (forced-colors: active) { |
|
.pager__item--control path { |
|
fill: linktext; |
|
} |
|
} |
|
|
|
.pager__link { |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
width: 100%; |
|
height: 100%; |
|
-webkit-text-decoration: none; |
|
text-decoration: none; |
|
color: var(--color-text-neutral-soft); |
|
} |
|
|
|
.pager__link:hover { |
|
background-color: var(--color--gray-95); |
|
} |
|
|
|
.pager__link:focus { |
|
color: var(--color-text-primary-medium); |
|
outline: solid 2px currentColor; |
|
outline-offset: -2px; |
|
} |
|
|
|
.pager__item svg { |
|
display: block; |
|
fill: currentColor; |
|
} |
|
|
|
.pager__item--next svg, |
|
.pager__item--last svg { |
|
transform: rotate(180deg); |
|
}
|
|
|