I have a template featuring the tag macro, transcluded into the sidebar. I want set the opacity of the tag pill body to 0.5, without changing the opacity of the dropdown.
Here is what I currently have, which is the result of placing the tag macro within a span, and styling it. If you click on one of the sidebar tags you will see that the style has also been applied to the dropdown, which I don’t want.
I can override .tc-tag-label
to change opacity of just the tag pill body, but affects every tag pill in the wiki:
<style>
.tc-tag-label {
opacity: 0.5;
}
</style>
So I’m stuck Can anyone help?