Make board and worklist icons unique

Currently boards and worklists share the task icon. This is
suboptimal, since the icon doesn't particularly suggest boards
or worklists at a glance.

This commit switches the board icon to one[0] which more resembles
a board, and the worklist item to a contained list to distinguish
from the tasks icon.

[0]: https://fontawesome.com/icons/columns?style=solid
[1]: https://fontawesome.com/icons/list-alt?style=regular

Change-Id: If89810896e25ce75fc7c36a22263ac1418ed8f69
This commit is contained in:
Adam Coldrick 2018-02-18 11:09:52 +00:00
parent 849440ed19
commit 1f857c0504
2 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@
<i class="fa fa-sb-board text-muted"></i>&emsp;{{match.model.title}}
</span>
<span ng-switch-when="Worklist">
<i class="fa fa-sb-worklist text-muted"></i>&emsp;{{match.model.title}}
<i class="far fa-sb-worklist text-muted"></i>&emsp;{{match.model.title}}
</span>
<span ng-switch-default>
<i class="fa fa-question text-muted"></i>&emsp;{{match.model.type}}

View File

@ -30,5 +30,5 @@
.@{fa-css-prefix}-sb-profile:before { content: @fa-var-user; }
.@{fa-css-prefix}-sb-profile-preferences:before { content: @fa-var-cog; }
.@{fa-css-prefix}-sb-profile-tokens:before { content: @fa-var-key; }
.@{fa-css-prefix}-sb-board:before { content: @fa-var-tasks; }
.@{fa-css-prefix}-sb-worklist:before { content: @fa-var-tasks; }
.@{fa-css-prefix}-sb-board:before { content: @fa-var-columns; }
.@{fa-css-prefix}-sb-worklist:before { content: @fa-var-list-alt; }