diff options
| author | Shohei Yoshida <[email protected]> | 2019-05-18 23:30:57 +0900 |
|---|---|---|
| committer | Martijn Cuppens <[email protected]> | 2019-05-18 16:30:57 +0200 |
| commit | 1a41b0ffa615948e3197b389cb0fb0be9227a8d9 (patch) | |
| tree | f5ce221d050319a2e7b80412953fa7d349739768 | |
| parent | 2d6e086342a93a59ae8abeb17460e9fab50ec267 (diff) | |
| download | bootstrap-1a41b0ffa615948e3197b389cb0fb0be9227a8d9.tar.xz bootstrap-1a41b0ffa615948e3197b389cb0fb0be9227a8d9.zip | |
Fix z-index according to our z-index rule (#28784)
https://getbootstrap.com/docs/4.3/extend/approach/#z-index-scales
| -rw-r--r-- | scss/_pagination.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/_pagination.scss b/scss/_pagination.scss index b4345311d..953a35a7f 100644 --- a/scss/_pagination.scss +++ b/scss/_pagination.scss @@ -23,7 +23,7 @@ } &:focus { - z-index: 2; + z-index: 3; outline: $pagination-focus-outline; box-shadow: $pagination-focus-box-shadow; } @@ -43,7 +43,7 @@ } &.active .page-link { - z-index: 1; + z-index: 3; color: $pagination-active-color; background-color: $pagination-active-bg; border-color: $pagination-active-border-color; |
