Nicer form fields
This commit is contained in:
@ -58,8 +58,8 @@ class Debug extends React.Component{
|
||||
|
||||
var actions = (
|
||||
<button onClick={e => hashHistory.push(global.baseURL+'settings')}>
|
||||
<FontAwesome name="cog" />
|
||||
Settings
|
||||
<FontAwesome name="reply" />
|
||||
Back
|
||||
</button>
|
||||
)
|
||||
|
||||
|
||||
@ -114,14 +114,14 @@ class Playlist extends React.Component{
|
||||
return (
|
||||
<div className="actions">
|
||||
<button className="primary" onClick={ e => this.play() }>Play</button>
|
||||
<FollowButton uri={this.props.playlist.uri} addText="Add to library" removeText="Remove from library" is_following={this.props.playlist.is_following} />
|
||||
<FollowButton className="secondary" uri={this.props.playlist.uri} addText="Add to library" removeText="Remove from library" is_following={this.props.playlist.is_following} />
|
||||
</div>
|
||||
)
|
||||
|
||||
default:
|
||||
return (
|
||||
<div className="actions">
|
||||
<button className="rounded primary" onClick={ e => this.play() }>Play</button>
|
||||
<button className="primary" onClick={ e => this.play() }>Play</button>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
@ -226,10 +226,10 @@ input[type="submit"] {
|
||||
input + .label:before {
|
||||
content: ' ';
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
border-radius: 50%;
|
||||
border: 1px solid #000000;
|
||||
border: 2px solid #000000;
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
left: 0;
|
||||
@ -256,14 +256,14 @@ input[type="submit"] {
|
||||
|
||||
input + .label:before {
|
||||
font-family: FontAwesome;
|
||||
font-size: 10px;
|
||||
font-size: 8px;
|
||||
content: ' ';
|
||||
color: #000000;
|
||||
display: inline-block;
|
||||
width: 13px;
|
||||
height: 13px;
|
||||
width: 11px;
|
||||
height: 11px;
|
||||
padding: 3px 0 0 3px;
|
||||
border: 1px solid #000000;
|
||||
border: 2px solid #000000;
|
||||
position: absolute;
|
||||
top: 5px;
|
||||
left: 0;
|
||||
|
||||
Reference in New Issue
Block a user