From 38a637e5cbfa4d42d66bf8c29e781e9fe8868f3f Mon Sep 17 00:00:00 2001 From: Roland Osborne Date: Wed, 26 Mar 2025 15:48:48 -0700 Subject: [PATCH] styling of thread message input --- app/client/mobile/src/conversation/Conversation.styled.ts | 1 + app/client/mobile/src/conversation/Conversation.tsx | 1 - app/client/web/src/conversation/Conversation.tsx | 3 +++ app/client/web/src/message/Message.tsx | 3 ++- 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/app/client/mobile/src/conversation/Conversation.styled.ts b/app/client/mobile/src/conversation/Conversation.styled.ts index a67b70c0..d61dedce 100644 --- a/app/client/mobile/src/conversation/Conversation.styled.ts +++ b/app/client/mobile/src/conversation/Conversation.styled.ts @@ -161,6 +161,7 @@ export const styles = StyleSheet.create({ width: '100%', fontSize: 14, padding: 0, + maxHeight: 256, }, controls: { display: 'flex', diff --git a/app/client/mobile/src/conversation/Conversation.tsx b/app/client/mobile/src/conversation/Conversation.tsx index dd64ee07..a97aeb5b 100644 --- a/app/client/mobile/src/conversation/Conversation.tsx +++ b/app/client/mobile/src/conversation/Conversation.tsx @@ -289,7 +289,6 @@ export function Conversation({close, openDetails, wide}: {close: () => void; ope editable={!sending} textColor={state.textColorSet ? state.textColor : undefined} outlineColor="transparent" - activeOutlineColor="transparent" spellcheck={false} autoComplete="off" autoCapitalize="none" diff --git a/app/client/web/src/conversation/Conversation.tsx b/app/client/web/src/conversation/Conversation.tsx index cd53b018..c3889190 100644 --- a/app/client/web/src/conversation/Conversation.tsx +++ b/app/client/web/src/conversation/Conversation.tsx @@ -199,6 +199,9 @@ export function Conversation({ openDetails }: { openDetails: () => void }) {
{media}