diff --git a/ts/components/SessionScrollButton.tsx b/ts/components/SessionScrollButton.tsx index 94606b593..4019faaf2 100644 --- a/ts/components/SessionScrollButton.tsx +++ b/ts/components/SessionScrollButton.tsx @@ -13,6 +13,7 @@ const SessionScrollButtonDiv = styled.div` .session-icon-button { background-color: var(--message-bubbles-received-background-color); + box-shadow: var(--scroll-button-shadow); } `; diff --git a/ts/interactions/conversationInteractions.ts b/ts/interactions/conversationInteractions.ts index 6c13eafa9..6b4cd2898 100644 --- a/ts/interactions/conversationInteractions.ts +++ b/ts/interactions/conversationInteractions.ts @@ -255,7 +255,6 @@ export function showInviteContactByConvoId(conversationId: string) { window.inboxStore?.dispatch(updateInviteContactModal({ conversationId })); } - export function showAddModeratorsByConvoId(conversationId: string) { window.inboxStore?.dispatch(updateAddModeratorsModal({ conversationId })); } diff --git a/ts/themes/globals.tsx b/ts/themes/globals.tsx index 98760c6b3..4c1bb5022 100644 --- a/ts/themes/globals.tsx +++ b/ts/themes/globals.tsx @@ -55,6 +55,7 @@ export type ThemeGlobals = { '--shadow-color': string; '--drop-shadow': string; '--context-menu-shadow-color': string; + '--scroll-button-shadow': string; /* Path Button */ '--button-path-default-color': string; @@ -128,13 +129,14 @@ export const THEME_GLOBALS: ThemeGlobals = { '--shadow-color': 'var(--black-color)', '--drop-shadow': '0 0 4px 0 var(--shadow-color)', '--context-menu-shadow-color': `rgba(${hexColorToRGB(COLORS.BLACK)}, 0.22)`, + '--scroll-button-shadow': `0 0 7px 0 rgba(${hexColorToRGB(COLORS.BLACK)}, 0.5)`, '--button-path-default-color': COLORS.PATH.DEFAULT, '--button-path-connecting-color': COLORS.PATH.CONNECTING, '--button-path-error-color': COLORS.PATH.ERROR, '--modal-background-color': `rgba(${hexColorToRGB(COLORS.BLACK)}, 0.3)`, - '--modal-drop-shadow': `0px 0px 10px rgba(${hexColorToRGB(COLORS.BLACK)}, 0.22)`, + '--modal-drop-shadow': `0px 0px 10px rgba(${hexColorToRGB(COLORS.BLACK)}, 0.22)`, '--lightbox-background-color': `rgba(${hexColorToRGB(COLORS.BLACK)}, 0.8)`, '--lightbox-caption-background-color': 'rgba(192, 192, 192, .40)',