some refactoring and atlas improvements

This commit is contained in:
Ross
2023-07-24 11:56:12 +01:00
parent e6469e70f0
commit dd300afd63
26 changed files with 521 additions and 170 deletions
+28 -3
View File
@@ -750,10 +750,19 @@ input {
min-width: 10px;
}
*/
.sba-finish-list a {
text-decoration: none;
color: unset;
}
.sba-finish-list span {
color: lightblue;
}
.sba-finish-list span.unanswered {
color: gray;
.sba-finish-list a button.unanswered {
color: red;
border-style: dashed;
}
.no-select {
@@ -975,3 +984,19 @@ h1, h2, h3, h4, h5, h6 {
.cid-candidate-list div {
}
.stamp-white {
display: inline-block;
z-index:1;
font-family:Arial,sans-serif;
transform: rotate(-15deg);
font-size:20px;
color:white;
border:solid 2px white;
padding:5px;
border-radius:5px;
zoom:1;
filter:alpha(opacity=20);
opacity:0.9;
text-shadow: 0 0 2px white;
box-shadow: 0 0 2px white;
}
+1 -1
View File
@@ -9,7 +9,7 @@ from generic.models import CidUser, CidUserGroup, UserUserGroup, ExamBase
from generic.views import ExamViews
from django.contrib.auth.models import User
from django.urls import reverse
from rich.pretty import pprint
def AssertNotFound(client, url):
"""Helper to quickly test for urls that should return a 404 (NOT FOUND) error"""