dom.append(tdEl.lastElementChild,
E('button', {
'title': _('Edit'),
- 'class': 'cbi-button cbi-button-edit',
+ 'class': 'btn cbi-button cbi-button-edit',
'click': evFn
}, [ _('Edit') ])
);
dom.append(tdEl.lastElementChild,
E('button', {
'title': more_label,
- 'class': 'cbi-button cbi-button-edit',
+ 'class': 'btn cbi-button cbi-button-edit',
'click': ui.createHandlerFn(this, 'renderMoreOptionsModal', section_id)
}, [ more_label ])
);
dom.append(tdEl.lastElementChild,
E('button', {
'title': btn_title || _('Delete'),
- 'class': 'cbi-button cbi-button-remove',
+ 'class': 'btn cbi-button cbi-button-remove',
'click': ui.createHandlerFn(this, 'handleRemove', section_id),
'disabled': this.map.readonly || null
}, [ btn_title || _('Delete') ])