XF 1.5 Remove Arrow Span on Tags

Its not arrow span, its pseudo element after tag and tag's left border radius that you need to change.

To remove dot remove
Code:
.tagList .tag:after
To add border radius change border-*-right-radius to border-radius in
Code:
.tagList .tag
 
In public.css in rules for .tagList .tag:
Code:
  border: 1px solid {xen:property primaryLighter};
   border-left: none;
   border-radius: 4px;
   border-top-left-radius: 0;
   border-bottom-left-radius: 0;
Remove border-left, border-top-left-radius and border-bottom-left-radius
 
There! :)

Just to stay organized, I moved my edits to EXTRA.css, and I now have this:

Code:
.tagList .tag {
    border-left: 1px solid @secondaryLighter;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.tagList .tag:after {
    display: none;
}

.tagList .tag .arrow {
    display: none;
}

KHF Tags 3.webp
 
Top Bottom