Is it just me or did the user/profile pages just receive a new layout?
Posted under General
Is it just me or did the user/profile pages just receive a new layout?
motifathedestroyer said:
Is it just me or did the user/profile pages just receive a new layout?
Not just you, there was an update pushed out today that included a redesign of the profile page (pull request #734 ). It appears to be inspired by the improved profile layout from re621.
Because of this latest update, my favorites list is kinda gimpy;
anyone know of a CSS line entry that can make the image votes / fav count / comment count / rating bar go away, or maybe even this newest page size or spacing change go away ?
coyotebear said:
Because of this latest update, my favorites list is kinda gimpy;
anyone know of a CSS line entry that can make the image votes / fav count / comment count / rating bar go away, or maybe even this newest page size or spacing change go away ?
I was trying to look at the code for you, but I don't see that bar? Do you have a screenshot?
Adding this to uBlock Origin blocks the part I think you might be talking about: ##.profile-uploads.profile-sample > .profile-sample-links
alphamule said:
I was trying to look at the code for you, but I don't see that bar? Do you have a screenshot?
Adding this to uBlock Origin blocks the part I think you might be talking about: ##.profile-uploads.profile-sample > .profile-sample-links
A CSS line from https://e621.net/forum_topics/47305 (you were in there earlier) seems to have helped; thanks, tho~!
While we're on the subject of updates, I'm surprised no one's mentioned the change to sets.
Being able to remove a post at the post itself is a gamechanger.
coyotebear said:
…image votes / fav count / comment count / rating bar…
I wish they brought back the red bar for implying that that post is on your blacklist when you have your blacklist turned off. I found it helping me edit tags.
cow_of_fire said:
I wish they brought back the red bar for implying that that post is on your blacklist when you have your blacklist turned off. I found it helping me edit tags.
seems like the CSS that handles this got removed somehow? the blacklist script still adds the "filter-matches" class to posts that are on the blacklist but not hidden, so all you need to do is add .filter-matches div.desc { background: var(--palette-background-red); } to your user CSS.
maryland_p_sevenson said:
seems like the CSS that handles this got removed somehow? the blacklist script still adds the "filter-matches" class to posts that are on the blacklist but not hidden, so all you need to do is add .filter-matches div.desc { background: var(--palette-background-red); } to your user CSS.