2014-12-02 17:02:35 -05:00
|
|
|
.pagination {
|
2016-12-28 17:39:06 -05:00
|
|
|
display: flex;
|
2017-09-28 13:25:34 -04:00
|
|
|
@include list-unstyled();
|
2015-10-30 01:24:25 -04:00
|
|
|
}
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2017-10-22 17:17:28 -04:00
|
|
|
.page-link {
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
color: $pagination-color;
|
|
|
|
background-color: $pagination-bg;
|
|
|
|
border: $pagination-border-width solid $pagination-border-color;
|
|
|
|
|
2017-12-31 01:50:43 -05:00
|
|
|
&:hover {
|
2018-02-03 02:54:08 -05:00
|
|
|
z-index: 2;
|
2017-10-22 17:17:28 -04:00
|
|
|
color: $pagination-hover-color;
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: $pagination-hover-bg;
|
|
|
|
border-color: $pagination-hover-border-color;
|
|
|
|
}
|
Opinionated: reintroduce `cursor:pointer`
Explicitly re-adds the "hand" `cursor:pointer` for non-disabled `.btn`, `.close`, `.navbar-toggler` elements, as well as forcing `page-link` pagination controls to always have the "hand" cursor (even if an author uses it on, say, `<button>` elements for a dynamically updating in-page pagination).
Controversial, as everybody jumped on the bandwagon following this article https://medium.com/simple-human/buttons-shouldnt-have-a-hand-cursor-b11e99ca374b - which does have its merits of course, but there are also counter-arguments like http://kizu.ru/en/issues/cursor-pointer/
And seeing the amount of issues we've seen following the change, and the potential complexity needed to consistently address the cursor issue (see https://github.com/twbs/bootstrap/issues/24156 where i explore how the cursor needs to be based on "intent", and how that's tough to determine), I'm favouring an opinionated take here of just reintroducing the `cursor:pointer`.
2017-12-25 18:15:21 -05:00
|
|
|
|
2017-12-31 01:50:43 -05:00
|
|
|
&:focus {
|
2019-05-18 10:30:57 -04:00
|
|
|
z-index: 3;
|
2018-01-18 19:47:47 -05:00
|
|
|
outline: $pagination-focus-outline;
|
2017-12-31 01:50:43 -05:00
|
|
|
box-shadow: $pagination-focus-box-shadow;
|
Opinionated: reintroduce `cursor:pointer`
Explicitly re-adds the "hand" `cursor:pointer` for non-disabled `.btn`, `.close`, `.navbar-toggler` elements, as well as forcing `page-link` pagination controls to always have the "hand" cursor (even if an author uses it on, say, `<button>` elements for a dynamically updating in-page pagination).
Controversial, as everybody jumped on the bandwagon following this article https://medium.com/simple-human/buttons-shouldnt-have-a-hand-cursor-b11e99ca374b - which does have its merits of course, but there are also counter-arguments like http://kizu.ru/en/issues/cursor-pointer/
And seeing the amount of issues we've seen following the change, and the potential complexity needed to consistently address the cursor issue (see https://github.com/twbs/bootstrap/issues/24156 where i explore how the cursor needs to be based on "intent", and how that's tough to determine), I'm favouring an opinionated take here of just reintroducing the `cursor:pointer`.
2017-12-25 18:15:21 -05:00
|
|
|
}
|
2017-10-22 17:17:28 -04:00
|
|
|
}
|
|
|
|
|
2015-12-08 01:24:50 -05:00
|
|
|
.page-item {
|
2019-08-03 10:11:57 -04:00
|
|
|
&:not(:first-child) .page-link {
|
|
|
|
margin-left: $pagination-margin-left;
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
|
2015-10-30 01:24:25 -04:00
|
|
|
&.active .page-link {
|
2019-05-18 10:30:57 -04:00
|
|
|
z-index: 3;
|
2016-12-28 17:41:00 -05:00
|
|
|
color: $pagination-active-color;
|
|
|
|
background-color: $pagination-active-bg;
|
2017-04-16 18:45:10 -04:00
|
|
|
border-color: $pagination-active-border-color;
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
|
2015-10-30 01:24:25 -04:00
|
|
|
&.disabled .page-link {
|
2016-12-28 17:41:00 -05:00
|
|
|
color: $pagination-disabled-color;
|
|
|
|
pointer-events: none;
|
Opinionated: reintroduce `cursor:pointer`
Explicitly re-adds the "hand" `cursor:pointer` for non-disabled `.btn`, `.close`, `.navbar-toggler` elements, as well as forcing `page-link` pagination controls to always have the "hand" cursor (even if an author uses it on, say, `<button>` elements for a dynamically updating in-page pagination).
Controversial, as everybody jumped on the bandwagon following this article https://medium.com/simple-human/buttons-shouldnt-have-a-hand-cursor-b11e99ca374b - which does have its merits of course, but there are also counter-arguments like http://kizu.ru/en/issues/cursor-pointer/
And seeing the amount of issues we've seen following the change, and the potential complexity needed to consistently address the cursor issue (see https://github.com/twbs/bootstrap/issues/24156 where i explore how the cursor needs to be based on "intent", and how that's tough to determine), I'm favouring an opinionated take here of just reintroducing the `cursor:pointer`.
2017-12-25 18:15:21 -05:00
|
|
|
// Opinionated: remove the "hand" cursor set previously for .page-link
|
|
|
|
cursor: auto;
|
2016-12-28 17:41:00 -05:00
|
|
|
background-color: $pagination-disabled-bg;
|
2017-04-16 18:45:10 -04:00
|
|
|
border-color: $pagination-disabled-border-color;
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-18 14:38:47 -04:00
|
|
|
|
|
|
|
//
|
2014-12-02 17:02:35 -05:00
|
|
|
// Sizing
|
2015-04-18 14:38:47 -04:00
|
|
|
//
|
2019-08-03 10:11:57 -04:00
|
|
|
@include pagination-size($pagination-padding-y, $pagination-padding-x, null, $pagination-line-height, $pagination-border-radius);
|
2014-12-02 17:02:35 -05:00
|
|
|
|
|
|
|
.pagination-lg {
|
2015-08-14 02:04:16 -04:00
|
|
|
@include pagination-size($pagination-padding-y-lg, $pagination-padding-x-lg, $font-size-lg, $line-height-lg, $border-radius-lg);
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.pagination-sm {
|
2015-08-14 02:04:16 -04:00
|
|
|
@include pagination-size($pagination-padding-y-sm, $pagination-padding-x-sm, $font-size-sm, $line-height-sm, $border-radius-sm);
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|