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
71 lines
1.2 KiB
CSS
71 lines
1.2 KiB
CSS
/**
|
|
* @provides maniphest-transaction-detail-css
|
|
*/
|
|
|
|
.maniphest-transaction-list-view {
|
|
padding: 0 2em;
|
|
}
|
|
|
|
.maniphest-transaction-list-view .anchor-target {
|
|
background-color: #ffffdd;
|
|
border-color: #ffff00;
|
|
}
|
|
|
|
.phabricator-transaction-view .upforgrab {
|
|
border-color: #cc9966;
|
|
}
|
|
|
|
.phabricator-transaction-view .reassigned {
|
|
border-color: #0099aa;
|
|
}
|
|
|
|
.phabricator-transaction-view .assigned {
|
|
border-color: #0099aa;
|
|
}
|
|
|
|
.phabricator-transaction-view .claimed {
|
|
border-color: #0099aa;
|
|
}
|
|
|
|
.phabricator-transaction-view .created {
|
|
border-color: #660099;
|
|
}
|
|
|
|
.phabricator-transaction-view .closed {
|
|
border-color: #006699;
|
|
}
|
|
|
|
.phabricator-transaction-view .spited {
|
|
border-color: #006699;
|
|
}
|
|
|
|
.phabricator-transaction-view .reopened {
|
|
border-color: #660099;
|
|
}
|
|
|
|
.phabricator-transaction-view .unbreaknow {
|
|
border-color: #aa0000;
|
|
}
|
|
|
|
.phabricator-transaction-view .duplicate {
|
|
border-color: #333333;
|
|
}
|
|
|
|
.maniphest-change-table {
|
|
width: 100%;
|
|
margin: .5em 0em;
|
|
border-collapse: separate;
|
|
border-spacing: 4px 0px;
|
|
}
|
|
|
|
.maniphest-change-table td {
|
|
width: 50%;
|
|
padding: 0.25em 1em;
|
|
background: #f9f9f9;
|
|
}
|
|
|
|
.maniphest-change-table th {
|
|
font-weight: bold;
|
|
padding: 0.25em;
|
|
border-bottom: 1px solid #cccccc;
|
|
}
|