mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
17306b7a92
Summary: ReviewBoard has a fancier version of this feature that's more granular -- the keyboard can focus on individual changes. I think that's good and intend to implement something similar, but this gets us a step closer and gets rid of some of the bookkeeping stuff like making shortcuts discoverable. (I have another brnach with Maniphest merging which also uses fatcow icons, which is why the README seems a little out of context.) Test Plan: Used "j" and "k" to jump between changesets. Pressed "?" and got a list of available shortcuts. Reviewed By: tuomaspelkonen Reviewers: aran, jungejason, tuomaspelkonen CC: moskov, aran, epriestley, tuomaspelkonen Differential Revision: 412
91 lines
1.5 KiB
CSS
91 lines
1.5 KiB
CSS
/**
|
|
* @provides differential-revision-detail-css
|
|
*/
|
|
|
|
.differential-revision-properties {
|
|
font-size: 12px;
|
|
width: 100%;
|
|
}
|
|
|
|
.differential-revision-properties tt {
|
|
letter-spacing: 1.1px;
|
|
}
|
|
|
|
.differential-revision-properties th {
|
|
font-weight: bold;
|
|
width: 100px;
|
|
text-align: right;
|
|
padding: 3px 4px 3px 3px;
|
|
color: #333333;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.differential-revision-properties td {
|
|
padding: 3px 2px;
|
|
}
|
|
|
|
.differential-revision-detail-core {
|
|
margin-right: 265px;
|
|
}
|
|
|
|
.differential-unit-block,
|
|
.differential-lint-block {
|
|
padding: .5em;
|
|
background: #fcfcec;
|
|
margin: .5em 0;
|
|
font-size: 11px;
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
.differential-lint-block .lint-severity-warning {
|
|
background: #ffff66;
|
|
padding: 0 0.5em;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.differential-lint-block .lint-severity-error {
|
|
background: #ff3333;
|
|
padding: 0 0.5em;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.differential-lint-block .lint-file-block {
|
|
}
|
|
|
|
.differential-lint-block li li {
|
|
margin-left: 1.5em;
|
|
}
|
|
|
|
.differential-lint-block li li p {
|
|
margin-left: 1em;
|
|
color: #666666;
|
|
}
|
|
|
|
.differential-unit-table th {
|
|
white-space: nowrap;
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
.differential-unit-table th.unit-test-result {
|
|
padding: 0;
|
|
}
|
|
|
|
.differential-unit-table .result-fail {
|
|
background: #ff3333;
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
.differential-unit-table .result-unsound {
|
|
background: #cc33cc;
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
.differential-unit-table td {
|
|
width: 100%;
|
|
padding: 4px 8px;
|
|
color: #666666;
|
|
}
|
|
|
|
.differential-keyboard-shortcuts {
|
|
float: right;
|
|
}
|