mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
Run slightly less afoul of accessibility checks. #294.
This makes the clickable element an interactive element, but doesn't add alt text and makes it not-obvious that you can click the elefriend. On one hand, this goes against good practice; on the other hand, it's not *supposed* to be obvious that you can click the elefriend.
This commit is contained in:
parent
e64cc311dd
commit
756a9cd139
@ -101,7 +101,7 @@ class Drawer extends React.Component {
|
|||||||
<DrawerAccount account={account} />
|
<DrawerAccount account={account} />
|
||||||
<div {...innerDrawerAttrs}>
|
<div {...innerDrawerAttrs}>
|
||||||
<Composer />
|
<Composer />
|
||||||
{multiColumn && <div className='mastodon' onClick={onClickElefriend} role='button' />}
|
{multiColumn && <button className='mastodon' onClick={onClickElefriend}/>}
|
||||||
</div>
|
</div>
|
||||||
<DrawerResults
|
<DrawerResults
|
||||||
results={results}
|
results={results}
|
||||||
|
@ -65,6 +65,8 @@
|
|||||||
|
|
||||||
.mastodon {
|
.mastodon {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
border: none;
|
||||||
|
cursor: inherit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user