|
|
@ -96,10 +96,10 @@ export const ConversationHeaderSubitle = (props: ConversationHeaderSubitleProps)
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<SessionIconButton
|
|
|
|
<SessionIconButton
|
|
|
|
iconColor={'var(--button-icon-stroke-selected-color)'}
|
|
|
|
iconColor={'var(--button-icon-stroke-selected-color)'}
|
|
|
|
iconSize={'medium'}
|
|
|
|
iconSize={'small'}
|
|
|
|
iconType="chevron"
|
|
|
|
iconType="chevron"
|
|
|
|
iconRotation={90}
|
|
|
|
iconRotation={90}
|
|
|
|
margin={'0 var(--margins-xs) 0 0'}
|
|
|
|
margin={'0 3px 0 0'}
|
|
|
|
onClick={() => {
|
|
|
|
onClick={() => {
|
|
|
|
handleTitleCycle(-1);
|
|
|
|
handleTitleCycle(-1);
|
|
|
|
}}
|
|
|
|
}}
|
|
|
@ -128,10 +128,10 @@ export const ConversationHeaderSubitle = (props: ConversationHeaderSubitleProps)
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
<SessionIconButton
|
|
|
|
<SessionIconButton
|
|
|
|
iconColor={'var(--button-icon-stroke-selected-color)'}
|
|
|
|
iconColor={'var(--button-icon-stroke-selected-color)'}
|
|
|
|
iconSize={'medium'}
|
|
|
|
iconSize={'small'}
|
|
|
|
iconType="chevron"
|
|
|
|
iconType="chevron"
|
|
|
|
iconRotation={270}
|
|
|
|
iconRotation={270}
|
|
|
|
margin={'0 0 0 var(--margins-xs)'}
|
|
|
|
margin={'0 0 0 3px'}
|
|
|
|
onClick={() => {
|
|
|
|
onClick={() => {
|
|
|
|
handleTitleCycle(1);
|
|
|
|
handleTitleCycle(1);
|
|
|
|
}}
|
|
|
|
}}
|
|
|
@ -142,7 +142,7 @@ export const ConversationHeaderSubitle = (props: ConversationHeaderSubitleProps)
|
|
|
|
<SubtitleDotMenu
|
|
|
|
<SubtitleDotMenu
|
|
|
|
options={subtitles}
|
|
|
|
options={subtitles}
|
|
|
|
selectedOptionIndex={currentIndex}
|
|
|
|
selectedOptionIndex={currentIndex}
|
|
|
|
style={{ visibility: subtitles.length < 2 ? 'hidden' : undefined, margin: '3px 0' }}
|
|
|
|
style={{ display: subtitles.length < 2 ? 'none' : undefined, margin: '8px 0' }}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</StyledSubtitleContainer>
|
|
|
|
</StyledSubtitleContainer>
|
|
|
|
);
|
|
|
|
);
|
|
|
|