diff options
| author | Kevin Kirsche <[email protected]> | 2015-06-16 15:43:18 -0400 |
|---|---|---|
| committer | Kevin Kirsche <[email protected]> | 2015-06-16 15:43:18 -0400 |
| commit | 2a38a92324c26116126fde301e79eaf786c868ca (patch) | |
| tree | 76a02da06e92ea502ed30166c911e0dba1e8d780 | |
| parent | a49f8e98f7b07b0453a86319ec303c2305ae1df2 (diff) | |
| download | bootstrap-2a38a92324c26116126fde301e79eaf786c868ca.tar.xz bootstrap-2a38a92324c26116126fde301e79eaf786c868ca.zip | |
Fix hover border covering active in pagination
Fix #16646
| -rw-r--r-- | less/pagination.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/less/pagination.less b/less/pagination.less index 31a23bf79..31f77aae4 100644 --- a/less/pagination.less +++ b/less/pagination.less @@ -40,7 +40,7 @@ > li > span { &:hover, &:focus { - z-index: 3; + z-index: 2; color: @pagination-hover-color; background-color: @pagination-hover-bg; border-color: @pagination-hover-border; @@ -52,7 +52,7 @@ &, &:hover, &:focus { - z-index: 2; + z-index: 3; color: @pagination-active-color; background-color: @pagination-active-bg; border-color: @pagination-active-border; |
