Skip to content

Commit

Permalink
[ACS-7944] [ADW] Start process page (#9802)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacekpluta authored and VitoAlbano committed Jul 9, 2024
1 parent 92aa149 commit 58d8b59
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
}

.adf-ie11FixerParent {
margin-top: 16px;
margin: 16px 0;
min-width: 320px;

// IE11 vertical centering
Expand Down
1 change: 1 addition & 0 deletions lib/core/src/lib/styles/_mat-selectors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ $mat-form-field-error-wrapper: '.mat-mdc-form-field-error-wrapper';
$mat-text-field-textarea: '.mdc-text-field--textarea';
$mat-list-item-disabled: '.mdc-list-item--disabled';
$mat-chip-focus-overlay: '.mat-mdc-chip-focus-overlay';
$mat-card-header: '.mat-mdc-card-header';
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</adf-content-node-selector-panel>
</mat-dialog-content>

<mat-dialog-actions align="end">
<mat-dialog-actions class="adf-login-dialog-actions" align="end">
<button
mat-button
(click)="close()"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,15 @@
}
}
}

.adf-login-dialog-actions {
margin-left: -25px;
margin-right: -25px;
padding-right: 25px;
}
}

#{$mat-dialog-surface} {
overflow-x: hidden;
}

Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
placeholder="{{ 'ADF_PROCESS_LIST.START_PROCESS.FORM.LABEL.SELECT_APPLICATION' | translate }}"
(selectionChange)="onAppSelectionChange($event)"
[(ngModel)]="selectedApplication"
class="adf-start-process-definition-select"
data-automation-id="adf-start-process-apps-drop-down">
<mat-option
*ngFor="let application of applications"
Expand Down Expand Up @@ -61,7 +62,7 @@
</div>
</mat-form-field>
</div>
<mat-form-field class="adf-process-input-container" [floatLabel]="'always'">
<mat-form-field class="adf-process-input-container adf-process-input-container-process-name" [floatLabel]="'always'">
<mat-label>{{'ADF_PROCESS_LIST.START_PROCESS.FORM.LABEL.NAME' | translate}}</mat-label>
<input
matInput
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,11 @@
}

&-content-actions {
padding-bottom: 16px;
padding-right: 16px;
text-align: right;
}

#{$mat-button} {
width: auto;
padding: 0 16px;
Expand All @@ -35,16 +38,20 @@
mat-form-field {
width: 100%;
}

&-process-name {
margin-top: 16px
}
}

&-process-input-autocomplete {
display: flex;
padding-bottom: 2px;

button {
.adf-start-process-button {
position: absolute;
right: -14px;
top: 0;
top: 10px;
}

mat-spinner {
Expand All @@ -55,6 +62,14 @@
}

&-start-form-container {
#{$mat-card} {
height: 100%;
}

#{$mat-card-header} {
display: none;
}

.adf-start-form-card:has(.adf-start-form-header) {
box-shadow: none;
padding: 0;
Expand All @@ -63,13 +78,28 @@

&-start-form-actions:has(.adf-start-form-actions-button) {
text-align: right;
padding-bottom: 16px;

button {
text-wrap: none;
}
}

&-start-process-definition-container {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: baseline;

.adf-start-process-definition-select {
.mat-mdc-select-arrow-wrapper {
transform: none;

svg {
fill: initial;
}
}
}
}

&-start-process-app-list {
Expand Down

0 comments on commit 58d8b59

Please sign in to comment.