diff --git a/src/main/resources/templates/case.html b/src/main/resources/templates/case.html index 4f82961..b680045 100644 --- a/src/main/resources/templates/case.html +++ b/src/main/resources/templates/case.html @@ -11,7 +11,7 @@
-

Fall

+

Fall

diff --git a/src/main/resources/templates/cases.html b/src/main/resources/templates/cases.html index 0fede1d..b8a19fe 100644 --- a/src/main/resources/templates/cases.html +++ b/src/main/resources/templates/cases.html @@ -7,12 +7,12 @@

- [[ ${cases.size()} ]] Fälle + Alle Fälle

diff --git a/src/main/resources/templates/donors.html b/src/main/resources/templates/donors.html index 7702836..220ba01 100644 --- a/src/main/resources/templates/donors.html +++ b/src/main/resources/templates/donors.html @@ -16,8 +16,11 @@
-
-

Probenspender

+
+ + Probenspender + [[ ${donor.donorPseudonym} ]] + @@ -65,7 +68,7 @@
-
+
diff --git a/src/main/resources/templates/files.html b/src/main/resources/templates/files.html index 97ff095..d49bebd 100644 --- a/src/main/resources/templates/files.html +++ b/src/main/resources/templates/files.html @@ -15,9 +15,12 @@ -
+
-

Datei

+ + Datei + [[ ${file.filePath} ]] +
@@ -61,7 +64,7 @@
- + diff --git a/src/main/resources/templates/labdataprofiles.html b/src/main/resources/templates/labdataprofiles.html index e65fe0d..e1cadde 100644 --- a/src/main/resources/templates/labdataprofiles.html +++ b/src/main/resources/templates/labdataprofiles.html @@ -19,11 +19,11 @@ -
-

+
+ Sequenzierprofil - "[[ ${ profile.profileName } ]]" -

+ [[ ${ profile.profileName } ]] +
@@ -116,7 +116,7 @@
- +
diff --git a/src/main/resources/templates/labdatas/index.html b/src/main/resources/templates/labdatas/index.html index a9ef359..467ae65 100644 --- a/src/main/resources/templates/labdatas/index.html +++ b/src/main/resources/templates/labdatas/index.html @@ -15,8 +15,11 @@ -
-

Probe/Sequenzierung

+
+ + Probe/Sequenzierung + [[ ${labdata.einsendenummer} ]] +
@@ -316,7 +319,7 @@
-
+ diff --git a/src/main/resources/templates/unusedfiles.html b/src/main/resources/templates/unusedfiles.html index 00427d4..d458217 100644 --- a/src/main/resources/templates/unusedfiles.html +++ b/src/main/resources/templates/unusedfiles.html @@ -20,9 +20,12 @@ -
+
-

Datei

+ + Datei + [[ ${file.filePath} ]] +
@@ -73,7 +76,7 @@
- + diff --git a/src/main/web/style.css b/src/main/web/style.css index 0a9294c..754f161 100644 --- a/src/main/web/style.css +++ b/src/main/web/style.css @@ -64,18 +64,38 @@ h1, h2, h3, h4 { @apply mt-5 text-white py-1 px-3 rounded-t-sm } +summary.h1, +summary.h2, +summary.h3, +summary.h4 { + @apply mt-5 text-white py-1 px-3 rounded-sm +} + +h1 > code, +summary > code { + @apply font-light m-6 +} + +details[open] > summary { + @apply rounded-b-none +} + +summary.h1, h1 { @apply text-3xl font-bold bg-blue-900 } +summary.h2, h2 { @apply text-2xl font-bold bg-green-900 } +summary.h3, h3 { @apply text-xl font-bold bg-yellow-900 } +summary.h4, h4 { @apply font-bold bg-red-900 }