mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 02:12:41 +01:00
fa2911b2b8
Summary: Because D1028 caused the column containing differential revision property labels to have a fixed width, some custom labels are longer than what fits (and it makes more sense to word wrap them instead of making the column wider). I also updated the corresponding maniphest css for consistency. Test Plan: Used firebug to remove css property and visually check that is the intended effect; loaded a page after the revision and saw that the css property is no longer set, allowing the labels to wrap. Reviewers: epriestley, jungejason Reviewed By: jungejason CC: aran, jungejason, epriestley Differential Revision: 1066
48 lines
844 B
CSS
48 lines
844 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%;
|
|
table-layout: fixed;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.maniphest-task-properties td {
|
|
padding: 3px 2px;
|
|
}
|
|
|
|
.maniphest-task-detail-core {
|
|
margin-right: 265px;
|
|
}
|
|
|
|
.maniphest-task-detail-core .create-button-container {
|
|
float:right;
|
|
margin-top:-0.5em;
|
|
}
|