Yes so for me it was the combination of adding:
cancel: 'input,textarea,button,select,option,[contenteditable]'
and then taking off the .disableSelection();
so i'm left with:
$("#sortable_list").sortable({
cancel: 'input,textarea,button,select,option,[contenteditable]'
});