Archive Of Our Own - Highlight tagset tags on hover

Highlights tags in tagsets when you hover over them.

  1. /* ==UserStyle==
  2. @name Archive Of Our Own - Highlight tagset tags on hover
  3. @description Highlights tags in tagsets when you hover over them.
  4. @version 1.1
  5. @namespace https://greasyfork.org/users/3759
  6. ==/UserStyle== */
  7.  
  8. @-moz-document domain("archiveofourown.org") {
  9.  
  10. .fandom.listbox.group .tags.index.group.commas li, .cast.listbox.group li {
  11. padding-right: 0;
  12. margin-right: 0.25em;
  13. }
  14.  
  15. .fandom.listbox.group .tags.index.group.commas li:hover, .cast.listbox.group li:hover {
  16. background: #910000 !important;
  17. color: #FFFFFF !important;
  18. }
  19. /* 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. */
  20. .fandom.listbox.group .tags.index.group.commas li:hover::after, .cast.listbox.group li:hover::after {
  21. background: #FFFFFF !important;
  22. color: #000000;
  23. }
  24.  
  25. }