diff --git a/app/javascript/dashboard/components-next/message/Message.vue b/app/javascript/dashboard/components-next/message/Message.vue index 90721e322..1952e9327 100644 --- a/app/javascript/dashboard/components-next/message/Message.vue +++ b/app/javascript/dashboard/components-next/message/Message.vue @@ -218,9 +218,11 @@ const gridTemplate = computed(() => { const map = { [ORIENTATION.LEFT]: ` "avatar bubble" + "spacer meta" `, [ORIENTATION.RIGHT]: ` "bubble" + "meta" `, }; @@ -399,6 +401,7 @@ provideMessageContext({ class="[grid-area:bubble] flex" :class="{ 'pl-9 justify-end': orientation === ORIENTATION.RIGHT, + 'min-w-0': variant === MESSAGE_VARIANTS.EMAIL, }" @contextmenu="openContextMenu($event)" > diff --git a/app/javascript/dashboard/components-next/message/MessageList.vue b/app/javascript/dashboard/components-next/message/MessageList.vue index 436cbd8ce..97fb16043 100644 --- a/app/javascript/dashboard/components-next/message/MessageList.vue +++ b/app/javascript/dashboard/components-next/message/MessageList.vue @@ -1,6 +1,7 @@ - - - + + + - - - {{ $t('EMAIL_HEADER.EXPAND') }} + + + {{ $t('EMAIL_HEADER.EXPAND') }} + + + + + + + + + + {{ $t('CHAT_LIST.HIDE_QUOTED_TEXT') }} + + + {{ $t('CHAT_LIST.SHOW_QUOTED_TEXT') }} + + - - - - - - - - {{ $t('CHAT_LIST.HIDE_QUOTED_TEXT') }} - - - {{ $t('CHAT_LIST.SHOW_QUOTED_TEXT') }} - - - diff --git a/app/javascript/dashboard/components-next/message/bubbles/Text/FormattedContent.vue b/app/javascript/dashboard/components-next/message/bubbles/Text/FormattedContent.vue index a2f247bbc..b12373dbe 100644 --- a/app/javascript/dashboard/components-next/message/bubbles/Text/FormattedContent.vue +++ b/app/javascript/dashboard/components-next/message/bubbles/Text/FormattedContent.vue @@ -26,6 +26,6 @@ const formattedContent = computed(() => { diff --git a/app/javascript/dashboard/components-next/message/bubbles/Text/Index.vue b/app/javascript/dashboard/components-next/message/bubbles/Text/Index.vue index 93020b6be..5e743762b 100644 --- a/app/javascript/dashboard/components-next/message/bubbles/Text/Index.vue +++ b/app/javascript/dashboard/components-next/message/bubbles/Text/Index.vue @@ -19,20 +19,22 @@ const isEmpty = computed(() => { - - - {{ $t('CONVERSATION.NO_CONTENT') }} - - - - - - {{ contentAttributes.submittedEmail }} - - + + + + {{ $t('CONVERSATION.NO_CONTENT') }} + + + + + + {{ contentAttributes.submittedEmail }} + + + diff --git a/tailwind.config.js b/tailwind.config.js index 93c164cac..faed1c853 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -44,7 +44,7 @@ const tailwindConfig = { typography: { email: { css: { - color: 'rgb(var(--slate-11))', + color: 'rgb(var(--slate-12))', lineHeight: '1.6', fontSize: '14px', '*': { @@ -129,16 +129,16 @@ const tailwindConfig = { th: { padding: '0.75em', color: 'rgb(var(--slate-12))', - borderBottom: `1px solid rgb(var(--border-strong))`, + border: `none`, textAlign: 'left', fontWeight: '600', }, tr: { - borderBottom: `1px solid rgb(var(--border-strong))`, + border: `none`, }, td: { padding: '0.75em', - borderBottom: `1px solid rgb(var(--border-strong))`, + border: `none`, }, img: { maxWidth: '100%',