Merge remote-tracking branch 'qortal/develop' into feature/large-files-and-names

This commit is contained in:
2025-05-30 01:28:23 +03:00
38 changed files with 345 additions and 229 deletions

View File

@@ -348,6 +348,15 @@ export const MessageItem = memo(
scrollToItem(replyIndex);
}}
>
<Box
sx={{
background: theme.palette.text.primary,
height: '100%',
width: '5px',
flexShrink: 0,
}} // This is the little bar at left of replied messages
/>
<Box
sx={{
padding: '5px',
@@ -393,6 +402,7 @@ export const MessageItem = memo(
{message?.images && messageHasImage(message) && (
<Embed embedLink={buildImageEmbedLink(message.images[0])} />
)}
<Box
sx={{
display: 'flex',
@@ -463,11 +473,12 @@ export const MessageItem = memo(
vertical: 'bottom',
horizontal: 'center',
}}
PaperProps={{
// TODO: deprecated
style: {
backgroundColor: theme.palette.background.default,
color: theme.palette.text.primary,
slotProps={{
paper: {
style: {
backgroundColor: theme.palette.background.default,
color: theme.palette.text.primary,
},
},
}}
>
@@ -593,6 +604,7 @@ export const MessageItem = memo(
})}
</Typography>
)}
<Typography
sx={{
fontSize: '14px',