#515 closed defect (fixed)
MediaGoblin makes thumbs 180px high, but css only allows 135px high max
Reported by: | Christopher Allan Webber | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 0.4.0 |
Component: | graphic design/interface | Keywords: | |
Cc: | Parent Tickets: |
Description
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!
Change History (6)
comment:1 by , 12 years ago
comment:2 by , 12 years ago
I propose we wait until we find the right thumbnail size.
Until that time let's resize via CSS. After we settle on a specific size, we can make a "real" change to the default thumbnail size.
comment:3 by , 12 years ago
Could we at least just remove the height restriction for now? CSS resizing makes our thumbs not look very nice.
comment:4 by , 12 years ago
+1 on removing it.
Resizing to 180 px images, then resizing those to 135 px via css... that's really ugly. Because there is no way for the browser to produce a nice 135 px view from only 180 px real size.
comment:5 by , 11 years ago
Milestone: | → 0.4.0 |
---|---|
Owner: | removed |
Resolution: | → fixed |
Status: | new → closed |
Done and pushed in 0e4d6221fae26709d7ad32f40318df874b570bf8
The thumbs aren't really optimal in some other ways right now... descriptions are getting cut off... so addressing that when this is addressed maybe makes sense?