MediaWiki:Common.css: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 1:
/* -------------------------------------------------------------
* TODO table
* -------------------------------------------------------------*/
 
table.todo {
width: 100%;
}
table.todo td:first-child {
width: 70px;
text-align: center;
font-weight: bold;
font-size: 11px;
}
table.todo td:nth-child(2),
table.todo td:nth-child(3) {
width: 70px;
font-size: 11px;
text-align: center;
}
table.todo td.waiting {
background: #eee;
font-weight: normal;
color: #999;
}
table.todo td.working {
background: #FFE5CC;
color: #B44723;
}
table.todo td.working ~ td {
background: #FFF9EF;
}
table.todo td.partial {
background: #6E9591;
color: #fff;
}
table.todo td.partial ~ td {
background: #D9F2F5;
}
table.todo td.done {
background: #3c3;
color: #fff;
}
table.todo td.done ~ td {
background: #E4FFE3;
}
 
/* Default styling for HTML elements */
dfn {