Update service images for retina, remove rdio :(

This commit is contained in:
Jonathan Cremin 2016-01-09 12:24:44 +00:00
parent dbc7f4806d
commit 64e1fee502
13 changed files with 13 additions and 223 deletions

View file

@ -39,7 +39,7 @@ const MusicItem = React.createClass({
return (
<div className='col-md-3 col-xs-6'>
<div className={'service' + (this.props.inc === 0 ? ' source-service' : '')}>
<div className='matching-from hidden-xs'>{this.props.inc === 0 ? 'Found matches using this link' : ''}</div>
<div className='matching-from'>{this.props.inc === 0 ? 'Found matches using' : ''}</div>
<a href={this.props.item.streamUrl || this.props.item.purchaseUrl}>
<div className={this.props.item.service === 'youtube' ? 'artwork-youtube artwork' : 'artwork'} style={{backgroundImage: 'url(' + this.props.item.artwork.small + ')'}}>
</div>
@ -47,11 +47,11 @@ const MusicItem = React.createClass({
{this.props.item.service === 'youtube' && this.props.inc > 0 ? this.props.item.name : ''}
</div>
</a>
<div className='service-link'>
<a href={this.props.item.streamUrl || this.props.item.purchaseUrl}>
<img src={'/images/' + this.props.item.service + '.png'} className='img-rounded' />
</a>
</div>
</div>
<div className='service-link'>
<a href={this.props.item.streamUrl || this.props.item.purchaseUrl}>
<img src={'/images/' + this.props.item.service + '.png'} />
</a>
</div>
</div>
);