Browse Source

Attempt to fix styling issue http://i.imgur.com/owHv6sE.png

pull/40/head
Fredrick Brennan 10 years ago
parent
commit
de524c64d9
  1. 2
      js/wPaint
  2. 5
      stylesheets/style.css
  3. 2
      templates/post/fileinfo.html

2
js/wPaint

@ -1 +1 @@
Subproject commit 15bae4a9181ddb283c1cad0979c44cefd4f15a44
Subproject commit 2c272dffca0f3d7b7163bd82ba15629f54409278

5
stylesheets/style.css

@ -111,11 +111,14 @@ form table tr td div label {
}
.file {
float: left;
margin-right: 2px;
}
.multifile {
border: 2px dashed #B7C5D9;
}
p.fileinfo {
display: block;
margin: 0;
padding-right: 7em;
}
div.banner {
background-color: #E04000;

2
templates/post/fileinfo.html

@ -3,7 +3,7 @@
{% else %}
<div class="files">
{% for file in post.files %}
<div class="file">
<div class="file {% if post.num_files > 1 %}multifile{% endif %}" style="width:{{ file.thumbwidth + 40 }}px">
{% if file.file == 'deleted' %}
<img class="post-image deleted" src="{{ config.image_deleted }}" alt="" />
{% else %}

Loading…
Cancel
Save