2011-08-31 18:25:03 +02:00
|
|
|
tr.activeline a.activate_link div {
|
|
|
|
background-image: url(/static/images/icons/task-accepted.png);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr.inactiveline a.activate_link div {
|
|
|
|
background-image: url(/static/images/icons/task-accepted-grey.png);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
2011-08-31 23:47:31 +02:00
|
|
|
|
|
|
|
|
|
|
|
a.close_link.closed div {
|
|
|
|
background-image: url(/static/images/icons/user-offline.png);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.close_link.open div {
|
|
|
|
background-image: url(/static/images/icons/user-online.png);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
|