1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-14 02:42:40 +01:00
phorge-phorge/webroot/rsrc/css/application/diffusion/commit-view.css
epriestley 5f46a61e6d Show audit comments on the Diffusion commit view
Summary: We already allow you to create comments, but we don't show them on the
commit page. After style / view unification this is easy; show comments on the
commit page.

Test Plan: Made comments on a commit using the audit too, saw them show up in
Diffusion.

Reviewers: btrahan, jungejason

Reviewed By: btrahan

CC: aran, epriestley

Maniphest Tasks: T904

Differential Revision: https://secure.phabricator.com/D1687
2012-02-24 14:14:39 -08:00

48 lines
748 B
CSS

/**
* @provides diffusion-commit-view-css
*/
.diffusion-commit-details {
padding: 0.5em;
background: #f9f9f9;
border: 1px solid #dddddd;
}
.diffusion-commit-details hr {
height: 1px;
border: none;
background: #dddddd;
}
.diffusion-commit-dateline {
float: right;
color: #555555;
}
.diffusion-commit-properties th {
font-weight: bold;
color: #444444;
text-align: right;
white-space: nowrap;
padding: 2px 4px 2px 24px;
}
.diffusion-commit-properties td {
padding: 2px 4px;
}
.diffusion-commit-message {
padding: 8px;
}
.diffusion-comment-list {
margin: 2em;
}
.phabricator-transaction-view .audit-accept {
border-color: #009933;
}
.phabricator-transaction-view .audit-concern {
border-color: #aa0000;
}