youtube icon indicating copy to clipboard operation
youtube copied to clipboard

When I remove or the like or dislike button, it shows just half of the button

Open joaolscosta opened this issue 1 year ago • 6 comments

Bug Report:

BUG: When I remove or the like or dislike button, it shows just half of the button ⚬ HOW: In Appearance onto Details, when select Buttons bellow the player, hide like or dislike button. More / optionally:

/ ⚬ Expected /preferred behavior: I'd like to fix the button to be a button like the other ones. Like i'd like to be a full button instead that half ugly button. ⚬ Browser: Firefox ⚬ Settings: Appearance -> Details -> Buttons (bellow the player) -> 'like' -> hidden ⚬ OS: Arch Linux ⚬ Device: Huawei Matebook

https://github.com/code-charity/youtube/assets/101182024/550a42ce-20c8-4065-86a7-9df63c8fd14e

I can fix this code!

joaolscosta avatar Mar 04 '24 23:03 joaolscosta

you remove one of two, so it shows just the other one

raszpl avatar Mar 05 '24 08:03 raszpl

So I think it would be a nice idea to reformat the left button to be a completed one like all the other ones instead of that ugly one halfed.

joaolscosta avatar Mar 05 '24 13:03 joaolscosta

Ah, so its about aesthetics :) Im not bothered by such details myself. Easily doable by removing/overriding/disabling yt-spec-button-shape-next--segmented-start yt-spec-button-shape-next--segmented-end class styles when disabling one of the buttons

.yt-spec-button-shape-next--size-m.yt-spec-button-shape-next--segmented-end {
    border-radius: 0 18px 18px 0;
    border-top-left-radius: 0px;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    border-bottom-left-radius: 0px;
}

Its an easy cosmetic patch, Ill let someone else implement it :)

raszpl avatar Mar 06 '24 03:03 raszpl

Fine, appreciate it a lot!! :)

joaolscosta avatar Mar 06 '24 09:03 joaolscosta

It is a simple thing to do and that's why I offered myself ahaha what about the other issues I've opened?

joaolscosta avatar Mar 06 '24 09:03 joaolscosta

go for it

raszpl avatar Mar 06 '24 14:03 raszpl