mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
e9dedb0c88
Summary: - These are still slow, awkward and hideous -- but slightly better than before. - Allow "open" reports to be sorted. - Add a "burn" chart/table for assessing project volatility. - Add navigation. Test Plan: Looked at reports. Reviewers: btrahan Reviewed By: btrahan CC: aran, epriestley Maniphest Tasks: T923 Differential Revision: https://secure.phabricator.com/D1737
32 lines
514 B
CSS
32 lines
514 B
CSS
/**
|
|
* @provides maniphest-report-css
|
|
*/
|
|
|
|
table.aphront-table-view tr.aggregate,
|
|
table.aphront-table-view tr.alt-aggregate {
|
|
background: #bb5577;
|
|
}
|
|
|
|
table.aphront-table-view tr.month,
|
|
table.aphront-table-view tr.alt-month {
|
|
background: #ee77aa;
|
|
}
|
|
|
|
table.aphront-table-view tr.week,
|
|
table.aphront-table-view tr.alt-week {
|
|
background: #ffccdd;
|
|
}
|
|
|
|
span.red {
|
|
color: #aa0000;
|
|
font-weight: bold;
|
|
}
|
|
|
|
span.green {
|
|
color: #00aa00;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.aphront-panel-view-caption p {
|
|
padding: 6px 0 0;
|
|
}
|