diff --git a/stylesheets/_session.scss b/stylesheets/_session.scss index 744417bf1..37258d6ff 100644 --- a/stylesheets/_session.scss +++ b/stylesheets/_session.scss @@ -244,11 +244,6 @@ label { .message { text-align: center; } - - .session-id-editable { - width: 30vw; - max-width: 400px; - } } .group-member-list__selection { @@ -465,38 +460,6 @@ label { transition: var(--default-duration) !important; } -.session-id-editable { - padding: var(--margins-lg); - background: var(--input-background-color); - color: var(--input-text-color); - - textarea { - width: 30vh; - } -} -.session-id-editable textarea { - resize: none; - overflow: hidden; - user-select: all; - overflow-y: auto; - padding: 0px 5px 20px 5px; - - &.session-id-editable-textarea:placeholder-shown { - height: 38px; - padding-top: 10px; - padding-bottom: 10px; - padding-left: 5px; - padding-right: 5px; - font-family: var(--font-default); - color: var(--input-text-placeholder-color); - } - - &.group-id-editable-textarea { - margin-top: 15px; - white-space: nowrap; - } -} - input { user-select: text; } @@ -526,24 +489,6 @@ input { } } -.create-group-name-input { - display: flex; - justify-content: center; - width: 100%; - - .session-id-editable { - height: 60px !important; - - textarea { - padding-bottom: 0px !important; - } - - &-disabled { - border: 1px solid var(--border-color) !important; - } - } -} - .module-message__text { white-space: pre-wrap; } diff --git a/stylesheets/_session_left_pane.scss b/stylesheets/_session_left_pane.scss index 64425168f..83a7f0bcb 100644 --- a/stylesheets/_session_left_pane.scss +++ b/stylesheets/_session_left_pane.scss @@ -107,20 +107,6 @@ $session-compose-margin: 20px; align-self: flex-start; } - .session-id-editable { - width: 90%; - - textarea::-webkit-inner-spin-button { - margin: 0px 20px; - width: -webkit-fill-available; - flex-shrink: 0; - } - } - - .session-id-editable-disabled { - border: none; - } - .session-button { min-width: 160px; width: fit-content; diff --git a/ts/components/basic/SessionButton.tsx b/ts/components/basic/SessionButton.tsx index dfaa20c12..67d769e8a 100644 --- a/ts/components/basic/SessionButton.tsx +++ b/ts/components/basic/SessionButton.tsx @@ -48,6 +48,7 @@ const StyledButton = styled.button<{ background-repeat: no-repeat; overflow: hidden; height: ${props => (props.buttonType === SessionButtonType.Ghost ? undefined : '34px')}; + min-height: ${props => (props.buttonType === SessionButtonType.Ghost ? undefined : '34px')}; padding: ${props => props.buttonType === SessionButtonType.Ghost ? '16px 24px 24px' : '0px 18px'}; background-color: ${props => diff --git a/ts/components/basic/SessionIdEditable.tsx b/ts/components/basic/SessionIdEditable.tsx deleted file mode 100644 index 0281c9694..000000000 --- a/ts/components/basic/SessionIdEditable.tsx +++ /dev/null @@ -1,66 +0,0 @@ -import classNames from 'classnames'; -import { ChangeEvent, KeyboardEvent, useRef } from 'react'; -import { useFocusMount } from '../../hooks/useFocusMount'; - -type Props = { - placeholder?: string; - value?: string; - text?: string; - editable?: boolean; - onChange?: (value: string) => void; - onPressEnter?: any; - maxLength?: number; - isGroup?: boolean; - dataTestId?: string; -}; - -export const SessionIdEditable = (props: Props) => { - const { - placeholder, - onPressEnter, - onChange, - editable, - text, - value, - maxLength, - isGroup, - dataTestId, - } = props; - const inputRef = useRef(null); - - useFocusMount(inputRef, editable); - function handleChange(e: ChangeEvent) { - if (editable && onChange) { - const eventValue = e.target.value?.replace(/(\r\n|\n|\r)/gm, ''); - onChange(eventValue); - } - } - - function handleKeyDown(e: KeyboardEvent) { - if (editable && e.key === 'Enter') { - e.preventDefault(); - - onPressEnter?.(); - } - } - - return ( -
-