Make pager (next/previous) active state more obvious by adding changing gray color to $link-color
This commit is contained in:
parent
11fccb0908
commit
7172ccd3da
1 changed files with 4 additions and 4 deletions
|
@ -131,7 +131,7 @@
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: mix(#fff, $gray, 50%);
|
color: $link-color;
|
||||||
border: 1px solid $light-gray;
|
border: 1px solid $light-gray;
|
||||||
border-radius: $border-radius;
|
border-radius: $border-radius;
|
||||||
|
|
||||||
|
@ -236,9 +236,9 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
-webkit-transition: $global-transition;
|
-webkit-transition: $global-transition;
|
||||||
transition: $global-transition;
|
transition: $global-transition;
|
||||||
-webkit-transform: scaleX(0);
|
-webkit-transform: scaleX(0) translate3d(0, 0 , 0);
|
||||||
-ms-transform: scaleX(0);
|
-ms-transform: scaleX(0) translate3d(0, 0 , 0);
|
||||||
transform: scaleX(0); /* hide*/
|
transform: scaleX(0) translate3d(0, 0 , 0); /* hide*/
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover:before {
|
&:hover:before {
|
||||||
|
|
Loading…
Add table
Reference in a new issue