Fix visited link coloring hiding subscribed status in groups list

Fixes #720 by making the color explicitly apply in the :visited
case.  (Other specificity hacks could fix this, but this is the
cleanest.)
This commit is contained in:
Aeledfyr
2023-06-06 18:21:16 -05:00
committed by Deimos
parent f51e664752
commit 3b20b1f83b

View File

@@ -29,7 +29,8 @@
}
.group-list-item-not-subscribed {
a.link-group {
a.link-group,
a.link-group:visited {
color: var(--warning-color);
}
}