mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
commit
6e477b66c6
@ -49,13 +49,19 @@ class HeaderButton extends React.Component {
|
|||||||
const TintableSvg = sdk.getComponent("elements.TintableSvg");
|
const TintableSvg = sdk.getComponent("elements.TintableSvg");
|
||||||
const AccessibleButton = sdk.getComponent("elements.AccessibleButton");
|
const AccessibleButton = sdk.getComponent("elements.AccessibleButton");
|
||||||
|
|
||||||
return <AccessibleButton className="mx_RightPanel_headerButton" onClick={this.onClick} >
|
return <AccessibleButton
|
||||||
<div className="mx_RightPanel_headerButton_badge">
|
aria-label={this.props.title}
|
||||||
{ this.props.badge ? this.props.badge : <span> </span> }
|
title={this.props.title}
|
||||||
</div>
|
className="mx_RightPanel_headerButton"
|
||||||
<TintableSvg src={this.props.iconSrc} width="25" height="25"/>
|
onClick={this.onClick} >
|
||||||
{ this.props.isHighlighted ? <div className="mx_RightPanel_headerButton_highlight"></div> : <div/> }
|
|
||||||
</AccessibleButton>;
|
<div className="mx_RightPanel_headerButton_badge">
|
||||||
|
{ this.props.badge ? this.props.badge : <span> </span> }
|
||||||
|
</div>
|
||||||
|
<TintableSvg src={this.props.iconSrc} width="25" height="25"/>
|
||||||
|
{ this.props.isHighlighted ? <div className="mx_RightPanel_headerButton_highlight"></div> : <div/> }
|
||||||
|
|
||||||
|
</AccessibleButton>;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -71,6 +77,9 @@ HeaderButton.propTypes = {
|
|||||||
badge: PropTypes.node,
|
badge: PropTypes.node,
|
||||||
// The parameters to track the click event
|
// The parameters to track the click event
|
||||||
analytics: PropTypes.arrayOf(PropTypes.string).isRequired,
|
analytics: PropTypes.arrayOf(PropTypes.string).isRequired,
|
||||||
|
|
||||||
|
// Button title
|
||||||
|
title: PropTypes.string.isRequired,
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = React.createClass({
|
module.exports = React.createClass({
|
||||||
@ -329,7 +338,7 @@ module.exports = React.createClass({
|
|||||||
// button on these 2 screens or you won't be able to re-expand the panel.
|
// button on these 2 screens or you won't be able to re-expand the panel.
|
||||||
headerButtons.push(
|
headerButtons.push(
|
||||||
<div className="mx_RightPanel_headerButton mx_RightPanel_collapsebutton" key="_minimizeButton"
|
<div className="mx_RightPanel_headerButton mx_RightPanel_collapsebutton" key="_minimizeButton"
|
||||||
title={ _t("Hide panel") } onClick={ this.onCollapseClick }
|
title={ _t("Hide panel") } aria-label={ _t("Hide panel") } onClick={ this.onCollapseClick }
|
||||||
>
|
>
|
||||||
<TintableSvg src="img/minimise.svg" width="10" height="16"/>
|
<TintableSvg src="img/minimise.svg" width="10" height="16"/>
|
||||||
</div>,
|
</div>,
|
||||||
|
Loading…
Reference in New Issue
Block a user