Merge pull request #25 from taylorhakes/pointer

Changed cursor: hand to pointer
This commit is contained in:
Dan Abramov 2015-07-23 10:26:20 +03:00
commit 7b63418029
2 changed files with 4 additions and 4 deletions

View File

@ -139,7 +139,7 @@ export default class LogMonitor {
<div> <div>
{computedStates.length > 1 && {computedStates.length > 1 &&
<a onClick={::this.handleRollback} <a onClick={::this.handleRollback}
style={{ textDecoration: 'underline', cursor: 'hand' }}> style={{ textDecoration: 'underline', cursor: 'pointer' }}>
Rollback Rollback
</a> </a>
} }
@ -147,7 +147,7 @@ export default class LogMonitor {
<span> <span>
{' • '} {' • '}
<a onClick={::this.handleSweep} <a onClick={::this.handleSweep}
style={{ textDecoration: 'underline', cursor: 'hand' }}> style={{ textDecoration: 'underline', cursor: 'pointer' }}>
Sweep Sweep
</a> </a>
</span> </span>
@ -158,7 +158,7 @@ export default class LogMonitor {
{' • '} {' • '}
</span> </span>
<a onClick={::this.handleCommit} <a onClick={::this.handleCommit}
style={{ textDecoration: 'underline', cursor: 'hand' }}> style={{ textDecoration: 'underline', cursor: 'pointer' }}>
Commit Commit
</a> </a>
</span> </span>

View File

@ -87,7 +87,7 @@ export default class LogMonitorEntry {
paddingBottom: '1em', paddingBottom: '1em',
paddingTop: '1em', paddingTop: '1em',
color: `rgb(${r}, ${g}, ${b})`, color: `rgb(${r}, ${g}, ${b})`,
cursor: (index > 0) ? 'hand' : 'default', cursor: (index > 0) ? 'pointer' : 'default',
WebkitUserSelect: 'none' WebkitUserSelect: 'none'
}}> }}>
{JSON.stringify(action)} {JSON.stringify(action)}