mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
f249ffc882
Summary: This makes some of the line spacing, paragraph spacing and layout less terrible. In particular, fixes code blocks inside Differential inline comments. Test Plan: Looked at Maniphest Tasks, Differential Revisions and Differential inline comments with various flavors of remarkup in them. Reviewed By: jungejason Reviewers: tuomaspelkonen, jungejason CC: jungejason Differential Revision: 89
73 lines
1.3 KiB
CSS
73 lines
1.3 KiB
CSS
/**
|
|
* @provides maniphest-transaction-detail-css
|
|
*/
|
|
|
|
.maniphest-transaction-detail-container {
|
|
margin: 2px 1em 3px;
|
|
background: 0px 0px no-repeat;
|
|
min-height: 50px;
|
|
}
|
|
|
|
.maniphest-transaction-detail-container .upforgrab {
|
|
border-color: #cc9966;
|
|
}
|
|
|
|
.maniphest-transaction-detail-container .reassigned {
|
|
border-color: #0099aa;
|
|
}
|
|
|
|
.maniphest-transaction-detail-container .assigned {
|
|
border-color: #0099aa;
|
|
}
|
|
|
|
.maniphest-transaction-detail-container .claimed {
|
|
border-color: #0099aa;
|
|
}
|
|
|
|
.maniphest-transaction-detail-container .created {
|
|
border-color: #660099;
|
|
}
|
|
|
|
.maniphest-transaction-detail-container .closed {
|
|
border-color: #006699;
|
|
}
|
|
|
|
.maniphest-transaction-detail-container .spited {
|
|
border-color: #006699;
|
|
}
|
|
|
|
.maniphest-transaction-detail-container .reopened {
|
|
border-color: #660099;
|
|
}
|
|
|
|
.maniphest-transaction-detail-container .unbreaknow {
|
|
border-color: #aa0000;
|
|
}
|
|
|
|
.maniphest-transaction-header {
|
|
background: #e6e6e6;
|
|
padding: 4px 1em;
|
|
}
|
|
|
|
.maniphest-transaction-header a {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.maniphest-transaction-detail-view {
|
|
margin-left: 54px;
|
|
border-color: #bbbbbb;
|
|
border-width: 1px 10px;
|
|
border-style: solid;
|
|
min-height: 40px;
|
|
}
|
|
|
|
.maniphest-transaction-timestamp {
|
|
float: right;
|
|
font-size: 11px;
|
|
color: #666666;
|
|
}
|
|
|
|
.maniphest-transaction-comments {
|
|
padding: 4px 1em;
|
|
background: #f3f3f3;
|
|
}
|