﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	resolution	keywords	cc	parents
515	MediaGoblin makes thumbs 180px high, but css only allows 135px high max	Christopher Allan Webber		"MediaGoblin's default max_height for thumbs is 180px... from the config_spec:

{{{
[media:thumb]
# Dimensions used when creating media thumbnails
# This is unfortunately not implemented in the media
# types yet. You can help!
# TODO: Make plugins follow the media size settings
max_width = integer(default=180)
max_height = integer(default=180)
}}}

But MediaGoblin's CSS only allows for 135px high things!

{{{
.media_thumbnail img {
  max-height: 135px;
}
}}}

The end result?  Weird squashed and grainy browser-resized thumbs.

One of these needs to change!  But it's not currently just as simple as changing the max-height in the css, because that breaks the thumbs!
"	defect	closed	major	0.4.0	graphic design/interface	fixed			
