mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ACS-7575] create library dialog fixes (#9574)
This commit is contained in:
committed by
VitoAlbano
parent
f74a3d87e8
commit
7e96fbbfd5
@@ -1,10 +1,10 @@
|
|||||||
<h2 mat-dialog-title>{{ createTitle | translate }}</h2>
|
<h2 mat-dialog-title>{{ createTitle | translate }}</h2>
|
||||||
|
|
||||||
<mat-dialog-content>
|
<mat-dialog-content class="adf-library-dialog-content">
|
||||||
<form novalidate [formGroup]="form" (submit)="submit()">
|
<form novalidate [formGroup]="form" (submit)="submit()">
|
||||||
<mat-form-field class="adf-library-dialog-form-field">
|
<mat-form-field class="adf-library-dialog-form-field" appearance="outline">
|
||||||
|
<mat-label>{{ 'LIBRARY.DIALOG.FORM.NAME' | translate }}</mat-label>
|
||||||
<input
|
<input
|
||||||
placeholder="{{ 'LIBRARY.DIALOG.FORM.NAME' | translate }}"
|
|
||||||
required
|
required
|
||||||
matInput
|
matInput
|
||||||
formControlName="title"
|
formControlName="title"
|
||||||
@@ -28,10 +28,10 @@
|
|||||||
</mat-error>
|
</mat-error>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
|
|
||||||
<mat-form-field class="adf-library-dialog-form-field">
|
<mat-form-field class="adf-library-dialog-form-field" appearance="outline">
|
||||||
|
<mat-label>{{ 'LIBRARY.DIALOG.FORM.SITE_ID' | translate }}</mat-label>
|
||||||
<input
|
<input
|
||||||
required
|
required
|
||||||
placeholder="{{ 'LIBRARY.DIALOG.FORM.SITE_ID' | translate }}"
|
|
||||||
matInput
|
matInput
|
||||||
formControlName="id"
|
formControlName="id"
|
||||||
autocomplete="off"
|
autocomplete="off"
|
||||||
@@ -46,10 +46,10 @@
|
|||||||
</mat-error>
|
</mat-error>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
|
|
||||||
<mat-form-field class="adf-library-dialog-form-field">
|
<mat-form-field class="adf-library-dialog-form-field" appearance="outline">
|
||||||
|
<mat-label>{{ 'LIBRARY.DIALOG.FORM.DESCRIPTION' | translate }}</mat-label>
|
||||||
<textarea
|
<textarea
|
||||||
matInput
|
matInput
|
||||||
placeholder="{{ 'LIBRARY.DIALOG.FORM.DESCRIPTION' | translate }}"
|
|
||||||
rows="3"
|
rows="3"
|
||||||
formControlName="description"
|
formControlName="description"
|
||||||
></textarea>
|
></textarea>
|
||||||
|
@@ -1,8 +1,13 @@
|
|||||||
.adf-library-dialog {
|
.adf-library-dialog {
|
||||||
|
.adf-library-dialog-content {
|
||||||
|
padding: 0;
|
||||||
|
overflow: unset;
|
||||||
|
}
|
||||||
|
|
||||||
.adf-library-dialog-radio-group {
|
.adf-library-dialog-radio-group {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
margin: 0 0 20px;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.adf-library-dialog-radio-group .adf-library-dialog-radio-group-button {
|
.adf-library-dialog-radio-group .adf-library-dialog-radio-group-button {
|
||||||
@@ -21,6 +26,10 @@
|
|||||||
|
|
||||||
.adf-action-button {
|
.adf-action-button {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user