diff --git a/anatomy/static/css/anatomy.css b/anatomy/static/css/anatomy.css index c35febea..569f0d24 100644 --- a/anatomy/static/css/anatomy.css +++ b/anatomy/static/css/anatomy.css @@ -350,6 +350,10 @@ img.uploading { display: none; } +.cid-score-table { + max-width: 400px; +} + .user-answer-score-0 { color: red; } @@ -363,11 +367,11 @@ img.uploading { color: lightblue; } -.user-answer-score-1 { +.rapid-ans .user-answer-score-1 { color: lightblue; } -.user-answer-score-0\.5 { +.rapid-ans .user-answer-score-0\.5 { /* color: green; */ color: yellow; } @@ -388,6 +392,14 @@ td.user-answer-score-2::after { content: "✓✓"; } +td.user-answer-score-0\.5.rapid-ans::after { + content: "✓"; +} + +td.user-answer-score-1:.rapid-ans:after { + content: "✓✓"; +} + .user-answer-score pre { display: inline; color: inherit; diff --git a/rapids/templates/rapids/exam_scores.html b/rapids/templates/rapids/exam_scores.html index bc36084d..ef368215 100644 --- a/rapids/templates/rapids/exam_scores.html +++ b/rapids/templates/rapids/exam_scores.html @@ -22,7 +22,7 @@
| Candidate ID | Score | diff --git a/static/css/anatomy.css b/static/css/anatomy.css index c35febea..569f0d24 100644 --- a/static/css/anatomy.css +++ b/static/css/anatomy.css @@ -350,6 +350,10 @@ img.uploading { display: none; } +.cid-score-table { + max-width: 400px; +} + .user-answer-score-0 { color: red; } @@ -363,11 +367,11 @@ img.uploading { color: lightblue; } -.user-answer-score-1 { +.rapid-ans .user-answer-score-1 { color: lightblue; } -.user-answer-score-0\.5 { +.rapid-ans .user-answer-score-0\.5 { /* color: green; */ color: yellow; } @@ -388,6 +392,14 @@ td.user-answer-score-2::after { content: "✓✓"; } +td.user-answer-score-0\.5.rapid-ans::after { + content: "✓"; +} + +td.user-answer-score-1:.rapid-ans:after { + content: "✓✓"; +} + .user-answer-score pre { display: inline; color: inherit;
|---|