Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorKevin Kirsche <Kev.Kirsche+GitHub@gmail.com>2015-06-16 22:43:18 +0300
committerKevin Kirsche <Kev.Kirsche+GitHub@gmail.com>2015-06-16 22:43:18 +0300
commit2a38a92324c26116126fde301e79eaf786c868ca (patch)
tree76a02da06e92ea502ed30166c911e0dba1e8d780 /less
parenta49f8e98f7b07b0453a86319ec303c2305ae1df2 (diff)
Fix hover border covering active in pagination
Fix #16646
Diffstat (limited to 'less')
-rw-r--r--less/pagination.less4
1 files changed, 2 insertions, 2 deletions
diff --git a/less/pagination.less b/less/pagination.less
index 31a23bf79a..31f77aae4e 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;