Final tweeks.

master
Jason A. Donenfeld 2011-05-07 07:42:34 -04:00
parent e3e8e3297d
commit 68a1f42e34
3 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,7 @@
from CachePath import * from CachePath import *
from datetime import datetime from datetime import datetime
import json import json
import os
import os.path import os.path
from PIL import Image from PIL import Image
from PIL.ExifTags import TAGS from PIL.ExifTags import TAGS
@ -224,7 +225,8 @@ class Photo(object):
try: try:
image.save(thumb_path, "JPEG") image.save(thumb_path, "JPEG")
except: except:
os.path.unlink(thumb_path) print "Could not thumbnail %s" % thumb_path
os.unlink(thumb_path)
def _thumbnails(self, image, thumb_path): def _thumbnails(self, image, thumb_path):
mirror = image mirror = image

View File

@ -62,6 +62,7 @@ a:hover {
font-size: 2.5em; font-size: 2.5em;
line-height: 0; line-height: 0;
top: 40%; top: 40%;
font-weight: bold;
} }
#back { #back {
left: .5em; left: .5em;
@ -105,7 +106,7 @@ a:hover {
} }
#metadata { #metadata {
background-color: #000000; background-color: #000000;
width: 270px; width: 340px;
font-size: 12px; font-size: 12px;
line-height: 12px; line-height: 12px;
padding-top: 3px; padding-top: 3px;

View File

@ -281,7 +281,7 @@ $(document).ready(function() {
.css("padding-top", 0) .css("padding-top", 0)
.css("padding-bottom", 0) .css("padding-bottom", 0)
.show() .show()
.animate({ height: 16 * 11, paddingTop: 3, paddingBottom: 3 }, "slow", function() { .animate({ height: 16.3 * 11, paddingTop: 3, paddingBottom: 3 }, "slow", function() {
$("#metadata-link").text($("#metadata-link").text().replace("show", "hide")); $("#metadata-link").text($("#metadata-link").text().replace("show", "hide"));
}); });
else else