master
Nick Sergeant 2012-03-12 20:21:42 -04:00
parent 3d49f62929
commit 342ab765d8
3 changed files with 18 additions and 12 deletions

View File

@ -952,12 +952,12 @@ body.editing section.main div.inner section.snipts article.editing div.container
display: none; display: none;
} }
body.editing section.main div.inner section.snipts article.editing aside { body.editing section.main div.inner section.snipts article.editing aside {
margin-top: 0;
width: 243px; width: 243px;
} }
body.editing section.main div.inner section.snipts article.editing aside div.inner { body.editing section.main div.inner section.snipts article.editing aside div.inner {
padding-left: 10px; padding-left: 10px;
padding-top: 3px;
} }
body.editing section.main div.inner section.snipts article.editing aside div.inner label.public { body.editing section.main div.inner section.snipts article.editing aside div.inner label {
margin: 10px 0; margin: 10px 0;
} }

View File

@ -1098,13 +1098,13 @@ body.editing {
} }
} }
aside { aside {
margin-top: 0;
width: 243px; width: 243px;
div.inner { div.inner {
padding-left: 10px; padding-left: 10px;
padding-top: 3px;
label.public { label {
margin: 10px 0; margin: 10px 0;
} }
} }

View File

@ -29,18 +29,24 @@
</div> </div>
<aside> <aside>
<div class="inner"> <div class="inner">
<select name="lexer" id="id_lexer"> <label class="lexer">
{% endverbatim %} Type
{% for lexer in lexers %} <select name="lexer" id="id_lexer">
<option value="{{ lexer.1.0 }}">{{ lexer.0 }}</option> {% endverbatim %}
{% endfor %} {% for lexer in lexers %}
{% verbatim %} <option value="{{ lexer.1.0 }}">{{ lexer.0 }}</option>
</select> {% endfor %}
{% verbatim %}
</select>
</label>
<label class="public"> <label class="public">
Public Public
<input type="checkbox" <% if (snipt.pub) { %>checked="checked"<% } %> name="" value="" /> <input type="checkbox" <% if (snipt.pub) { %>checked="checked"<% } %> name="" value="" />
</label> </label>
<textarea><%= snipt.tags_list %></textarea> <label class="public">
Tags
<textarea><%= snipt.tags_list %></textarea>
</label>
</div> </div>
</aside> </aside>
</div> </div>