fix tag colors

This commit is contained in:
Albert Yi
2018-08-02 16:03:30 -07:00
parent 56127c5ac1
commit 7099065c3f

View File

@@ -4,6 +4,10 @@
.category-<%= category %> a, a.tag-type-<%= category %>, .ui-widget-content a.tag-type-<%= category %> {
color: <%= cssmap["color"] %>;
&:link, &:visited {
color: <%= cssmap["color"] %>;
}
&:hover {
color: <%= cssmap["hover"] %>;
}
@@ -15,6 +19,18 @@
.ui-widget-content .ui-state-active a.tag-type-<%= category %> {
color: <%= cssmap["hover"] %>;
&:link, &:visited {
color: <%= cssmap["color"] %>;
}
&:hover {
color: <%= cssmap["hover"] %>;
}
&.selected {
color: white;
}
}
<% end %>