D10 theme for Island Lives. This is a clone of drupals core theme Olivero. Notice this theme is named Olivera not Olivero :)
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.
 
 
 
 
 
 

124 lines
2.0 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.
*/
/*
* Media query breakpoints.
* Processed by postcss/postcss-custom-media.
*/
/* Navigation related breakpoints */
/* Grid related breakpoints */
/* Grid shifts from 6 to 14 columns. */
/* Width of the entire grid maxes out. */
[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: 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%;
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);
}