Archive Of Our Own - Highlight tagset tags on hover

Highlights tags in tagsets when you hover over them.

Pada tanggal 26 Februari 2020. Lihat %(latest_version_link).

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 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        Archive Of Our Own - Highlight tagset tags on hover
@description Highlights tags in tagsets when you hover over them.
@version     1.0
@namespace   https://greasyfork.org/users/3759
==/UserStyle== */

@-moz-document domain("archiveofourown.org") {

.fandom.listbox.group .tags.index.group.commas li {
        padding-right: 0;
        margin-right: 0.25em;
    }

.fandom.listbox.group .tags.index.group.commas li:hover {
        background: #910000 !important;
        color: #FFFFFF !important;
    }
  
/* If you're using a custom style that changes the text and background color of the site, change these values to whatever values are provided by that style. Otherwise, just leave this alone. */
.fandom.listbox.group .tags.index.group.commas li:hover::after {
    background: #FFFFFF !important;
    color: #000000;
    }  

}