mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-23 21:18:19 +01:00
2f82210e46
Summary: basically made the header elements for the individual panes and cleaned up the panes to make it look okay. tried to copy colors from @chad 's mocks. Test Plan: looks good to me Reviewers: epriestley, chad Reviewed By: chad CC: aran, Korvin Maniphest Tasks: T2004 Differential Revision: https://secure.phabricator.com/D4174
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: #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%;
|
|
}
|