Browse Source

UI optimize

pull/6/head
Menci 8 years ago
parent
commit
4536e75100
  1. 10
      static/style.css
  2. 1
      views/contest.ejs

10
static/style.css

@ -33,6 +33,11 @@ img {
max-width: 100%;
}
table.center.aligned ul, table.center.aligned ol {
display: inline-block;
text-align: left;
}
/* status color */
/*
@ -179,8 +184,7 @@ img {
}
}
.spinner.icon {
.spinner.icon:before {
animation: spinner-icon-rotate 3s linear infinite;
width: 16.52px;
height: 16.52px;
display: block;
}

1
views/contest.ejs

@ -66,6 +66,7 @@
<i class="black checkmark icon"></i>
<% } else if (problem.status !== false) { %>
<span class="status <%= problem.status.toLowerCase().split(' ').join('_') %>">
<i class="<%= icon[getStatusMeta(problem.status)] || 'remove' %> icon"></i>
<%= problem.status %>
</span>
<% } %>

Loading…
Cancel
Save