Merge branch 'feature/pagination-link-color' into develop

This commit is contained in:
Michael Rose
2016-11-04 11:37:40 -04:00
2 changed files with 5 additions and 5 deletions

View File

@ -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;

View File

@ -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 {