groups: various copy and design fixes

fixes urbit/landscape#1377
fixes urbit/landsacpe#1328
fixes urbit/landscape#1161
fixes urbit/landscape#1045
This commit is contained in:
James Acklin 2022-04-08 11:47:55 -04:00
parent a15efab60c
commit 70dcd7ab09
6 changed files with 11 additions and 11 deletions

View File

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

View File

@ -28,7 +28,7 @@ export function BackgroundPicker(): ReactElement {
<ImageInput <ImageInput
ml={5} ml={5}
id="bgUrl" 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" name="bgUrl"
/> />
</Col> </Col>

View File

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

View File

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

View File

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

View File

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