diff --git a/src/case/button/item.multiselect.js b/src/case/button/item.multiselect.js index 5a418a9f1..7d320c0b2 100644 --- a/src/case/button/item.multiselect.js +++ b/src/case/button/item.multiselect.js @@ -11,7 +11,8 @@ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { logic: { dynamic: false }, - textHgap: 5, + iconWrapperWidth: 16, + textHgap: 0, textRgap: 0 }); }, @@ -47,7 +48,7 @@ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { items: BI.LogicFactory.createLogicItemsByDirection("left", { type: "bi.center_adapt", items: [this.checkbox], - width: 16 + width: o.iconWrapperWidth }, this.text) })))); }, diff --git a/src/case/button/item.singleselect.radio.js b/src/case/button/item.singleselect.radio.js index 83622047d..f84105cda 100644 --- a/src/case/button/item.singleselect.radio.js +++ b/src/case/button/item.singleselect.radio.js @@ -11,7 +11,8 @@ BI.SingleSelectRadioItem = BI.inherit(BI.BasicButton, { dynamic: false }, height: 24, - textHgap: 5, + iconWrapperWidth: 16, + textHgap: 0, textRgap: 0 }); }, @@ -42,7 +43,7 @@ BI.SingleSelectRadioItem = BI.inherit(BI.BasicButton, { items: BI.LogicFactory.createLogicItemsByDirection("left", { type: "bi.center_adapt", items: [this.radio], - width: 16 + width: o.conWrapperWidth }, this.text) })))); },