Close
RandaAlThor66 said:
I wouldn't mind having an option for larger thumbnails in the browse. On my 2560 X 1440 monitor those thumbs are pretty small. Something like 1.5x or 2x the current lxw combo would be great. I realize this isn't a small request given the need to regenerate a lot of thumbs, and will impact storage. Still, I think having the option at least given the prevalence of larger/higher resolution monitors would be great.
The thumb file is actually larger (300px) than what it presents.
You can customize it using CSS with extensions like Stylus to a degree.

For example:

@-moz-document domain("yande.re") {
.inner {
width: 250px !important;
height: 250px !important;
}

a.thumb > img {
width: auto;
height: auto;
max-width: 250px !important;
max-height: 250px !important;
}

ul#post-list-posts > li {
width: 260px !important;
height: 280px !important;
}
}