🏠 返回首頁 

Greasy Fork is available in English.

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.


安装此脚本?
安装为用户样式?
  1. /* ==UserStyle==
  2. @name Gegenstimme Dark Mode colourful like/dislike buttons
  3. @version 1.1
  4. @namespace userstyles.world/user/782754-picblick
  5. @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.
  6. @author picblick@web.de
  7. @include
  8. @license MIT
  9. ==/UserStyle== */
  10. @-moz-document domain("gegenstimme.tv") {
  11. .video-bottom .video-info .video-info-first-row .video-actions-rates .video-actions .action-button.action-button-like.activated svg {
  12. color: green !important;
  13. }
  14. .video-bottom .video-info .video-info-first-row .video-actions-rates .video-actions .action-button.action-button-dislike.activated svg {
  15. color: red !important;
  16. }
  17. }