2012-04-18 18:29:31 +02:00
|
|
|
/* agenda item open/closed */
|
|
|
|
a.close_link span {
|
2012-04-15 14:28:01 +02:00
|
|
|
background-image: url(../images/icons/task-complete-grey.png);
|
2011-08-31 23:47:31 +02:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
2011-09-03 18:11:05 +02:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2011-08-31 23:47:31 +02:00
|
|
|
display: inline-block;
|
|
|
|
}
|
2012-04-18 18:29:31 +02:00
|
|
|
a.close_link.closed span {
|
2012-04-15 14:28:01 +02:00
|
|
|
background-image: url(../images/icons/task-complete.png);
|
2011-08-31 23:47:31 +02:00
|
|
|
}
|
|
|
|
|
2012-04-18 18:29:31 +02:00
|
|
|
/* agenda item inactive/active */
|
2012-04-15 15:53:05 +02:00
|
|
|
a.activate_link span {
|
|
|
|
background-image: url(../images/icons/task-accepted-grey.png);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
a.activate_link.active span {
|
|
|
|
background-image: url(../images/icons/task-accepted.png);
|
|
|
|
}
|