I used to tap the number in mobile while in the profile to see it broken down but it's not working for me lately.
If it were easier to see who upvoted or downvoted (only the most recent for each individual user to avoid duplicates caused by changing their vote) that would also be cool.
12 Comments
wjs018@piefed.wjs018.xyz · 10 pts · 2d
You can kind of hack this using custom css in your profile. I just tried this and confirmed that it worked, but I couldn't quite get the alignment just right. Basically, the info is there on the element, but it is in the
titleattribute. So, you have to make the existing content not visible (without hiding the entire element) by setting the font size to 0. Then, you pull out the title and stick it in there in its place.One note is that the
--font-size-16is the default. If you have changed your font preferences to be bigger or smaller, you can try changing the number on that css variable to be bigger or smaller. Here is a list of the possible values that are defined in the stylesheet:FiniteBanjo@feddit.online · 3 pts · 2d
sweet
wjs018@piefed.wjs018.xyz · 4 pts · 2d
One note about this after I have used it for a little bit after experimenting is that the vote score text seems like it is a target for tapping to cast a vote. Though, that might just be my fat-fingering things as I am prone to do on mobile. I have also struggled to get the hover text to show up in the past on mobile, so I sympathize with this post.
rimu@piefed.social · 7 pts · 2d
I'll bring it back in the next version.
All the tooltips got wiped out by some performance improvements recently and I'm putting them back in as-needed.
FiniteBanjo@feddit.online · 3 pts · 2d
thank you
broom@piefed.social · 4 pts · 2d
Well, at least on a desktop environment you can hover your mouse above the counter and you will see the number of up and downvotes.
FiniteBanjo@feddit.online · 4 pts · 2d
It might just be a difficult target for large thumbs on touchscreen, a skill issue, but still would be a nice feature.
SatyrSack@quokk.au · 3 pts · 2d
I usually find myself zooming in a bit on mobile before tapping. That is more reliable. But certainly, I do wish it was just always displayed the separated vote values.
mrbigmouth502@piefed.zip · 2 pts · 2d
It can be done on mobile but it's really tricky. They should give it a bigger hitbox so that it's easier to tap.EDIT: Turns out the tooltips were wiped out after all.
SatyrSack@quokk.au · 2 pts · 2d
EDIT: Ignore this. It works on PyLova, but not vanilla PieFed.
Funny enough, I had just started making a userscript to do this. Running this JavaScript on a page displays all the votes separated:
I can't seem to get this to work reliably as a userscript. If anyone is experienced with making userscripts and can help fix this, I would appreciate it:
wjs018@piefed.wjs018.xyz · 3 pts · 2d
Looks like the only real difference is that pylova stores the information in the
data-bs-original-titleattribute instead of thetitleattribute.SatyrSack@quokk.au · 3 pts · 1d
Sure looks that way, but making that change and running it on a PieFed page, it didn't work right. I think it just affected the first vote total and that was it. It didn't do anything to any of the other vote totals in the page.
Your CSS trick above seems to be a better option for PieFed users, if it does work. I couldn't get it to work on PyLova, even with substituting
data-bs-original-title. It removes all vote totals but doesn't actually replace them with anything.