mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
c058bbd455
Summary: Added 6px to the left and right of each TD on the revision history table. Test Plan: Used Chrome and a table with many revisions. Reviewers: vrana, epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4197
29 lines
515 B
CSS
29 lines
515 B
CSS
/**
|
|
* @provides differential-local-commits-view-css
|
|
*/
|
|
|
|
.differential-local-commits-table {
|
|
width: 100%;
|
|
border-collapse: separate;
|
|
border-spacing: 1px 2px;
|
|
}
|
|
|
|
.differential-local-commits-table th {
|
|
color: #666666;
|
|
padding: 4px 6px;
|
|
}
|
|
|
|
.differential-local-commits-table tr.alt td {
|
|
background: #dcdcdc;
|
|
}
|
|
|
|
.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%;
|
|
}
|