Merge pull request #5705 from urbit/james/p3-omnibus

groups: various copy and design fixes
This commit is contained in:
Hunter Miller 2022-04-08 12:04:06 -05:00 committed by GitHub
commit a3a1b596f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 11 additions and 11 deletions

View File

@ -290,18 +290,18 @@ const MessageActions = ({ onReply, onDelete, msg, isAdmin, permalink }) => {
return (
<Box
borderRadius={1}
borderRadius={2}
backgroundColor='white'
border='1px solid'
borderColor='lightGray'
position='absolute'
top='-12px'
top='-16px'
right={2}
>
<Row>
<Box
padding={1}
size={'24px'}
padding={2}
size={5}
cursor='pointer'
onClick={() => onReply(msg)}
>
@ -342,7 +342,7 @@ const MessageActions = ({ onReply, onDelete, msg, isAdmin, permalink }) => {
</Col>
}
>
<Box padding={1} size={'24px'} cursor='pointer'>
<Box padding={2} size={5} cursor='pointer'>
<Icon icon='Menu' size={3} />
</Box>
</Dropdown>

View File

@ -28,7 +28,7 @@ export function BackgroundPicker(): ReactElement {
<ImageInput
ml={5}
id="bgUrl"
placeholder="Drop or upload a file, or paste a link here"
placeholder="Drop or upload a file, or paste an image URL here"
name="bgUrl"
/>
</Col>

View File

@ -128,6 +128,7 @@ return false;
{(window.ship == post?.author && !disabled) ? (
<ActionLink
color="blue"
bg="white"
to={{
pathname: props.baseUrl,
search: `?edit=${commentIndex}`

View File

@ -42,7 +42,7 @@ const prompt = (
style={{ pointerEvents: 'none' }}
onSelect={e => e.preventDefault}
>
Paste a link here
Paste an image URL here
{canUpload ? (
<>
, or

View File

@ -59,10 +59,10 @@ export function StatelessUrlInput(props: StatelessUrlInputProps) {
>
upload
</Text>{' '}
a file, or paste a link here
a file, or paste a URL here
</>
) : (
'Paste a link here'
'Paste a URL here'
)}
</Text>
</Box>

View File

@ -66,8 +66,7 @@ export function GroupFeedSettings(props: {
<Col>
<Label>Enable Group Feed</Label>
<Label gray mt={1}>
Disabling the Group Feed archives the content and is not
viewable to anyone
Disabling the Group Feed permanently removes its contents
</Label>
</Col>
</BaseLabel>