FIX: apply fa-fw on class instead of icon name
This commit is contained in:
parent
6e46f81123
commit
deab0486fa
|
@ -18,8 +18,8 @@ export default ComboBoxComponent.extend({
|
|||
noCategoriesLabel: I18n.t("categories.no_subcategory"),
|
||||
mutateAttributes() {},
|
||||
fullWidthOnMobile: true,
|
||||
caretDownIcon: "caret-right fa-fw",
|
||||
caretUpIcon: "caret-down fa-fw",
|
||||
caretDownIcon: "caret-right",
|
||||
caretUpIcon: "caret-down",
|
||||
|
||||
init() {
|
||||
this._super();
|
||||
|
|
|
@ -7,8 +7,8 @@ export default SingleSelectComponent.extend({
|
|||
autoFilterable: true,
|
||||
headerComponent: "combo-box/combo-box-header",
|
||||
|
||||
caretUpIcon: "caret-up fa-fw",
|
||||
caretDownIcon: "caret-down fa-fw",
|
||||
caretUpIcon: "caret-up",
|
||||
caretDownIcon: "caret-down",
|
||||
clearable: false,
|
||||
|
||||
computeHeaderContent() {
|
||||
|
|
|
@ -7,8 +7,8 @@ export default ComboBoxComponent.extend({
|
|||
classNames: "group-dropdown",
|
||||
content: Ember.computed.alias("groups"),
|
||||
tagName: "li",
|
||||
caretDownIcon: "caret-right fa-fw",
|
||||
caretUpIcon: "caret-down fa-fw",
|
||||
caretDownIcon: "caret-right",
|
||||
caretUpIcon: "caret-down",
|
||||
allowAutoSelectFirst: false,
|
||||
valueAttribute: 'name',
|
||||
|
||||
|
|
|
@ -19,8 +19,8 @@ export default ComboBoxComponent.extend({
|
|||
categoryStyle: Ember.computed.alias("siteSettings.category_style"),
|
||||
mutateAttributes() {},
|
||||
fullWidthOnMobile: true,
|
||||
caretDownIcon: "caret-right fa-fw",
|
||||
caretUpIcon: "caret-down fa-fw",
|
||||
caretDownIcon: "caret-right",
|
||||
caretUpIcon: "caret-down",
|
||||
|
||||
@computed("tagId")
|
||||
noTagsSelected() {
|
||||
|
|
|
@ -2,4 +2,4 @@
|
|||
{{{label}}}
|
||||
</span>
|
||||
|
||||
{{d-icon caretIcon class="caret-icon"}}
|
||||
{{d-icon caretIcon class="caret-icon fa-fw"}}
|
||||
|
|
|
@ -10,4 +10,4 @@
|
|||
</button>
|
||||
{{/if}}
|
||||
|
||||
{{d-icon caretIcon class="caret-icon"}}
|
||||
{{d-icon caretIcon class="caret-icon fa-fw"}}
|
||||
|
|
|
@ -2,4 +2,4 @@
|
|||
{{{label}}}
|
||||
</span>
|
||||
|
||||
{{d-icon caretIcon class="caret-icon"}}
|
||||
{{d-icon caretIcon class="caret-icon fa-fw"}}
|
||||
|
|
Loading…
Reference in New Issue