[JENKINS-36772] Update changes tab style so message can span multiple lines (#415)

* [JENKINS-36772] allow multiple line breaks in message

* [JENKINS-36772] vertical align should be top

* eslint - formating changes and fix offences
This commit is contained in:
Thorsten Scherler 2016-08-18 14:06:28 +02:00 committed by GitHub
parent e663ce5812
commit 3f5242b7a2
2 changed files with 12 additions and 1 deletions

View File

@ -38,7 +38,7 @@ export default class RunDetailsChanges extends Component {
<tr key={commit.commitId}>
<td><CommitHash commitId={commit.commitId} /></td>
<td>{commit.author.fullName}</td>
<td>{commit.msg}</td>
<td className="multipleLines">{commit.msg}</td>
<td><ReadableDate date={commit.timestamp} liveUpdate /></td>
</tr>
))}

View File

@ -197,3 +197,14 @@ code div a.btn-secondary.inverse:hover{
background-color: @pre-color-hover;
}
.jdl-table {
td.multipleLines {
white-space: pre-wrap;
}
}
.changeset-table {
td {
vertical-align: top;
}
}