1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-21 01:38:48 +02:00
phorge-phorge/webroot/rsrc/css/application/differential/local-commits-view.css
Chad Little c058bbd455 Tweak padding on revision history table.
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
2012-12-15 07:59:18 -08:00

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%;
}