diff --git a/app/soapbox/components/list.js b/app/soapbox/components/list.js index eb6de5b60..ed0210c68 100644 --- a/app/soapbox/components/list.js +++ b/app/soapbox/components/list.js @@ -51,7 +51,7 @@ const ListItem = ({ label, hint, children, onClick }) => { {onClick ? ( -
+
{children} diff --git a/app/soapbox/components/ui/input/input.tsx b/app/soapbox/components/ui/input/input.tsx index e0be25d49..8eaee8904 100644 --- a/app/soapbox/components/ui/input/input.tsx +++ b/app/soapbox/components/ui/input/input.tsx @@ -50,7 +50,7 @@ const Input = React.forwardRef( type={revealed ? 'text' : type} ref={ref} className={classNames({ - 'block w-full sm:text-sm border-gray-300 rounded-md focus:ring-indigo-500 focus:border-indigo-500': + 'dark:bg-slate-800 block w-full sm:text-sm border-gray-300 dark:border-gray-600 rounded-md focus:ring-indigo-500 focus:border-indigo-500': true, 'pr-7': isPassword, 'pl-8': typeof icon !== 'undefined', diff --git a/app/soapbox/features/aliases/index.js b/app/soapbox/features/aliases/index.js index 5d8fe3b60..f2bd512bc 100644 --- a/app/soapbox/features/aliases/index.js +++ b/app/soapbox/features/aliases/index.js @@ -7,11 +7,10 @@ import { connect } from 'react-redux'; import { fetchAliases, removeFromAliases } from 'soapbox/actions/aliases'; import Icon from 'soapbox/components/icon'; import ScrollableList from 'soapbox/components/scrollable_list'; +import { CardHeader, CardTitle, Column, HStack, Text } from 'soapbox/components/ui'; import { makeGetAccount } from 'soapbox/selectors'; import { getFeatures } from 'soapbox/utils/features'; -import Column from '../ui/components/column'; -import ColumnSubheading from '../ui/components/column_subheading'; import Account from './components/account'; import Search from './components/search'; @@ -71,7 +70,9 @@ class Aliases extends ImmutablePureComponent { return ( - + + + { loaded && searchAccountIds.size === 0 ? ( @@ -84,23 +85,26 @@ class Aliases extends ImmutablePureComponent {
) } - + + +
{aliases.map((alias, i) => ( -
-
- - {alias} + +
+ + {' '} + {alias}
-
- - +
+ +
-
+
))}
diff --git a/app/soapbox/features/bookmarks/index.js b/app/soapbox/features/bookmarks/index.js index 0a2a90c31..d2b7ea613 100644 --- a/app/soapbox/features/bookmarks/index.js +++ b/app/soapbox/features/bookmarks/index.js @@ -74,6 +74,7 @@ class Bookmarks extends ImmutablePureComponent { shouldUpdateScroll={shouldUpdateScroll} emptyMessage={emptyMessage} bindToDocument={!multiColumn} + divideType='space' /> ); diff --git a/app/soapbox/features/chats/chat_room.js b/app/soapbox/features/chats/chat_room.js index d10556971..5ea275b5e 100644 --- a/app/soapbox/features/chats/chat_room.js +++ b/app/soapbox/features/chats/chat_room.js @@ -5,11 +5,8 @@ import ImmutablePropTypes from 'react-immutable-proptypes'; import ImmutablePureComponent from 'react-immutable-pure-component'; import { injectIntl } from 'react-intl'; import { connect } from 'react-redux'; -import { Link } from 'react-router-dom'; import { fetchChat, markChatRead } from 'soapbox/actions/chats'; -import Avatar from 'soapbox/components/avatar'; -import ColumnBackButton from 'soapbox/components/column_back_button'; import { Column } from 'soapbox/components/ui'; import { makeGetChat } from 'soapbox/selectors'; import { getAcct } from 'soapbox/utils/accounts'; @@ -78,8 +75,8 @@ class ChatRoom extends ImmutablePureComponent { const account = chat.get('account'); return ( - -
+ + {/*
@@ -87,7 +84,7 @@ class ChatRoom extends ImmutablePureComponent { @{getAcct(account, displayFqn)}
-
+
*/} - -
+ ) : ( ); @@ -197,7 +195,9 @@ class ChatBox extends ImmutablePureComponent { {this.renderAttachment()}
- {this.renderActionButton()} +
+ {this.renderActionButton()} +