This commit is contained in:
Ross
2021-08-02 11:04:02 +01:00
parent 794bbe5df8
commit fcb62776af
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -1101,7 +1101,8 @@ display: block
color: darkslateblue; color: darkslateblue;
} }
.inactive { .inactive::after {
content: "inactive";
transform: rotate(12deg); transform: rotate(12deg);
color: #555; color: #555;
font-size: 3rem; font-size: 3rem;
+1 -1
View File
@@ -191,7 +191,7 @@ async function loadExamList(data) {
c = " session-completed"; c = " session-completed";
} }
if (!exam.active) { if (!exam.exam_active) {
c = c + " inactive"; c = c + " inactive";
} }