mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
8dd77786c0
Summary: Changes the tan table with the girly blue header color. Test Plan: Chrome Reviewers: vrana, epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2176 Differential Revision: https://secure.phabricator.com/D4164
78 lines
1.6 KiB
CSS
78 lines
1.6 KiB
CSS
/**
|
|
* @provides differential-results-table-css
|
|
*/
|
|
|
|
table.differential-results-table {
|
|
border-collapse: separate;
|
|
border-spacing: 1px;
|
|
width: 100%;
|
|
font-size: 11px;
|
|
background: #fcfcec;
|
|
}
|
|
|
|
.differential-results-table th {
|
|
font-weight: bold;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
vertical-align: middle;
|
|
padding: 2px 4px;
|
|
margin: 0;
|
|
width: 70px;
|
|
}
|
|
|
|
.differential-results-table td {
|
|
padding: 2px 8px;
|
|
margin: 0;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.differential-results-table tr.differential-results-row-star th,
|
|
.differential-results-table tr.differential-results-row-star td {
|
|
font-weight: bold;
|
|
background: #dfe3ec;
|
|
}
|
|
|
|
|
|
.differential-results-table tr.differential-results-row-section th {
|
|
font-weight: bold;
|
|
padding-top: 4px;
|
|
text-align: left;
|
|
}
|
|
|
|
.differential-results-table tr.differential-results-row-excuse th {
|
|
background: #3399ff;
|
|
}
|
|
|
|
.differential-results-table tr.differential-results-row-excuse td {
|
|
padding-top: 1em;
|
|
padding-right: 1em;
|
|
padding-bottom: 1em;
|
|
}
|
|
|
|
.differential-results-table tr.differential-results-row-red th {
|
|
background: #ff4422;
|
|
}
|
|
|
|
.differential-results-table tr.differential-results-row-yellow th {
|
|
background: #ffdd66;
|
|
}
|
|
|
|
.differential-results-table tr.differential-results-row-green th {
|
|
background: #22dd44;
|
|
}
|
|
|
|
.differential-results-table tr.differential-results-row-blue th {
|
|
background: #88bbff;
|
|
}
|
|
|
|
|
|
.differential-results-table tr.differential-results-row-details td {
|
|
color: #888888;
|
|
}
|
|
|
|
.differential-results-table tr.differential-results-row-show th {
|
|
padding: 4px;
|
|
color: #888888;
|
|
font-weight: bold;
|
|
background: #dfe3ec;
|
|
}
|