diff --git a/static/style.css b/static/style.css index 11b51d2..c8ece35 100644 --- a/static/style.css +++ b/static/style.css @@ -429,13 +429,13 @@ body > .ui.page.dimmer { :not(.status_detail).status.judgement_failed, .title:hover .status_detail.status.judgement_failed, .title.active .status_detail.status.judgement_failed { - color: #78909C; + color: #FF5722; } :not(.status_detail).status.skipped, .title:hover .status_detail.status.skipped, .title.active .status_detail.status.skipped { - color: #FF5722; + color: #78909C; } :not(.status_detail).status.compiling { diff --git a/views/status_label.ejs b/views/status_label.ejs index 38555f3..0b4eae1 100644 --- a/views/status_label.ejs +++ b/views/status_label.ejs @@ -16,7 +16,7 @@ const iconList = { 'No Testdata': 'folder open outline', 'Partially Correct': 'minus', 'Judgement Failed': 'server', - 'Skipped': 'ban' + 'Skipped': 'fast forward' }; Vue.component('status-label', { template: '#statusIconTemplate',