diff --git a/anatomy/static/css/anatomy.css b/anatomy/static/css/anatomy.css index f7a96795..a7df6290 100644 --- a/anatomy/static/css/anatomy.css +++ b/anatomy/static/css/anatomy.css @@ -754,4 +754,12 @@ input { .clear-both { clear: both; +} + +.check-saved { + color: purple; +} + +.current-mark { + color: darkred; } \ No newline at end of file diff --git a/rapids/templates/rapids/mark.html b/rapids/templates/rapids/mark.html index 860824e6..c07d97a5 100644 --- a/rapids/templates/rapids/mark.html +++ b/rapids/templates/rapids/mark.html @@ -111,7 +111,7 @@ $(".marking-list .answer").each((n, el) => { console.log(n, el, el.dataset); if (el.dataset.mark != el.dataset.newmark) { - $(el).after(`Current mark [${el.dataset.mark}]`) + $(el).after(`Current mark [${el.dataset.mark}]`) } }) $("button.check-review").after("Discreptant answers are show above. Click next / save to update you your answers").hide()