Skip to content

Commit

Permalink
Fix pagination coloring.
Browse files Browse the repository at this point in the history
  • Loading branch information
eswan18 committed Oct 29, 2024
1 parent 0efb4d0 commit a15c045
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion layouts/partials/pageContent/collectionSummaryTrailer.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ <h2 class="text-3xl">{{ title . }}</h2>
[&>ul>li.active>a:not([href])]:font-bold
[&>ul>li>a]:btn [&>ul>li>a]:btn-sm [&>ul>li>a]:rounded-md
[&>ul>li:not(.active)>a]:btn-ghost
[&>ul>li:not(.active):not(.disabled)>a]:text-accent
[&>ul>li:not(.active):not(.disabled)>a]:text-primary
[&>ul>li.active>a]:btn-disabled
[&>ul>li.disabled>a]:pointer-events-none
[&>ul>li.disabled>a]:opacity-50
Expand Down
10 changes: 10 additions & 0 deletions static/css/tailwind-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5289,6 +5289,16 @@ html:has(.drawer-toggle:checked) {
color: var(--fallback-a,oklch(var(--a)/var(--tw-text-opacity)));
}

.\[\&\>ul\>li\:not\(\.active\)\:not\(\.disabled\)\>a\]\:text-secondary>ul>li:not(.active):not(.disabled)>a {
--tw-text-opacity: 1;
color: var(--fallback-s,oklch(var(--s)/var(--tw-text-opacity)));
}

.\[\&\>ul\>li\:not\(\.active\)\:not\(\.disabled\)\>a\]\:text-primary>ul>li:not(.active):not(.disabled)>a {
--tw-text-opacity: 1;
color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
}

.\[\&\>ul\>li\>a\]\:rounded-md>ul>li>a {
border-radius: 0.375rem;
}
Expand Down

0 comments on commit a15c045

Please sign in to comment.