Improve look of some UI elements
This commit is contained in:
parent
c65cde9e8e
commit
6edd373ad9
1 changed files with 4 additions and 3 deletions
|
@ -109,11 +109,11 @@ var StoryRow = React.createClass({
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td class="span1">
|
||||||
<i class="icon-arrow-up" onClick={this.moveUp}></i>
|
<i class="icon-arrow-up" onClick={this.moveUp}></i>
|
||||||
<i class="icon-arrow-down" onClick={this.moveDown}></i>
|
<i class="icon-arrow-down" onClick={this.moveDown}></i>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td class="span2">
|
||||||
<span onClick={this.changeState}>
|
<span onClick={this.changeState}>
|
||||||
<StateIcon state={this.state.state} />
|
<StateIcon state={this.state.state} />
|
||||||
{state}
|
{state}
|
||||||
|
@ -255,7 +255,8 @@ var StoryForm = React.createClass({
|
||||||
<span class="add-on"> to </span>
|
<span class="add-on"> to </span>
|
||||||
<input type="text" class="input-xxlarge"
|
<input type="text" class="input-xxlarge"
|
||||||
ref="headline" placeholder="fill in this form..." />
|
ref="headline" placeholder="fill in this form..." />
|
||||||
<button class="btn" type="submit">!</button><br />
|
<button class="btn btn-primary" type="submit">!</button>
|
||||||
|
<br />
|
||||||
<textarea ref="content"></textarea>
|
<textarea ref="content"></textarea>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue