Browse Source

Add Skipped status

pull/6/head
Menci 7 years ago
parent
commit
13fca37642
  1. 6
      static/style.css
  2. 3
      views/util.ejs

6
static/style.css

@ -422,6 +422,12 @@ body > .ui.page.dimmer {
color: #78909C;
}
:not(.status_detail).status.skipped,
.title:hover .status_detail.status.skipped,
.title.active .status_detail.status.skipped {
color: #FF5722;
}
:not(.status_detail).status.compiling {
color: #00b5ad;
}

3
views/util.ejs

@ -33,6 +33,7 @@ this.icon = {
'System Error': 'server',
'No Testdata': 'folder open outline',
'Partially Correct': 'minus',
'Judgement Failed': 'ban'
'Judgement Failed': 'server',
'Skipped': 'ban'
};
%>

Loading…
Cancel
Save