From e38cd31ca75e8b4b18a02d74c3aafddc9c83643a Mon Sep 17 00:00:00 2001 From: uberubert Date: Mon, 13 Jan 2025 15:45:47 +0100 Subject: [PATCH 1/2] Relocate scroll constriction in alternate greetings popup --- public/style.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/public/style.css b/public/style.css index ce076f915..93dc6e485 100644 --- a/public/style.css +++ b/public/style.css @@ -5735,3 +5735,15 @@ body:not(.movingUI) .drawer-content.maximized { } } + +/* Constrict the scroll of alternate greetings to only the dynamic form section */ +.alternate_grettings { + display: grid; + grid-template-rows: auto auto auto 1fr; + max-height: 100%; + overflow: hidden; +} + +.alternate_greetings_list { + overflow-y: scroll; +} \ No newline at end of file From f840d63bdb1f466ea748332ba04c7efc54d9d619 Mon Sep 17 00:00:00 2001 From: uberubert Date: Mon, 13 Jan 2025 15:56:17 +0100 Subject: [PATCH 2/2] Fix formatting --- public/style.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/public/style.css b/public/style.css index 93dc6e485..d38502912 100644 --- a/public/style.css +++ b/public/style.css @@ -5738,12 +5738,12 @@ body:not(.movingUI) .drawer-content.maximized { /* Constrict the scroll of alternate greetings to only the dynamic form section */ .alternate_grettings { - display: grid; - grid-template-rows: auto auto auto 1fr; - max-height: 100%; - overflow: hidden; + display: grid; + grid-template-rows: auto auto auto 1fr; + max-height: 100%; + overflow: hidden; } .alternate_greetings_list { - overflow-y: scroll; -} \ No newline at end of file + overflow-y: scroll; +}