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

@ -65,3 +65,13 @@ a.unstyled-link {
color: #333333; color: #333333;
outline: 0; 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%);
}