Add titles to clarify icons in system console

The + and x icons in the team section can easily be misinterpreted as "Create team" and "Delete team".

Added clarifying title text that the user can see when hovering on the icon.
This commit is contained in:
Antti Ahti
2015-10-15 11:57:04 +03:00
parent f92042fddf
commit 37bb95c775

View File

@@ -100,6 +100,7 @@ export default class AdminSidebar extends React.Component {
className='menu-icon--right menu__close'
onClick={this.removeTeam.bind(this, team.id)}
style={{cursor: 'pointer'}}
title='Remove team from sidebar menu'
>
{'x'}
</span>
@@ -233,7 +234,10 @@ export default class AdminSidebar extends React.Component {
href='#'
onClick={this.showTeamSelect}
>
<i className='fa fa-plus'></i>
<i
className='fa fa-plus'
title='Add team to sidebar menu'
></i>
</a>
</span>
</h4>