At the very least can there be a setting to undo the latest update? The original UI was far more functional for me and I find the new one has made the site much less pleasant to use.
Updated by Versperus
Posted under General
This topic has been locked.
At the very least can there be a setting to undo the latest update? The original UI was far more functional for me and I find the new one has made the site much less pleasant to use.
Updated by Versperus
raven_reverie said:
At the very least can there be a setting to undo the latest update? The original UI was far more functional for me and I find the new one has made the site much less pleasant to use.
cinder said he wont revert it
go to https://e621.net/users/358275/edit?tab=advanced (that url has your user id for ya)
at the bottom of the page is custom css paste the following and hit save settings
@media (min-width: 474px) {
article.thumbnail {
width: min-content;
}
}
article.thumbnail {
max-width: 150px;
min-height: unset !important;
min-width: unset !important;
}
article.thumbnail a {
height: unset !important;
max-height: unset !important;
max-width: unset !important;
width: unset !important;
}
article.thumbnail img {
max-height: 150px;
max-width: 150px;
height: unset !important;
object-fit: unset !important;
pointer-events: none;
width: 100%;
}
@media (min-width: 474px){
article.thumbnail:not(.deleted) img {
width: unset;
}
}
section.posts-container {
grid-template-columns: repeat(3,1fr) !important;
--thumb-image-size: 150px;
}
@media (min-width: 474px) {
section.posts-container {
grid-template-columns: repeat(auto-fill,minmax(var(--thumb-image-size),1fr));
}
}
article.thumbnail .desc {
height: unset !important;
}
.post-thumbnail.dtext img {
max-height: 150px;
max-width: 150px;
width: auto;
height: auto;
}
#image-container.blacklisted img.post-thumbnail-img,
#image-container.blacklisted video,
.post-thumbnail.blacklisted img.post-thumbnail-img,
.post-thumbnail.blacklisted video {
padding: 150px 150px 0 0!important;
background-size: contain;
}
article.thumbnail.deleted img{
width: calc(90vw / 3);
max-width: 150px;
}
There already is a way to change it. On the posts page, if you click the gear icon near the search bar, then change card size to small and image crop to full, the thumbnails will like more like how they were in the past.
starboykisser said:
There already is a way to change it. On the posts page, if you click the gear icon near the search bar, then change card size to small and image crop to full, the thumbnails will like more like how they were in the past.
the css is an almost 1:1 recreation of the old one (stole it from someone in the forums)