-
Notifications
You must be signed in to change notification settings - Fork 23
Description
Download button cuts off video titles
With addon:
Without:
It's quite annoying, because creators create their titles to be displayed under regular YT apps to be comprehensible, and when they're cut off more, it doesn't make sense as you often don't even know what the video is about anymore.
The issue is there's a download button from TA there, and it sits there on the right with opacity: 0
. So the solution is to either have it do display: none
instead of opacity: 0
, or to do something like position: absolute; right: 2rem;
, which would then look like this:
Or even position: aboslute; right: 0; top: 3rem;
(in this case the button should be shown on hover over whole card and not just title though):
In general though I find these buttons pretty questionable. I think each of them should be configurable, on whether they should be shown at all. The reason is that a lot of people would have used this extension in the first place to just sync their cookies, and anything beyond that was just an extra (personally I had to disable cookie syncing as it was breaking yt-dlp lately, which now makes me question if I even need this extension enabled at all currently xd)
Subscribe/download combo cuts off channel name
Almost equally bad. What channel am I even watching?
This happens because YouTube sets their responsive layout with the assumption that only the buttons they put there would be there, and even they themselves would have often gotten it wrong and caused things to get cut off, hilariously. But with an extra wide button, any issues with this layout are only amplified sadly (under certain screen widths...).
I think in this case it'd be better to make the button much tinier, preferably just a tiny button with TA logo, that'd show dropdown with these options. And to "Subscribe" and "Download", there could be one named something like "Open in TA instance" added, to show the video if it's already there.