fix: improved content alignment in message info

increased attachment preview size to alignment with other content
pull/3017/head
William Grant 1 year ago
parent 87db68fac8
commit ab62285989

@ -50,7 +50,7 @@ export const SubtitleDotMenu = ({
optionsCount: number; optionsCount: number;
style: CSSProperties; style: CSSProperties;
}) => ( }) => (
<Flex id={id} container={true} alignItems={'center'} style={style}> <StyledSubtitleDotMenu id={id} container={true} alignItems={'center'} style={style}>
{Array(optionsCount) {Array(optionsCount)
.fill(0) .fill(0)
.map((_, index) => { .map((_, index) => {
@ -61,7 +61,7 @@ export const SubtitleDotMenu = ({
/> />
); );
})} })}
</Flex> </StyledSubtitleDotMenu>
); );
type ConversationHeaderSubtitleProps = { type ConversationHeaderSubtitleProps = {

@ -79,7 +79,7 @@ const StyledMessageDetail = styled.div`
max-width: 650px; max-width: 650px;
margin-inline-start: auto; margin-inline-start: auto;
margin-inline-end: auto; margin-inline-end: auto;
padding: var(--margins-sm) var(--margins-lg) var(--margins-lg); padding: var(--margins-sm) var(--margins-2xl) var(--margins-lg);
`; `;
export const OverlayMessageInfo = () => { export const OverlayMessageInfo = () => {

@ -48,10 +48,11 @@ const ImageContainer = styled.div`
${StyledSubtitleDotMenu} { ${StyledSubtitleDotMenu} {
position: absolute; position: absolute;
bottom: 12px; bottom: 8px;
left: 0; left: 0;
right: 0; right: 0;
margin: 0 auto; margin: 0 auto;
z-index: 2;
} }
${StyledFullscreenButton} { ${StyledFullscreenButton} {
@ -116,12 +117,6 @@ export const AttachmentCarousel = (props: Props) => {
optionsCount={attachments.length} optionsCount={attachments.length}
style={{ style={{
display: attachments.length < 2 ? 'none' : 'undefined', display: attachments.length < 2 ? 'none' : 'undefined',
position: 'absolute',
bottom: '8px',
left: '0',
right: '0',
zIndex: 2,
margin: '0 auto',
padding: '6px', padding: '6px',
backgroundColor: 'var(--modal-background-color)', backgroundColor: 'var(--modal-background-color)',
borderRadius: '50px', borderRadius: '50px',

@ -23,6 +23,7 @@ export type ThemeGlobals = {
'--margins-md': string; '--margins-md': string;
'--margins-lg': string; '--margins-lg': string;
'--margins-xl': string; '--margins-xl': string;
'--margins-2xl': string;
/* Padding */ /* Padding */
'--padding-message-content': string; '--padding-message-content': string;
@ -112,6 +113,7 @@ export const THEME_GLOBALS: ThemeGlobals = {
'--margins-md': '15px', '--margins-md': '15px',
'--margins-lg': '20px', '--margins-lg': '20px',
'--margins-xl': '25px', '--margins-xl': '25px',
'--margins-2xl': '30px',
'--padding-message-content': '7px 13px', '--padding-message-content': '7px 13px',
'--padding-link-preview': '-7px -13px 7px -13px', // bottom has positive value because a link preview has always a body below '--padding-link-preview': '-7px -13px 7px -13px', // bottom has positive value because a link preview has always a body below
@ -159,10 +161,10 @@ export const THEME_GLOBALS: ThemeGlobals = {
'--message-link-preview-background-color': `rgba(${hexColorToRGB(COLORS.BLACK)}, 0.06)`, '--message-link-preview-background-color': `rgba(${hexColorToRGB(COLORS.BLACK)}, 0.06)`,
'--right-panel-width': '420px', '--right-panel-width': '420px',
// TODO confirm what is better min-width: 350px; // because the disappear messages don't render well with less than this, and 25vw can be less than that
'--right-panel-height': '100%', '--right-panel-height': '100%',
'--right-panel-attachment-width': '350px', '--right-panel-attachment-width': 'calc(var(--right-panel-width) - 2 * var(--margins-2xl) - 7px)',
'--right-panel-attachment-height': '350px', '--right-panel-attachment-height':
'calc(var(--right-panel-height) - 2 * var(--margins-2xl) -7px)',
}; };
// These should only be needed for the global style (at root). // These should only be needed for the global style (at root).

Loading…
Cancel
Save