41 lines
1015 B
CSS
41 lines
1015 B
CSS
.fonds-archives-grid {
|
|
&__toolbar {
|
|
@apply flex flex-row items-end flex-wrap;
|
|
.alphabetical-order-select {
|
|
@apply border-y border-carhop-green-700 py-10;
|
|
@apply col-span-2;
|
|
|
|
.alphabetical-order-select__title {
|
|
@apply pb-6;
|
|
}
|
|
.alphabetical-order-select__list {
|
|
@apply flex gap-5;
|
|
}
|
|
.alphabetical-order-select__button[aria-pressed='true'] {
|
|
@apply font-extrabold underline underline-offset-4;
|
|
}
|
|
}
|
|
.alphabetical-order-select {
|
|
@apply w-full;
|
|
}
|
|
select[name='sort_by'] {
|
|
@apply ml-auto;
|
|
}
|
|
.reset-button {
|
|
@apply hidden relative items-center justify-center gap-3;
|
|
|
|
&:hover {
|
|
@apply underline underline-offset-4;
|
|
}
|
|
}
|
|
|
|
&:has(.alphabetical-order-select__button[aria-pressed='true']) {
|
|
&:not(.alphabetical-order-select__button[data-letter='all']) {
|
|
.reset-button {
|
|
@apply flex;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|