aboutsummaryrefslogtreecommitdiff
path: root/admin/public
diff options
context:
space:
mode:
authorLarsVomMars2021-02-06 20:34:19 +0100
committerLarsVomMars2021-02-06 20:34:19 +0100
commit19ed7cdbe9b911d08f3e689d1f7c2e36780f71aa (patch)
tree2833d33ec353caed8bc2ec45d43a4c4399dfe298 /admin/public
parent5e950bf5b3ed34c48421ab228132dd25dee76d6e (diff)
Lulz
Diffstat (limited to 'admin/public')
-rw-r--r--admin/public/prediction.js6
-rw-r--r--admin/public/style.css9
2 files changed, 12 insertions, 3 deletions
diff --git a/admin/public/prediction.js b/admin/public/prediction.js
index 914f910..e2e1855 100644
--- a/admin/public/prediction.js
+++ b/admin/public/prediction.js
@@ -12,8 +12,10 @@ fetch("api/prediction")
const div = document.createElement("div");
div.dataset.teacher = `${d.tid}`;
const h3 = document.createElement("h3");
- const email = `${san(d.tname)}.${san(d.tsur)}@rbs-ulm.de`;
- h3.textContent = `${d.tname} ${d.tsur}: ${email}`;
+ const a = document.createElement("a");
+ a.href = `mailto:${san(d.tname)}.${san(d.tsur)}@rbs-ulm.de`;
+ a.textContent = `${d.tname} ${d.tsur}`;
+ h3.append(a);
const ul = document.createElement("ul");
addLI(d, ul);
div.append(h3, ul);
diff --git a/admin/public/style.css b/admin/public/style.css
index f1bbc9e..f889abb 100644
--- a/admin/public/style.css
+++ b/admin/public/style.css
@@ -28,8 +28,15 @@ div {
background: white;
}
-#list span {
+#list h3 a {
cursor: pointer;
+ text-decoration: none;
+ color: #4c4c4c;
+ font-style: italic;
+}
+
+#list h3 a:hover {
+ opacity: 0.7;
}
@media only screen and (max-width: 700px) {