I'd like to request a new icon, fa-plus-minus. The icon itself would look like this: +/-
_Use Case:_ I have a screen where users manage lists of items. Currently, I use an 'edit' icon (fa-pencil) that changes the UI so that the user can manage that list (add items or remove items). I've found from a lot of user feedback that the 'edit' icon is somewhat confusing. For whatever reason they believe the 'edit' icon is for renaming things and not for adding/removing things. I think this new icon would be much clearer for uses like this.
+1
+1
+1
+1
+1
+100
+1
+1
+1
+1
+1
+1
+1
+1
+1
+1
卤 1
+1
+1
+1
+1
+1
This can be achieved using the new power transforms + stacks.
Here is + above -.
<span class="fa-stack fa-2x">
<i class="fas fa-plus fa-stack-1x" data-fa-transform="shrink-8 up-3"></i>
<i class="fas fa-minus fa-stack-1x" data-fa-transform="shrink-8 down-3"></i>
</span>
And this is a version of + / -
<span class="fa-stack fa-2x">
<i class="fas fa-plus fa-stack-1x" data-fa-transform="shrink-8 up-4 left-3"></i>
<i class="fas fa-horizontal-rule fa-stack-1x" data-fa-transform="shrink-8 rotate--45"></i>
<i class="fas fa-minus fa-stack-1x" data-fa-transform="shrink-8 down-4 right-3"></i>
</span>
@sowenjub, thanks for the tip.
With your solution, I get
With documentation and few adaptations, I get
<span class="fa-stack" style="font-size: 0.5em;">
<i class="fas fa-plus fa-stack-1x" data-fa-transform="grow-5 up-7"></i>
<i class="fas fa-minus fa-stack-1x" data-fa-transform="grow-5 down-10"></i>
</span>
@MEChasle This is probably better. I got the same issue but didn't investigate because I changed my mind and used text instead. Glad the tip helped :)
Maybe +/- also?
Most helpful comment
卤 1