157d4bdc14
Move result table from assignment slide to assignment poll slide. Use "result" in singular for motion and election results.
54 lines
921 B
CSS
54 lines
921 B
CSS
/*
|
|
* Styles for web interface of motion app
|
|
*
|
|
*/
|
|
|
|
|
|
/*** motion version diff table ***/
|
|
table.diff, .diff_row {
|
|
font-size: 12px;
|
|
width: 100%;
|
|
border: 0px;
|
|
}
|
|
table.diff[rules][rules="groups"] > colgroup, table[rules][rules="groups"] > tfoot, table[rules][rules="groups"] > thead, table[rules][rules="groups"] > tbody {
|
|
border: none;
|
|
}
|
|
table.diff td {
|
|
padding: 0 !important;
|
|
border: none;
|
|
}
|
|
.diff_header {
|
|
background-color:#e0e0e0;
|
|
}
|
|
td.diff_header {
|
|
text-align:right;
|
|
display: none;
|
|
}
|
|
.diff_next {
|
|
background-color:#c0c0c0;
|
|
display: none;
|
|
}
|
|
.diff_add {
|
|
background-color:#aaffaa;
|
|
}
|
|
.diff_chg {
|
|
background-color:#ffff77;
|
|
}
|
|
.diff_sub {
|
|
background-color:#ffaaaa;
|
|
}
|
|
|
|
|
|
/*** motion vote result ***/
|
|
.well .result img {
|
|
margin-top: -4px;
|
|
}
|
|
.well .result {
|
|
margin-bottom: 10px;
|
|
}
|
|
.well .result hr {
|
|
border-top: 1px solid;
|
|
margin: 5px 0;
|
|
width: 10em;
|
|
}
|