mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
Merge pull request #25 from taylorhakes/pointer
Changed cursor: hand to pointer
This commit is contained in:
commit
7b63418029
|
@ -139,7 +139,7 @@ export default class LogMonitor {
|
|||
<div>
|
||||
{computedStates.length > 1 &&
|
||||
<a onClick={::this.handleRollback}
|
||||
style={{ textDecoration: 'underline', cursor: 'hand' }}>
|
||||
style={{ textDecoration: 'underline', cursor: 'pointer' }}>
|
||||
Rollback
|
||||
</a>
|
||||
}
|
||||
|
@ -147,7 +147,7 @@ export default class LogMonitor {
|
|||
<span>
|
||||
{' • '}
|
||||
<a onClick={::this.handleSweep}
|
||||
style={{ textDecoration: 'underline', cursor: 'hand' }}>
|
||||
style={{ textDecoration: 'underline', cursor: 'pointer' }}>
|
||||
Sweep
|
||||
</a>
|
||||
</span>
|
||||
|
@ -158,7 +158,7 @@ export default class LogMonitor {
|
|||
{' • '}
|
||||
</span>
|
||||
<a onClick={::this.handleCommit}
|
||||
style={{ textDecoration: 'underline', cursor: 'hand' }}>
|
||||
style={{ textDecoration: 'underline', cursor: 'pointer' }}>
|
||||
Commit
|
||||
</a>
|
||||
</span>
|
||||
|
|
|
@ -87,7 +87,7 @@ export default class LogMonitorEntry {
|
|||
paddingBottom: '1em',
|
||||
paddingTop: '1em',
|
||||
color: `rgb(${r}, ${g}, ${b})`,
|
||||
cursor: (index > 0) ? 'hand' : 'default',
|
||||
cursor: (index > 0) ? 'pointer' : 'default',
|
||||
WebkitUserSelect: 'none'
|
||||
}}>
|
||||
{JSON.stringify(action)}
|
||||
|
|
Loading…
Reference in New Issue
Block a user