mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-06-06 06:03:18 +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>
|
<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>
|
||||||
|
|
|
@ -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)}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user