From 3eabc1c5e3aac697e2f22bdd64f6ce3d821e86ce Mon Sep 17 00:00:00 2001 From: Ashley Wright Date: Fri, 18 Sep 2026 12:43:05 -0600 Subject: [PATCH 1/3] fix: delete member survey no longer has blue text and the selection boxes are now inline --- src/components/DeleteMemberSurvey.js | 111 ++++++++++--------- src/components/DeleteMemberSurvey.module.css | 9 ++ 2 files changed, 66 insertions(+), 54 deletions(-) diff --git a/src/components/DeleteMemberSurvey.js b/src/components/DeleteMemberSurvey.js index 1dbaf23b0b..49cfa87527 100644 --- a/src/components/DeleteMemberSurvey.js +++ b/src/components/DeleteMemberSurvey.js @@ -130,64 +130,67 @@ export const DeleteMemberSurvey = (props) => { ) : ( - + {__('Disconnect institution')} - - - - - {_p( - 'connect/deletesurvey/disclaimer/text', - 'Why do you want to disconnect %1?', - member.name, - )} - - * + + + + + + {_p( + 'connect/deletesurvey/disclaimer/text', + 'Why do you want to disconnect %1?', + member.name, + )} + + * + - - -
- {reasonList.map((reason, i) => ( -
- setSelectedReason(e.target.value)} - selected={selectedReason === reason} - value={reason} - /> -
- ))} -
-
-
- - - - * - {' '} - {__('Required')} - + +
+ {reasonList.map((reason, i) => ( +
+ setSelectedReason(e.target.value)} + selected={selectedReason === reason} + value={reason} + /> +
+ ))} +
+
+ + + + + * + {' '} + {__('Required')} + +
{isSubmitted && !selectedReason && ( diff --git a/src/components/DeleteMemberSurvey.module.css b/src/components/DeleteMemberSurvey.module.css index ddefac5caa..b29175d362 100644 --- a/src/components/DeleteMemberSurvey.module.css +++ b/src/components/DeleteMemberSurvey.module.css @@ -18,6 +18,15 @@ margin-bottom: var(--spacing-1-point-5); } +.disclaimer:global(.MuiTypography-root) { + color: var(--mui-palette-text-primary); +} + +.option :global(.MuiFormControlLabel-root) { + margin-left: 0; + margin-right: 0; +} + .buttons:global(.MuiStack-root) { margin-top: var(--spacing-2-point-5); } From ca56c588834479838d44d21912b35196770ef199 Mon Sep 17 00:00:00 2001 From: Ashley Wright Date: Fri, 18 Sep 2026 12:49:52 -0600 Subject: [PATCH 2/3] removed unneeded styles --- src/components/DeleteMemberSurvey.js | 2 +- src/components/DeleteMemberSurvey.module.css | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/src/components/DeleteMemberSurvey.js b/src/components/DeleteMemberSurvey.js index 49cfa87527..64277a5a66 100644 --- a/src/components/DeleteMemberSurvey.js +++ b/src/components/DeleteMemberSurvey.js @@ -157,7 +157,7 @@ export const DeleteMemberSurvey = (props) => {
{reasonList.map((reason, i) => ( -
+
Date: Fri, 18 Sep 2026 12:57:50 -0600 Subject: [PATCH 3/3] removed css module and used color instead --- src/components/DeleteMemberSurvey.js | 2 +- src/components/DeleteMemberSurvey.module.css | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/components/DeleteMemberSurvey.js b/src/components/DeleteMemberSurvey.js index 64277a5a66..c7ab8d6b66 100644 --- a/src/components/DeleteMemberSurvey.js +++ b/src/components/DeleteMemberSurvey.js @@ -139,7 +139,7 @@ export const DeleteMemberSurvey = (props) => {