d8d2ad002a
- rename static subdirs to css and js - move global static dir to core/static, changed - move global templates dir to core/templates - check comments and code style of all our own CSS and JS files - minor changes related to the changes of template and static files
40 lines
922 B
CSS
40 lines
922 B
CSS
/*
|
|
* Styles for web interface of assignment app
|
|
*
|
|
*/
|
|
|
|
|
|
/* Navigation icons (mapping to glyphicons-halflings) */
|
|
.icon-charts {
|
|
background-image: url("../img/glyphicons_041_charts.png");
|
|
background-position: 0px center;
|
|
}
|
|
.leftmenu ul li.active a span.ico i.icon-charts {
|
|
background-image: url("../img/glyphicons_041_charts_white.png");
|
|
}
|
|
|
|
/* Election result table */
|
|
td.elected {
|
|
background-color: #BED4DE !important;
|
|
}
|
|
td.elected a.election_link {
|
|
background-image: url(../img/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(../img/voting-yes-grey.png);
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
width: 16px;
|
|
height: 16px;
|
|
display: block;
|
|
margin-right: 5px;
|
|
float: left;
|
|
}
|