add cursor: pointer to actionable poll options (#7826)
* add cursor: pointer to actionable poll options Signed-off-by: Kerry Archibald <kerrya@element.io> * eof Signed-off-by: Kerry Archibald <kerrya@element.io>
This commit is contained in:
parent
32e127e098
commit
6fccd6b183
3 changed files with 58 additions and 44 deletions
|
@ -438,6 +438,7 @@ export default class MPollBody extends React.Component<IBodyProps, IState> {
|
|||
const cls = classNames({
|
||||
"mx_MPollBody_option": true,
|
||||
"mx_MPollBody_option_checked": checked,
|
||||
"mx_MPollBody_option_ended": ended,
|
||||
});
|
||||
|
||||
const answerPercent = (
|
||||
|
@ -513,6 +514,7 @@ interface ILivePollOptionProps {
|
|||
|
||||
function LivePollOption(props: ILivePollOptionProps) {
|
||||
return <StyledRadioButton
|
||||
className="mx_MPollBody_live-option"
|
||||
name={`poll_answer_select-${props.pollId}`}
|
||||
value={props.answer.id}
|
||||
checked={props.checked}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue