Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions client/components/Nav.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,7 @@ class Nav extends React.PureComponent {
onClick={this.toggleDropdownForFile}
onBlur={this.handleBlur}
onFocus={this.clearHideTimeout}
title="File"
onMouseOver={() => {
if (this.state.dropdownOpen !== 'none') {
this.setDropdown('file');
Expand Down Expand Up @@ -396,6 +397,7 @@ class Nav extends React.PureComponent {
onClick={this.toggleDropdownForEdit}
onBlur={this.handleBlur}
onFocus={this.clearHideTimeout}
title="Edit"
onMouseOver={() => {
if (this.state.dropdownOpen !== 'none') {
this.setDropdown('edit');
Expand Down Expand Up @@ -454,6 +456,7 @@ class Nav extends React.PureComponent {
onClick={this.toggleDropdownForSketch}
onBlur={this.handleBlur}
onFocus={this.clearHideTimeout}
title="Sketch"
onMouseOver={() => {
if (this.state.dropdownOpen !== 'none') {
this.setDropdown('sketch');
Expand Down Expand Up @@ -539,6 +542,7 @@ class Nav extends React.PureComponent {
onClick={this.toggleDropdownForHelp}
onBlur={this.handleBlur}
onFocus={this.clearHideTimeout}
title="Help"
onMouseOver={() => {
if (this.state.dropdownOpen !== 'none') {
this.setDropdown('help');
Expand Down Expand Up @@ -600,6 +604,7 @@ class Nav extends React.PureComponent {
onClick={this.toggleDropdownForLang}
onBlur={this.handleBlur}
onFocus={this.clearHideTimeout}
title="Language"
onMouseOver={() => {
if (this.state.dropdownOpen !== 'none') {
this.setDropdown('lang');
Expand Down Expand Up @@ -760,15 +765,15 @@ class Nav extends React.PureComponent {
this.renderLanguageMenu(navDropdownState)}
<li className="nav__item">
<Link to="/login" className="nav__auth-button">
<span className="nav__item-header">
<span className="nav__item-header" title="Login">
{this.props.t('Nav.Login')}
</span>
</Link>
</li>
<span className="nav__item-or">{this.props.t('Nav.LoginOr')}</span>
<li className="nav__item">
<Link to="/signup" className="nav__auth-button">
<span className="nav__item-header">
<span className="nav__item-header" title="SignUp">
{this.props.t('Nav.SignUp')}
</span>
</Link>
Expand Down