mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
87a440888d
Summary: More Diffusion/Differential touch ups, ToC, etc. Test Plan: Look at colors, see that they match or look better. Reviewers: epriestley, btrahan Reviewed By: btrahan CC: Korvin, epriestley, aran Maniphest Tasks: T3952 Differential Revision: https://secure.phabricator.com/D7386
29 lines
538 B
CSS
29 lines
538 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: {$darkbluetext};
|
|
padding: 4px 6px;
|
|
}
|
|
|
|
.differential-local-commits-table tr.alt td {
|
|
background: {$lightgreybackground};
|
|
}
|
|
|
|
.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%;
|
|
}
|