Make pager (next/previous) active state more obvious by adding changing gray color to $link-color

This commit is contained in:
Michael Rose 2016-11-04 11:37:22 -04:00
parent 11fccb0908
commit 7172ccd3da

View file

@ -131,7 +131,7 @@
font-weight: bold;
text-align: center;
text-decoration: none;
color: mix(#fff, $gray, 50%);
color: $link-color;
border: 1px solid $light-gray;
border-radius: $border-radius;
@ -236,9 +236,9 @@
width: 100%;
-webkit-transition: $global-transition;
transition: $global-transition;
-webkit-transform: scaleX(0);
-ms-transform: scaleX(0);
transform: scaleX(0); /* hide*/
-webkit-transform: scaleX(0) translate3d(0, 0 , 0);
-ms-transform: scaleX(0) translate3d(0, 0 , 0);
transform: scaleX(0) translate3d(0, 0 , 0); /* hide*/
}
&:hover:before {