mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 02:42:40 +01:00
5b15f725bd
Summary: most awesome is that differential-primary-pane no longer has a place in diffusion. less awesome is fixing the zebra striping on differential "Local Commits" view and making the font size of one of the table headers match the others. Test Plan: looks good! Reviewers: epriestley, chad Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4177
30 lines
534 B
CSS
30 lines
534 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.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%;
|
|
}
|