mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
#1134 Added scroll for big dialog on process detail , Fixed width for dialog task detail
This commit is contained in:
parent
9ed3047857
commit
0f563e38bb
@ -22,9 +22,14 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.task-details-dialog {
|
.task-details-dialog {
|
||||||
width: 600px;
|
width: 40%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.process-tasks-refresh {
|
.process-tasks-refresh {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mdl-dialog__content.form__size {
|
||||||
|
height: 400px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
|
|
||||||
<dialog class="mdl-dialog task-details-dialog" #dialog>
|
<dialog class="mdl-dialog task-details-dialog" #dialog>
|
||||||
<h4 class="mdl-dialog__title">{{ 'DETAILS.TASKS.TASK_DETAILS' | translate }}</h4>
|
<h4 class="mdl-dialog__title">{{ 'DETAILS.TASKS.TASK_DETAILS' | translate }}</h4>
|
||||||
<div class="mdl-dialog__content">
|
<div class="mdl-dialog__content form__size">
|
||||||
<activiti-task-details [taskId]="selectedTaskId" (formCompleted)="onTaskFormCompleted()" #taskdetails></activiti-task-details>
|
<activiti-task-details [taskId]="selectedTaskId" (formCompleted)="onTaskFormCompleted()" #taskdetails></activiti-task-details>
|
||||||
</div>
|
</div>
|
||||||
<div class="mdl-dialog__actions">
|
<div class="mdl-dialog__actions">
|
||||||
@ -80,7 +80,7 @@
|
|||||||
|
|
||||||
<dialog class="mdl-dialog task-details-dialog" #startDialog>
|
<dialog class="mdl-dialog task-details-dialog" #startDialog>
|
||||||
<h4 class="mdl-dialog__title">{{ 'DETAILS.LABELS.START_FORM'|translate }}</h4>
|
<h4 class="mdl-dialog__title">{{ 'DETAILS.LABELS.START_FORM'|translate }}</h4>
|
||||||
<div class="mdl-dialog__content">
|
<div class="mdl-dialog__content form__size">
|
||||||
<activiti-start-form [processId]="processId" [processDefinitionId]="processInstanceDetails?.processDefinitionId"
|
<activiti-start-form [processId]="processId" [processDefinitionId]="processInstanceDetails?.processDefinitionId"
|
||||||
[showOutcomeButtons]="false" [showRefreshButton]="false">
|
[showOutcomeButtons]="false" [showRefreshButton]="false">
|
||||||
</activiti-start-form>
|
</activiti-start-form>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user