Font-awesome: Icon Request: fa-plus-minus

Created on 6 Jul 2015  路  26Comments  路  Source: FortAwesome/Font-Awesome

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.

in progress new icon web application icons

Most helpful comment

卤 1

All 26 comments

+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
before

With documentation and few adaptations, I get
after

<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?

Was this page helpful?
0 / 5 - 0 ratings

Related issues

tdolph picture tdolph  路  3Comments

brystfire08 picture brystfire08  路  3Comments

sezeresen picture sezeresen  路  3Comments

ghost picture ghost  路  3Comments

seppestas picture seppestas  路  3Comments