new post form touchup

This commit is contained in:
danielgrippi 2012-03-20 14:49:13 -07:00 committed by Dennis Collinson
parent a14090965f
commit 65f20f439c
4 changed files with 29 additions and 15 deletions

View file

@ -1,18 +1,21 @@
<div class='row'>
<div class='span12'>
<form class="new-post well">
<label>
text
<textarea class="text span8"/>
<textarea id="text_with_markup" style="display:none;"/>
</label>
<div class="service_selector"></div>
<div class="aspect_selector"></div>
<br/>
<input type="submit" class="btn-primary" value="Share" />
</form>
<div class='span8 offset2 new-post-section'>
<div class="new_picture"/>
<form class="new-post">
<fieldset>
<legend>
New Post
</legend>
<textarea class="text span8"/>
<textarea id="text_with_markup" style="display:none;"/>
<div class="aspect_selector"></div>
<div class="service_selector"></div>
<input type="submit" class="btn-primary" value="Share" />
</fieldset>
</form>
</div>
</div>

View file

@ -1 +1,3 @@
<div id="new-post"></div>
<div class="container">
<div id="new-post"></div>
</div>

View file

@ -1,6 +1,7 @@
Broadcast:
{{#each current_user.services}}
<input type="checkbox" name="services" class="service" value="{{provider}}" />
{{provider}}
<img src="/images/social_media_logos/{{provider}}-16x16.png" />
<br />
{{/each}}
<br />

View file

@ -784,3 +784,11 @@ text-rendering: optimizelegibility;
max-width: 200px;
max-height: 200px;
}
.new-post-section {
margin-top: 100px;
}
.aspect_selector {
float: right;
}