mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
282d6e5ffa
Summary: I want to add comments to commits, and they should obviously share code with the nearly-identical comments in Maniphest and Differential. Unify code/style as much as possible. This program made possible by a generous grant from D1513. Test Plan: - Looked at a bunch of different Differential and Maniphest comments; they appeared to render identically to how they looked before. - Tested some edge cases like anchors and "show details" on description edits in Maniphest. Reviewers: btrahan, jungejason Reviewed By: btrahan CC: aran, epriestley Maniphest Tasks: T904 Differential Revision: https://secure.phabricator.com/D1686
39 lines
702 B
CSS
39 lines
702 B
CSS
/**
|
|
* @provides phabricator-transaction-view-css
|
|
*/
|
|
|
|
.phabricator-transaction-view {
|
|
background: 0px 2px no-repeat;
|
|
margin: 1em 0 1.25em;
|
|
min-height: 50px;
|
|
padding: 2px 0px;
|
|
}
|
|
|
|
.phabricator-transaction-detail {
|
|
border-color: #dddddd;
|
|
border-width: 1px 10px;
|
|
border-style: solid;
|
|
margin-left: 54px;
|
|
}
|
|
|
|
.phabricator-transaction-header {
|
|
background: #f3f3f3;
|
|
padding: 4px 1em;
|
|
}
|
|
|
|
.phabricator-transaction-header a {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.phabricator-transaction-info {
|
|
color: #666666;
|
|
float: right;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.phabricator-transaction-content {
|
|
background: #fcfcfc;
|
|
line-height: 1.4em;
|
|
padding: .3em 1em;
|
|
overflow: auto;
|
|
}
|