35 lines
884 B
CSS
35 lines
884 B
CSS
a.close_link.closed span {
|
|
background-image: url(../images/icons/task-complete-grey.png);
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
width: 16px;
|
|
height: 16px;
|
|
display: inline-block;
|
|
}
|
|
a.close_link.open span {
|
|
background-image: url(../images/icons/task-complete.png);
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
width: 16px;
|
|
height: 16px;
|
|
display: inline-block;
|
|
}
|
|
|
|
a.hidelink.hide span {
|
|
background-image: url(../images/icons/layer-visible-off.png);
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
width: 16px;
|
|
height: 16px;
|
|
display: inline-block;
|
|
}
|
|
a.hidelink.show span {
|
|
background-image: url(../images/icons/layer-visible-on.png);
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
width: 16px;
|
|
height: 16px;
|
|
display: inline-block;
|
|
}
|
|
|