45 lines
1004 B
CSS
45 lines
1004 B
CSS
/**
|
|
* OpenSlides assignent style
|
|
*
|
|
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
|
* :license: GNU GPL, see LICENSE for more details.
|
|
*/
|
|
|
|
td.elected {
|
|
background-color: #BED4DE !important;
|
|
}
|
|
|
|
td.elected a.election_link {
|
|
background-image: url(../images/icons/voting-yes.png);
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
width: 16px;
|
|
height: 16px;
|
|
display: block;
|
|
margin-right: 5px;
|
|
float: left;
|
|
}
|
|
|
|
td a.election_link {
|
|
background-image: url(../images/icons/voting-yes-grey.png);
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
width: 16px;
|
|
height: 16px;
|
|
display: block;
|
|
margin-right: 5px;
|
|
float: left;
|
|
}
|
|
|
|
a.publish_link span {
|
|
background-image: url(../images/icons/off.png);
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
width: 16px;
|
|
height: 16px;
|
|
display: inline-block;
|
|
}
|
|
a.publish_link.published span {
|
|
background-image: url(../images/icons/on.png);
|
|
}
|