diff --git a/src/case/button/item.multiselect.js b/src/case/button/item.multiselect.js index 930e56cf9..0bd077f06 100644 --- a/src/case/button/item.multiselect.js +++ b/src/case/button/item.multiselect.js @@ -11,8 +11,9 @@ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { logic: { dynamic: false }, - iconWrapperWidth: 16, + iconWrapperWidth: 26, textHgap: 0, + textLgap: 0, textRgap: 0 }); }, @@ -31,6 +32,7 @@ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { height: o.height, hgap: o.textHgap, rgap: o.textRgap, + lgap: o.textLgap, text: o.text, keyword: o.keyword, value: o.value, diff --git a/src/case/button/item.singleselect.radio.js b/src/case/button/item.singleselect.radio.js index f84105cda..21b9ad155 100644 --- a/src/case/button/item.singleselect.radio.js +++ b/src/case/button/item.singleselect.radio.js @@ -11,8 +11,9 @@ BI.SingleSelectRadioItem = BI.inherit(BI.BasicButton, { dynamic: false }, height: 24, - iconWrapperWidth: 16, + iconWrapperWidth: 26, textHgap: 0, + textLgap: 0, textRgap: 0 }); }, @@ -30,7 +31,8 @@ BI.SingleSelectRadioItem = BI.inherit(BI.BasicButton, { textHeight: o.height, height: o.height, hgap: o.textHgap, - rgap: o.textHgap, + rgap: o.textRgap, + lgap: o.textLgap, text: o.text, keyword: o.keyword, value: o.value, @@ -43,7 +45,7 @@ BI.SingleSelectRadioItem = BI.inherit(BI.BasicButton, { items: BI.LogicFactory.createLogicItemsByDirection("left", { type: "bi.center_adapt", items: [this.radio], - width: o.conWrapperWidth + width: o.iconWrapperWidth }, this.text) })))); },