Changes the separator between tags to something more noticeable.
/* ==UserStyle==
@name Archive Of Our Own - Change separator between tags
@description Changes the separator between tags to something more noticeable.
@version 1.0
@namespace https://greasyfork.org/users/3759
==/UserStyle== */
@-moz-document domain("archiveofourown.org") {
.commas li::after
{
content: " ●";
}
.commas li.last::after
{
content: none !important;
}
}