Hi @bills,
You need to change the source code of tasklist web app (more specifically to change below script file)
Replace below snippet:
var modalInstance = $modal.open({
	size: 'lg',
	controller: 'camProcessStartModalCtrl',
	template: template,
	resolve: {
		processData: function () {
			return processData;
		}
	}
});
with the following snippet:
var modalInstance = $modal.open({
	size: 'lg',
	controller: 'camProcessStartModalCtrl',
	template: template,
	backdrop: false,
	resolve: {
		processData: function () {
			return processData;
		}
	}
});