mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
63d2b11cab
Summary: More grey tweaks, breaking these up so I can test and tweak each as needed. Test Plan: Review pages. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: Korvin, aran Differential Revision: https://secure.phabricator.com/D6866
88 lines
1.4 KiB
CSS
88 lines
1.4 KiB
CSS
/**
|
|
* @provides differential-table-of-contents-css
|
|
*/
|
|
|
|
.differential-toc-meta {
|
|
color: {$greytext};
|
|
padding-left: 1em;
|
|
}
|
|
|
|
.differential-toc-char,
|
|
.differential-toc-prop {
|
|
width: 1.25em;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.differential-toc-ftype {
|
|
padding: 0 .5em;
|
|
text-align: center;
|
|
color: {$greytext};
|
|
}
|
|
|
|
.differential-toc-file {
|
|
color: {$darkgreytext};
|
|
}
|
|
|
|
.differential-toc-reveal-all,
|
|
.differential-toc-edit-all {
|
|
float: right;
|
|
margin-left: .25em;
|
|
}
|
|
|
|
.diff-star-none {
|
|
color: {$greytext};
|
|
}
|
|
|
|
.diff-star-okay {
|
|
color: #ff9700;
|
|
}
|
|
|
|
/* TODO: 'warn' and 'fail' are both red, but we can't make 'warn' yellow since
|
|
'okay' is a "gold star". */
|
|
.diff-star-warn {
|
|
color: #aa0000;
|
|
}
|
|
|
|
.diff-star-fail {
|
|
color: #aa0000;
|
|
}
|
|
|
|
.diff-star-skip {
|
|
color: #ff00aa;
|
|
}
|
|
|
|
.differential-toc table {
|
|
width: 100%;
|
|
}
|
|
|
|
.differential-toc table td.differential-toc-cov,
|
|
.differential-toc table td.differential-toc-mcov {
|
|
width: 120px;
|
|
text-align: right;
|
|
padding-right: 6px;
|
|
}
|
|
|
|
.differential-toc table th {
|
|
color: {$greytext};
|
|
font-size: 11px;
|
|
padding: 0 4px 4px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.differential-toc table th.differential-toc-cov,
|
|
.differential-toc table th.differential-toc-mcov {
|
|
text-align: right;
|
|
}
|
|
|
|
.differential-toc table td em {
|
|
color: {$greytext};
|
|
}
|
|
|
|
.differential-toc .button {
|
|
margin: 8px 0px 0px 8px;
|
|
}
|
|
|
|
.differential-mcoverage-loading {
|
|
color: {$lightgreytext};
|
|
}
|