Gegenstimme Dark Mode colourful like/dislike buttons

Changes colour of the like or dislike button if activated, so it's easier to see if video already was rated. Red dislike, green like.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

/* ==UserStyle==
@name           Gegenstimme Dark Mode colourful like/dislike buttons
@version        1.1
@namespace      userstyles.world/user/782754-picblick
@description    Changes colour of the like or dislike button if activated, so it's easier to see if video already was rated. Red dislike, green like.
@author         [email protected]
@include        
@license        MIT
==/UserStyle== */

@-moz-document domain("gegenstimme.tv") {
    .video-bottom .video-info .video-info-first-row .video-actions-rates .video-actions .action-button.action-button-like.activated svg {
        color: green !important;
    }

    .video-bottom .video-info .video-info-first-row .video-actions-rates .video-actions .action-button.action-button-dislike.activated svg {
        color: red !important;
    }
}