From e23c3e2f1bcaaf57b19dad4d3428d30717805c85 Mon Sep 17 00:00:00 2001 From: Guilherme de Freitas Date: Mon, 16 Feb 2026 09:31:26 +0000 Subject: [PATCH 1/2] Fix autoproc labels on mobile --- client/src/css/partials/_tables.scss | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/client/src/css/partials/_tables.scss b/client/src/css/partials/_tables.scss index fb5f184ad..54dd9ff99 100644 --- a/client/src/css/partials/_tables.scss +++ b/client/src/css/partials/_tables.scss @@ -658,12 +658,14 @@ html[xmlns] .dataTables_wrapper { display: block; } &.procsummary { td:nth-of-type(1):before { content: "Type"; } td:nth-of-type(2):before { content: "Resolution"; } - td:nth-of-type(3):before { content: "Space Group"; } - td:nth-of-type(4):before { content: "Mn"; } - td:nth-of-type(5):before { content: "Rmerge Inner"; } - td:nth-of-type(6):before { content: "Rmerge Outer"; } - td:nth-of-type(7):before { content: "Completeness"; } - td:nth-of-type(8):before { content: "Cell"; } + td:nth-of-type(3):before { content: "Resolution I/sig(I)=2"; } + td:nth-of-type(4):before { content: "Space Group"; } + td:nth-of-type(5):before { content: "Mn"; } + td:nth-of-type(6):before { content: "Rmerge Inner"; } + td:nth-of-type(7):before { content: "Rmerge Outer"; } + td:nth-of-type(8):before { content: "Completeness"; } + td:nth-of-type(9):before { content: "Cell"; } + td:nth-of-type(10):before { content: "Message"; } } &.autoprocess { From 7fbd7798d698828c6c34ee6f4c6bfedbffd3b1c6 Mon Sep 17 00:00:00 2001 From: Guilherme de Freitas Date: Mon, 16 Feb 2026 09:48:37 +0000 Subject: [PATCH 2/2] Fix Rmeas label --- client/src/css/partials/_tables.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/css/partials/_tables.scss b/client/src/css/partials/_tables.scss index 54dd9ff99..bb3fbcf3b 100644 --- a/client/src/css/partials/_tables.scss +++ b/client/src/css/partials/_tables.scss @@ -661,8 +661,8 @@ html[xmlns] .dataTables_wrapper { display: block; } td:nth-of-type(3):before { content: "Resolution I/sig(I)=2"; } td:nth-of-type(4):before { content: "Space Group"; } td:nth-of-type(5):before { content: "Mn"; } - td:nth-of-type(6):before { content: "Rmerge Inner"; } - td:nth-of-type(7):before { content: "Rmerge Outer"; } + td:nth-of-type(6):before { content: "Rmeas Inner"; } + td:nth-of-type(7):before { content: "Rmeas Outer"; } td:nth-of-type(8):before { content: "Completeness"; } td:nth-of-type(9):before { content: "Cell"; } td:nth-of-type(10):before { content: "Message"; }