I have a ui select dropdown in angular that contains various text values. Using CSS I added font awesome icons to the left of each value. I want to add a specific font awesome icon to the left of the 'All' choice in the dropdown, however I'm unable to target the specific dropdown choice. Not sure if this can be accomplished using only CSS or if I need to use JS to target it somehow. In any even any help would be greatly appreciated thank you.
<div class="form-group">
<ui-select id="teamMemberType" ng-model="historyCtrl.queryParams.teamMemberType" theme="bootstrap" ng-change="historyCtrl.filterContent()">
<ui-select-match placeholder="Search">{{$select.selected.display}}</ui-select-match>
<ui-select-choices group-by="'group'" repeat="option.value as option in (historyCtrl.filters.options.teamMemberType | filter: $select.search) track by option.value">
<span id="created" ng-bind-html="option.display| highlight: $select.search"></span>
</ui-select-choices>
</ui-select>
</div>