auf YT bestimmte Farbe ändern ?

  • Firefox-Version
    88.0.1 (64-Bit)
    Betriebssystem
    Win 10 Pro

    Hallo,

    kann mir jemand verraten wie man diese Farbe auf Youtube ändern kann wo der Pfeil drauf zeugt ?

  • bei mir klappt es so.

    wein nur nicht ob es richtig ist.

    CSS
    /* Playlist - wenn mit Maus */
    ytd-playlist-panel-video-renderer[watch-color-update][can-reorder]:hover.dragging,
    ytd-playlist-panel-video-renderer[watch-color-update][can-reorder].dragging,
    ytd-playlist-panel-video-renderer[watch-color-update]:hover:not(.dragging) {
         background-color: rgba(98, 0, 164, 0.1) !important; /* Purple 70 */
    }
    /* Playlist - wenn Markiert */
    ytd-playlist-panel-video-renderer[selected][watch-color-update] {
        background-color: rgba(98, 0, 164, 0.1) !important;
    }
  • *forget it* Änderung

    Zusammengefasst:

    Code
    ytd-playlist-panel-video-renderer[watch-color-update][can-reorder]:hover.dragging,
    ytd-playlist-panel-video-renderer[watch-color-update][can-reorder].dragging,
    ytd-playlist-panel-video-renderer[watch-color-update][selected],
    ytd-playlist-panel-video-renderer[watch-color-update]:hover:not(.dragging)
    {
         background-color: rgba(98, 0, 164, 0.1); /* Purple 70 */
    }

    Das !important kann man weglassen.

    Ergänzend, für diese Einträge gibt es eine ID

    Code
    #playlist-items[watch-color-update][can-reorder]:hover.dragging,
    #playlist-items[watch-color-update][can-reorder].dragging,
    #playlist-items[watch-color-update][selected],
    #playlist-items[watch-color-update]:hover:not(.dragging)
    {
         background-color: rgba(98, 0, 164, 0.1); /* Purple 70 */
    }

    Wenn du weinen möchtest, bist du falsch hier. Hier gibt es nur Lösungen!
    Oh Herr, wirf Hirn, oder Steine - Hauptsache, du triffst endlich.
    Zu viele Goofies und Dulleks vom Dienst. Schlabokka!

    3 Mal editiert, zuletzt von .DeJaVu (14. Mai 2021 um 11:30)