diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-07-04 09:41:57 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-07-04 09:41:57 -0500 |
commit | 24eaf0fd6bd6529ac59bc3963e0013e34c2c01a4 (patch) | |
tree | 0900d728fd6eebd064c15a3e3aa042e06e478282 | |
parent | 6178aa0814f8c9f7d6f073c3c0ed2f94e4990500 (diff) | |
download | mediagoblin-24eaf0fd6bd6529ac59bc3963e0013e34c2c01a4.tar.lz mediagoblin-24eaf0fd6bd6529ac59bc3963e0013e34c2c01a4.tar.xz mediagoblin-24eaf0fd6bd6529ac59bc3963e0013e34c2c01a4.zip |
Not happy with 180x135, switching back to 180x180
-rw-r--r-- | mediagoblin/process_media/__init__.py | 2 | ||||
-rw-r--r-- | mediagoblin/static/css/base.css | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mediagoblin/process_media/__init__.py b/mediagoblin/process_media/__init__.py index a65c3ddc..27f72b65 100644 --- a/mediagoblin/process_media/__init__.py +++ b/mediagoblin/process_media/__init__.py @@ -21,7 +21,7 @@ from celery.task import task from mediagoblin import mg_globals as mgg -THUMB_SIZE = 180, 135 +THUMB_SIZE = 180, 180 MEDIUM_SIZE = 640, 640 diff --git a/mediagoblin/static/css/base.css b/mediagoblin/static/css/base.css index da04e1c4..10dbc98b 100644 --- a/mediagoblin/static/css/base.css +++ b/mediagoblin/static/css/base.css @@ -187,7 +187,7 @@ text-align:center; .media_thumbnail { padding:0px; width:180px; - height:135px; + height:180px; overflow:hidden; float:left; margin:0px 10px 10px 0px; |