1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00
phorge-phorge/webroot/rsrc/css/application/differential/local-commits-view.css
epriestley 76ac8b4196 Display local commit information in Differential
Summary:
After D857, we try to attach local commit information to revisions. If this
information is available, display it on the revision.

Design on this is a little rough, I might try to combine this into the revision
update view or something like that since we're starting to take up a lot of real
estate for metadata.

Test Plan: Local diffed this and got some commit info.

Reviewers: jungejason, tuomaspelkonen, aran

Reviewed By: jungejason

CC: aran, epriestley, jungejason

Differential Revision: 872
2011-08-31 13:49:50 -07:00

30 lines
530 B
CSS

/**
* @provides differential-local-commits-view-css
*/
.differential-local-commits-table {
width: 100%;
font-size: 11px;
border-collapse: separate;
border-spacing: 1px 2px;
}
.differential-local-commits-table th {
color: #666666;
padding: 4px 6px;
}
.differential-local-commits-table tr td {
background: #dcdeca;
}
.differential-local-commits-table td {
padding: 4px 6px;
white-space: nowrap;
vertical-align: top;
}
.differential-local-commits-table td.summary {
white-space: normal;
width: 100%;
}