Use gradients for slots with an event

This commit is contained in:
Henne Vogelsang 2013-06-19 17:04:32 +02:00 committed by Henne Vogelsang
parent 7c5c327a7d
commit 0fcd9d2a4a
2 changed files with 28 additions and 7 deletions

View file

@ -151,4 +151,21 @@ div.dataTables_scrollBody tbody tr:first-child td {
div.dataTables_scrollFoot table {
border-top: none;
}
.event {
background-image: linear-gradient(bottom, rgb(247,250,242) 24%, rgb(194,232,190) 97%, rgb(194,232,190) 100%);
background-image: -o-linear-gradient(bottom, rgb(247,250,242) 24%, rgb(194,232,190) 97%, rgb(194,232,190) 100%);
background-image: -moz-linear-gradient(bottom, rgb(247,250,242) 24%, rgb(194,232,190) 97%, rgb(194,232,190) 100%);
background-image: -webkit-linear-gradient(bottom, rgb(247,250,242) 24%, rgb(194,232,190) 97%, rgb(194,232,190) 100%);
background-image: -ms-linear-gradient(bottom, rgb(247,250,242) 24%, rgb(194,232,190) 97%, rgb(194,232,190) 100%);
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.24, rgb(247,250,242)),
color-stop(0.97, rgb(194,232,190)),
color-stop(1, rgb(194,232,190))
);
}