mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
76ac8b4196
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
30 lines
530 B
CSS
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%;
|
|
}
|