mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
1c84d2719c
Summary: Ref T8099, Ref T8614. Reasonable attempt at a larger font size PostProcessor, will need additional UI cleanup (places where we fix height) but overall very decent. Test Plan: Use lots of the UI elements with new font sizes. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T8099, T8614 Differential Revision: https://secure.phabricator.com/D13457
25 lines
415 B
CSS
25 lines
415 B
CSS
/**
|
|
* @provides maniphest-report-css
|
|
*/
|
|
|
|
table.aphront-table-view tr.aggregate,
|
|
table.aphront-table-view tr.alt-aggregate {
|
|
font-size: {$normalfontsize};
|
|
font-weight: bold;
|
|
}
|
|
|
|
table.aphront-table-view tr.month,
|
|
table.aphront-table-view tr.alt-month {
|
|
background: {$backdrop};
|
|
font-weight: bold;
|
|
}
|
|
|
|
span.red {
|
|
color: {$red};
|
|
font-weight: bold;
|
|
}
|
|
|
|
span.green {
|
|
color: {$green};
|
|
font-weight: bold;
|
|
}
|