mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-23 15:22:41 +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
89 lines
1.7 KiB
CSS
89 lines
1.7 KiB
CSS
/**
|
|
* @provides differential-revision-history-css
|
|
*/
|
|
|
|
.differential-revision-history-table {
|
|
width: 100%;
|
|
border-collapse: separate;
|
|
border-spacing: 1px;
|
|
}
|
|
|
|
.differential-revision-history-table th {
|
|
color: #666666;
|
|
font-size: 11px;
|
|
padding: 0 .5em;
|
|
}
|
|
|
|
.differential-revision-history-table td {
|
|
padding: 4px 0px 4px 0px;
|
|
}
|
|
|
|
.differential-revision-history-table td {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.differential-revision-history-table tr.alt {
|
|
background: #dcdcdc;
|
|
}
|
|
|
|
|
|
.differential-revision-history-table td.revhistory-desc {
|
|
width: 100%;
|
|
white-space: normal;
|
|
padding-left: .5em;
|
|
}
|
|
|
|
.differential-revision-history-table td.revhistory-name {
|
|
font-weight: bold;
|
|
padding-right: .5em;
|
|
padding-left: .5em;
|
|
}
|
|
|
|
.differential-revision-history-table td.revhistory-age {
|
|
text-align: right;
|
|
}
|
|
|
|
.differential-revision-history-table td.revhistory-old,
|
|
.differential-revision-history-table td.revhistory-new {
|
|
padding: 0em 1.5em;
|
|
text-align: center;
|
|
}
|
|
|
|
.differential-revision-history-table td.revhistory-old {
|
|
background: #f9d0d0;
|
|
}
|
|
|
|
.differential-revision-history-table td.revhistory-old-now {
|
|
background: #ffaaaa;
|
|
}
|
|
|
|
.differential-revision-history-table td.revhistory-new {
|
|
background: #d0ffd0;
|
|
}
|
|
|
|
.differential-revision-history-table td.revhistory-new-now {
|
|
background: #aaffaa;
|
|
}
|
|
|
|
.differential-revision-history-table td.revhistory-star {
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
|
|
|
|
.differential-revision-history-table td.diff-differ-submit {
|
|
text-align: right;
|
|
border-bottom: none;
|
|
padding: 8px 0px 4px 0px;
|
|
}
|
|
|
|
.differential-revision-history-table td.diff-differ-submit button {
|
|
margin-left: 1em;
|
|
}
|
|
|
|
.differential-revision-history-table td.diff-differ-submit label {
|
|
font-weight: bold;
|
|
padding-right: .25em;
|
|
color: #444444;
|
|
}
|