@@ -382,13 +382,13 @@ class SortablePane extends Component {
382382 // shared across all children!
383383 var customStyle = Object . assign ( { } , child . props . style ) ;
384384 Object . assign ( customStyle , {
385- boxShadow : `rgba(0, 0, 0, 0.2) 0px ${ shadow } px ${ 2 * shadow } px 0px` ,
386- transform : `translate3d(${ x } px, ${ y } px, 0px) scale(${ scale } )` ,
387- WebkitTransform : `translate3d(${ x } px, ${ y } px, 0px) scale(${ scale } )` ,
388- MozTransform : `translate3d(${ x } px, ${ y } px, 0px) scale(${ scale } )` ,
389- MsTransform : `translate3d(${ x } px, ${ y } px, 0px) scale(${ scale } )` ,
390- zIndex : i === lastPressed ? 99 : i , // TODO: Add this.props.zIndex
391- position : 'absolute' ,
385+ boxShadow : `rgba(0, 0, 0, 0.2) 0px ${ shadow } px ${ 2 * shadow } px 0px` ,
386+ transform : `translate3d(${ x } px, ${ y } px, 0px) scale(${ scale } )` ,
387+ WebkitTransform : `translate3d(${ x } px, ${ y } px, 0px) scale(${ scale } )` ,
388+ MozTransform : `translate3d(${ x } px, ${ y } px, 0px) scale(${ scale } )` ,
389+ MsTransform : `translate3d(${ x } px, ${ y } px, 0px) scale(${ scale } )` ,
390+ zIndex : i === lastPressed ? 99 : i , // TODO: Add this.props.zIndex
391+ position : 'absolute' ,
392392 } ) ;
393393
394394 return (
0 commit comments