You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-07 10:46:24 +03:00
Update styling of message action bar for multiple buttons
This applies the new design for multiple buttons in the message action bar, paving the way for more things to appear here. In addition, this changes the existing options button to use the three vertical dots icon. Some theme colors are also tweaked to align with what they were meant to be from the unified palette.
This commit is contained in:
@@ -78,10 +78,11 @@ export default class MessageActionBar extends React.PureComponent {
|
||||
}
|
||||
|
||||
render() {
|
||||
// TODO: Move the bar to a separate element once there are several buttons
|
||||
return <span className="mx_MessageActionBar mx_MessageActionBar_optionsButton"
|
||||
title={_t("Options")}
|
||||
onClick={this.onOptionsClicked}
|
||||
/>;
|
||||
return <div className="mx_MessageActionBar">
|
||||
<span className="mx_MessageActionBar_optionsButton"
|
||||
title={_t("Options")}
|
||||
onClick={this.onOptionsClicked}
|
||||
/>
|
||||
</div>;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user