This commit is contained in:
Eugene Rodionov 2015-07-23 09:02:52 +03:00
parent 63c81be804
commit dc2355ae3d
2 changed files with 5 additions and 5 deletions

View File

@ -127,7 +127,7 @@ export default class LogMonitor {
<div style={{float: 'left'}}> <div style={{float: 'left'}}>
{computedStates.length > 1 && {computedStates.length > 1 &&
<button onClick={::this.handleRollback} style={{ <button onClick={::this.handleRollback} style={{
cursor: 'hand', cursor: 'pointer',
padding: '5px 7px', padding: '5px 7px',
border: '1px solid #eee', border: '1px solid #eee',
display: 'inline-block' display: 'inline-block'
@ -137,7 +137,7 @@ export default class LogMonitor {
} }
{Object.keys(skippedActions).some(key => skippedActions[key]) && {Object.keys(skippedActions).some(key => skippedActions[key]) &&
<button onClick={::this.handleSweep} style={{ <button onClick={::this.handleSweep} style={{
cursor: 'hand', cursor: 'pointer',
padding: '5px 7px', padding: '5px 7px',
border: '1px solid #eee', border: '1px solid #eee',
display: 'inline-block' display: 'inline-block'
@ -147,7 +147,7 @@ export default class LogMonitor {
} }
{computedStates.length > 1 && {computedStates.length > 1 &&
<button onClick={::this.handleCommit} style={{ <button onClick={::this.handleCommit} style={{
cursor: 'hand', cursor: 'pointer',
padding: '5px 7px', padding: '5px 7px',
border: '1px solid #eee', border: '1px solid #eee',
display: 'inline-block' display: 'inline-block'
@ -158,7 +158,7 @@ export default class LogMonitor {
</div> </div>
<div style={{float: 'right'}}> <div style={{float: 'right'}}>
<button onClick={::this.handleReset} style={{ <button onClick={::this.handleReset} style={{
cursor: 'hand', cursor: 'pointer',
padding: '5px 7px', padding: '5px 7px',
border: '1px solid #eee', border: '1px solid #eee',
display: 'inline-block' display: 'inline-block'

View File

@ -87,7 +87,7 @@ export default class LogMonitorEntry {
display: 'block', display: 'block',
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)}