Usunięcie marginesów wokół obrazków w galerii skanów.
authorzuber <marek@stepniowski.com>
Tue, 18 Aug 2009 10:34:21 +0000 (12:34 +0200)
committerzuber <marek@stepniowski.com>
Tue, 18 Aug 2009 10:34:21 +0000 (12:34 +0200)
project/static/css/master.css
project/templates/explorer/folder_images.html

index f1b48d9..f699cd6 100644 (file)
@@ -122,4 +122,8 @@ label {
 
 p { 
     margin: 0;
-}
\ No newline at end of file
+}
+
+.image-box {
+    border-top: 1px solid #DDD;
+}
index 4104926..8f5f600 100644 (file)
@@ -1,5 +1,3 @@
 {% for image in images %}
-    <div class="image-box" src="{{ image }}" style="width: 480px; height: 640px; border:1px solid #DDD; margin: 5px">
-        <p>{{ image }}</p>
-    </div>
+    <div class="image-box" src="{{ image }}" style="width: 480px; height: 640px;">{{ image }}</div>
 {% endfor %}
\ No newline at end of file