Skip to content
Snippets Groups Projects
Commit 2ea42598 authored by Emilie Nouveau's avatar Emilie Nouveau
Browse files

Issue #2497145: Use generic linear-gradient

parent 72f3ce32
No related branches found
No related tags found
No related merge requests found
......@@ -83,10 +83,10 @@
}
a.link-button:nth-child(2) {
background-color: $grey;
background-image: -moz-linear-gradient(center top , $grey 50%, darken($grey,8%) 50%);
background-image: linear-gradient(to bottom, $grey 50%, darken($grey,8%) 50%);
&:active, &:hover, &:focus {
background-color: $dark-grey;
background-image: -moz-linear-gradient(center top , lighten($dark-grey,10%) 50%, $dark-grey 50%);
background-image: linear-gradient(to bottom, lighten($dark-grey,10%) 50%, $dark-grey 50%);
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment