This commit is contained in:
Ross
2021-08-19 10:21:19 +01:00
parent 80d6ea76c5
commit 73b639b27d
3 changed files with 21 additions and 2 deletions
+9
View File
@@ -363,6 +363,15 @@ img.uploading {
color: lightblue;
}
.user-answer-score-1 {
color: lightblue;
}
.user-answer-score-0\.5 {
/* color: green; */
color: yellow;
}
.physics-ans .user-answer-score-1 {
color: lightblue;
}
+1 -1
View File
@@ -51,7 +51,7 @@
<tr>
<td>Question {{forloop.counter}}</td>
{% for ans, score in by_question|get_item:question %}
<td class="user-answer-score-{{score}}" title="answer score: {{score}}">{{ans}}</td>
<td class="rapid-ans user-answer-score-{{score}}" title="answer score: {{score}}">{{ans}}</td>
{% endfor %}
</tr>
{% endfor %}
+11 -1
View File
@@ -208,7 +208,8 @@ button a {
#full-question-list li::before{
counter-increment: question-list;
content: counter(question-list) ": ";
content: counter(question-list) " ";
padding-right: 0.5em;
}
#full-question-list img{
@@ -362,6 +363,15 @@ img.uploading {
color: lightblue;
}
.user-answer-score-1 {
color: lightblue;
}
.user-answer-score-0\.5 {
/* color: green; */
color: yellow;
}
.physics-ans .user-answer-score-1 {
color: lightblue;
}