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;
}
body.editing section.main div.inner section.snipts article.editing aside {
margin-top: 0;
width: 243px;
}
body.editing section.main div.inner section.snipts article.editing aside div.inner {
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;
}

View File

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

View File

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