Greasy Fork is available in English.

Archive Of Our Own - Change separator between tags

Changes the separator between tags to something more noticeable.

  1. /* ==UserStyle==
  2. @name Archive Of Our Own - Change separator between tags
  3. @description Changes the separator between tags to something more noticeable.
  4. @version 1.0
  5. @namespace https://greasyfork.org/users/3759
  6. ==/UserStyle== */
  7.  
  8. @-moz-document domain("archiveofourown.org") {
  9.  
  10. .commas li::after
  11. {
  12. content: " ●";
  13. }
  14. .commas li.last::after
  15. {
  16. content: none !important;
  17. }
  18. }