Skip to content

Commit a04f4c2

Browse files
committed
[Status] Display returned-for-revision proposals after implemented ones.
Proposals that are returned for revision aren't necessarily being actively discussed, unlike the other three orange/active states.
1 parent f578b72 commit a04f4c2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

index.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -589,8 +589,8 @@ section ul, section li {
589589
border-color: rgb(255, 149, 0);
590590
}
591591
.color-returned-for-revision {
592-
color: rgb(255, 149, 0);
593-
border-color: rgb(255, 149, 0);
592+
color: rgb(88, 86, 214);
593+
border-color: rgb(88, 86, 214);
594594
}
595595

596596
.color-deferred {

index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ function renderNav () {
189189
// .acceptedWithRevisions proposals are combined in the filtering UI
190190
// with .accepted proposals.
191191
var checkboxes = [
192-
'.awaitingReview', '.scheduledForReview', '.activeReview', '.returnedForRevision', '.accepted',
193-
'.implemented', '.deferred', '.rejected', '.withdrawn'
192+
'.awaitingReview', '.scheduledForReview', '.activeReview', '.accepted',
193+
'.implemented', '.returnedForRevision', '.deferred', '.rejected', '.withdrawn'
194194
].map(function (state) {
195195
var className = states[state].className
196196

@@ -257,8 +257,8 @@ function renderBody () {
257257
var proposalAttachPoint = article.querySelector('.proposals-list')
258258

259259
var proposalPresentationOrder = [
260-
'.awaitingReview', '.scheduledForReview', '.activeReview', '.returnedForRevision', '.accepted',
261-
'.acceptedWithRevisions', '.implemented', '.deferred', '.rejected', '.withdrawn'
260+
'.awaitingReview', '.scheduledForReview', '.activeReview', '.accepted',
261+
'.acceptedWithRevisions', '.implemented', '.returnedForRevision', '.deferred', '.rejected', '.withdrawn'
262262
]
263263

264264
proposalPresentationOrder.map(function (state) {

0 commit comments

Comments
 (0)