Fix gradient in schedule page in Firefox. fix #748

This commit is contained in:
David Sedeño 2016-02-20 23:10:27 +01:00
parent ed0f55c45f
commit 1efdcdc4cf

View file

@ -16,7 +16,7 @@ background-image: -webkit-gradient(
}
#schedule td.event:hover
{
{
background-image: linear-gradient(bottom, rgb(247,250,242) 24%, rgb(83,171,74) 97%, rgb(83,171,74) 100%);
background-image: -o-linear-gradient(bottom, rgb(247,250,242) 24%, rgb(83,171,74) 97%, rgb(83,171,74) 100%);
background-image: -moz-linear-gradient(bottom, rgb(247,250,242) 24%, rgb(83,171,74) 97%, rgb(83,171,74) 100%);
@ -65,3 +65,13 @@ a.unstyled-link {
color: #333333;
outline: 0;
}
#schedule td.event {
background-image: linear-gradient(to top, #f7faf2 24%, #c2e8be 97%,
#c2e8be 100%);
}
#schedule td.event:hover {
background-image: linear-gradient(to top, #f7faf2 24%, #53ab4a 97%,
#53ab4a 100%);
}