mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
716bd4e4b4
Summary: Ref T8096. Various tweaks here: - Sort result lists by importance (even lint -- "errors first" seems better than "alphabetical by file", I think?). - Do sane stuff with display limits. - Add a "view all" view. - Don't show a huge table of passing tests in Differential. - Link to full results. Test Plan: See screenshots. Reviewers: chad, btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T8096 Differential Revision: https://secure.phabricator.com/D13407
90 lines
1.5 KiB
CSS
90 lines
1.5 KiB
CSS
/**
|
|
* @provides differential-table-of-contents-css
|
|
*/
|
|
|
|
.differential-toc-meta {
|
|
color: {$lightgreytext};
|
|
padding-top: 2px;
|
|
}
|
|
|
|
table.aphront-table-view td.differential-toc-char {
|
|
padding-right: 0;
|
|
font-weight: bold;
|
|
color: {$darkbluetext};
|
|
}
|
|
|
|
table.aphront-table-view td.differential-toc-prop {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
font-weight: bold;
|
|
color: {$darkbluetext};
|
|
}
|
|
|
|
table.aphront-table-view td.differential-toc-ftype {
|
|
padding-left: 0;
|
|
font-weight: bold;
|
|
color: {$darkbluetext};
|
|
}
|
|
|
|
.differential-toc-file {
|
|
color: {$lightgreytext};
|
|
}
|
|
|
|
.device-phone .differential-toc-file {
|
|
word-break: break-word;
|
|
}
|
|
|
|
.differential-toc-cov {
|
|
color: {$darkbluetext};
|
|
font-weight: bold;
|
|
}
|
|
|
|
.differential-toc-reveal-all,
|
|
.differential-toc-edit-all {
|
|
float: right;
|
|
margin-left: 4px;
|
|
}
|
|
|
|
.diff-star-none {
|
|
color: {$greytext};
|
|
}
|
|
|
|
.diff-star-okay {
|
|
color: {$orange};
|
|
}
|
|
|
|
/* TODO: 'warn' and 'fail' are both red, but we can't make 'warn' yellow since
|
|
'okay' is a "gold star". */
|
|
.diff-star-warn {
|
|
color: {$red};
|
|
}
|
|
|
|
.diff-star-fail {
|
|
color: {$red};
|
|
}
|
|
|
|
.diff-star-skip {
|
|
color: {$indigo};
|
|
}
|
|
|
|
.differential-toc table td em {
|
|
color: {$greytext};
|
|
}
|
|
|
|
.differential-toc .button {
|
|
margin: 8px 0px 0px 8px;
|
|
}
|
|
|
|
.differential-mcoverage-loading {
|
|
color: {$lightgreytext};
|
|
}
|
|
|
|
.differential-toc-buttons {
|
|
border-top: 1px solid {$thinblueborder};
|
|
padding: 8px;
|
|
}
|
|
|
|
.differential-harbormaster-table-view {
|
|
margin: 4px 0;
|
|
border: 1px solid {$thinblueborder};
|
|
}
|