Skip to content

Commit

Permalink
🔧 chore(pagination.scss): Set pointer as default cursor for paginatio…
Browse files Browse the repository at this point in the history
…n-item a tag #211
  • Loading branch information
Spiderpig86 committed Oct 22, 2023
1 parent ab69a6c commit d9ea857
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
7 changes: 6 additions & 1 deletion dist/cirrus-all.css
Original file line number Diff line number Diff line change
Expand Up @@ -21776,6 +21776,11 @@ details.accordion summary.accordion__summary {
list-style-type: none;
opacity: 0.75;
transition: all 250ms;
/* Required for Safari, see https://github.com/Spiderpig86/Cirrus/issues/216 */
}

details.accordion summary.accordion__summary::-webkit-details-marker {
display: none;
}

details.accordion summary.accordion__summary:after {
Expand Down Expand Up @@ -22891,10 +22896,10 @@ details.accordion:last-child {

.pagination .pagination-item a {
color: #495057;
cursor: pointer;
}

.pagination .pagination-item a[disabled], .pagination .pagination-item a.disabled {
cursor: pointer;
opacity: 0.5;
pointer-events: none;
user-select: none;
Expand Down
2 changes: 1 addition & 1 deletion dist/cirrus-all.min.css

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion dist/cirrus.css
Original file line number Diff line number Diff line change
Expand Up @@ -15624,6 +15624,11 @@ details.accordion summary.accordion__summary {
list-style-type: none;
opacity: 0.75;
transition: all 250ms;
/* Required for Safari, see https://github.com/Spiderpig86/Cirrus/issues/216 */
}

details.accordion summary.accordion__summary::-webkit-details-marker {
display: none;
}

details.accordion summary.accordion__summary:after {
Expand Down Expand Up @@ -16739,10 +16744,10 @@ details.accordion:last-child {

.pagination .pagination-item a {
color: #495057;
cursor: pointer;
}

.pagination .pagination-item a[disabled], .pagination .pagination-item a.disabled {
cursor: pointer;
opacity: 0.5;
pointer-events: none;
user-select: none;
Expand Down
2 changes: 1 addition & 1 deletion dist/cirrus.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/components/pagination.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@

a {
color: fill('gray', '700');
cursor: pointer;

&[disabled],
&.disabled {
cursor: pointer;
opacity: 0.5;
pointer-events: none;
user-select: none;
Expand Down

0 comments on commit d9ea857

Please sign in to comment.