diff --git a/web/chat/chat-message-list.css b/web/chat/chat-message-list.css --- a/web/chat/chat-message-list.css +++ b/web/chat/chat-message-list.css @@ -153,9 +153,9 @@ padding: 0 3px; color: #555555; } -a.retrySend { - padding: 0 3px; - cursor: pointer; +span.retryButtonText { + text-transform: uppercase; + font-size: var(--m-font-14); } div.messageBox > div.imageGrid { diff --git a/web/chat/chat-thread-composer.react.js b/web/chat/chat-thread-composer.react.js --- a/web/chat/chat-thread-composer.react.js +++ b/web/chat/chat-thread-composer.react.js @@ -8,6 +8,7 @@ import { threadIsPending } from 'lib/shared/thread-utils'; import type { AccountUserInfo, UserListItem } from 'lib/types/user-types'; +import Button from '../components/button.react'; import Label from '../components/label.react'; import Search from '../components/search.react'; import type { InputState } from '../input/input-state'; @@ -92,13 +93,14 @@ return ( diff --git a/web/chat/failed-send.react.js b/web/chat/failed-send.react.js --- a/web/chat/failed-send.react.js +++ b/web/chat/failed-send.react.js @@ -12,6 +12,7 @@ } from 'lib/types/message-types'; import { type ThreadInfo } from 'lib/types/thread-types'; +import Button from '../components/button.react'; import { type InputState, InputStateContext } from '../input/input-state'; import { useSelector } from '../redux/redux-utils'; import css from './chat-message-list.css'; @@ -79,28 +80,24 @@ } render() { - const threadColor = { - color: `#${this.props.threadInfo.color}`, - }; return (
Delivery failed. - - {'Retry?'} - + Retry? +
); } - retrySend = (event: SyntheticEvent) => { - event.stopPropagation(); - + retrySend = () => { const { inputState } = this.props; invariant(inputState, 'inputState should be set in FailedSend'); diff --git a/web/components/button.css b/web/components/button.css --- a/web/components/button.css +++ b/web/components/button.css @@ -1,12 +1,12 @@ .btn { display: flex; + flex-direction: row; align-items: center; justify-content: center; - background: var(--settings-btn-bg); - border: 1px solid transparent; + border: none; + border-radius: 4px; font-size: var(--m-font-16); padding: 12px 24px; - border-radius: 4px; cursor: pointer; } @@ -36,7 +36,7 @@ .secondary { background: var(--btn-bg-secondary); color: var(--fg); - border-color: var(--btn-secondary-border); + border: 1px solid var(--btn-secondary-border); } .secondary:hover { @@ -74,8 +74,15 @@ } .round { + background: var(--settings-btn-bg); width: 30px; height: 30px; border-radius: 50%; padding: 0; } + +.text { + background: transparent; + white-space: nowrap; + padding: 0; +} diff --git a/web/components/button.react.js b/web/components/button.react.js --- a/web/components/button.react.js +++ b/web/components/button.react.js @@ -5,7 +5,7 @@ import css from './button.css'; -export type ButtonVariant = 'primary' | 'secondary' | 'round'; +export type ButtonVariant = 'primary' | 'secondary' | 'round' | 'text'; export type ButtonColor = | 'success' | 'danger' diff --git a/web/settings/account-settings.css b/web/settings/account-settings.css --- a/web/settings/account-settings.css +++ b/web/settings/account-settings.css @@ -41,14 +41,9 @@ color: var(--fg); } -.button { +.buttonText { color: var(--account-button-color); - background-color: transparent; - font-size: var(--m-font-16); - border: none; - cursor: pointer; line-height: var(--line-height-text); - white-space: nowrap; } .passwordContainer { diff --git a/web/settings/account-settings.react.js b/web/settings/account-settings.react.js --- a/web/settings/account-settings.react.js +++ b/web/settings/account-settings.react.js @@ -9,6 +9,7 @@ useServerCall, } from 'lib/utils/action-utils'; +import Button from '../components/button.react'; import { useModalContext } from '../modals/modal-provider.react'; import { useSelector } from '../redux/redux-utils'; import SWMansionIcon from '../SWMansionIcon.react'; @@ -62,9 +63,9 @@ {'Logged in as '} {username}

- +
  • Password @@ -80,15 +81,15 @@
  • Friend List - +
  • Block List - +