From 7be91444a867774362eb5b57bdd246fb50189e7d Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Tue, 6 Jan 2026 16:34:12 +0100 Subject: feat: block further initial submissions (#232) --- src/main/resources/static/style.css | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) (limited to 'src/main/resources/static') diff --git a/src/main/resources/static/style.css b/src/main/resources/static/style.css index 83d98c3..33e5d20 100644 --- a/src/main/resources/static/style.css +++ b/src/main/resources/static/style.css @@ -360,7 +360,7 @@ form.samplecode-input input:focus-visible { } .border { - padding: 1.5rem; + padding: 1rem; border: 1px solid var(--table-border); border-radius: .5rem; background: white; @@ -382,7 +382,7 @@ table { } table.config-table td:first-child { - width: 24rem; + width: 26rem; min-width: fit-content; } @@ -451,10 +451,13 @@ th { } td { - font-family: monospace; border-bottom: 1px solid var(--bg-gray-op); } +td, td > a { + font-family: monospace; +} + tr:last-of-type > td { border-bottom: none; } @@ -465,10 +468,9 @@ td > small { } td.patient-id { - width: 32rem; + min-width: 20rem; text-overflow: ellipsis; overflow: hidden; - display: block; } td.bg-blue, th.bg-blue, @@ -571,6 +573,11 @@ td.clipboard.clipped { color: white; } +.btn.btn-green { + background: var(--bg-green); + color: white; +} + .btn.btn-blue { background: var(--bg-blue); color: white; -- cgit v1.2.3