OpenSlides/openslides/static/styles/agenda.css

35 lines
896 B
CSS
Raw Normal View History

a.close_link.closed span {
2011-08-31 23:47:31 +02:00
background-image: url(/static/images/icons/user-offline.png);
background-repeat: no-repeat;
background-position: center;
width: 16px;
height: 16px;
2011-08-31 23:47:31 +02:00
display: inline-block;
}
a.close_link.open span {
2011-08-31 23:47:31 +02:00
background-image: url(/static/images/icons/user-online.png);
background-repeat: no-repeat;
background-position: center;
width: 16px;
height: 16px;
2011-08-31 23:47:31 +02:00
display: inline-block;
}
a.hidelink.hide span {
background-image: url(/static/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(/static/images/icons/layer-visible-on.png);
background-repeat: no-repeat;
background-position: center;
width: 16px;
height: 16px;
display: inline-block;
}
2011-08-31 23:47:31 +02:00