mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 10:52:41 +01:00
90364cafdc
Summary: Moves shared code from Differential and Maniphest comment previews into PhabricatorShapedRequest, and then implements Maniphest previews. This doesn't implement comment drafts, I'll follow up with that but it requires this and is completely separable. This also always shows the preview as "commented" rather than previewing the actual transaction. I'll follow up with that but I think it will require a little factoring and this is useful even without transaction details. I need to tweak the styling a bit too. Test Plan: Typed text in Maniphest and Differential. Toggled Differential action. Made comments. Reviewed By: rm Reviewers: rm, tuomaspelkonen, jungejason, aran CC: aran, rm Differential Revision: 258
56 lines
975 B
CSS
56 lines
975 B
CSS
/**
|
|
* @provides mainphest-task-detail-css
|
|
*/
|
|
|
|
.maniphest-panel {
|
|
margin: .5em 2em .25em;
|
|
border: 1px solid #666622;
|
|
background: #efefdf;
|
|
padding: 15px 20px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.maniphest-panel h1 {
|
|
border-bottom: 1px solid #aaaa99;
|
|
padding-bottom: 8px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
|
|
.maniphest-task-properties {
|
|
font-size: 12px;
|
|
width: 100%;
|
|
}
|
|
|
|
.maniphest-task-properties tt {
|
|
letter-spacing: 1.1px;
|
|
}
|
|
|
|
.maniphest-task-properties th {
|
|
font-weight: bold;
|
|
width: 100px;
|
|
text-align: right;
|
|
padding: 3px 4px 3px 3px;
|
|
color: #333333;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.maniphest-task-properties td {
|
|
padding: 3px 2px;
|
|
}
|
|
|
|
.maniphest-task-detail-core {
|
|
margin-right: 265px;
|
|
}
|
|
|
|
.maniphest-transaction-preview {
|
|
background: #f0f0f0;
|
|
border-top: 1px solid #dddddd;
|
|
border-bottom: 1px solid #aaaaaa;
|
|
margin: -1em 2em 2em;
|
|
padding: 15px 20px;
|
|
}
|
|
|
|
.maniphest-loading-text {
|
|
color: #666666;
|
|
}
|