Amaury Well-known member Aug 20, 2015 #1 How can I remove the arrow span so the left side looks the same as the right side?
Arty Well-known member Aug 20, 2015 #2 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 Upvote 0 Downvote
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
Amaury Well-known member Aug 20, 2015 #3 I got the first one done, but I'm not finding border-*-right-radius. Upvote 0 Downvote
Arty Well-known member Aug 20, 2015 #4 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 Upvote 0 Downvote
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
Amaury Well-known member Aug 20, 2015 #5 Thanks, Arty! That's progress, but the arrows are still there: Upvote 0 Downvote
Arty Well-known member Aug 20, 2015 #6 Add display:none to .arrow Also make padding on left/right the same for .tag Upvote 0 Downvote
Amaury Well-known member Aug 20, 2015 #7 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; } Upvote 0 Downvote
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; }