Skip to content
Snippets Groups Projects
Commit 00ad49ba authored by Vinciane's avatar Vinciane
Browse files

FIX #9511 Double scroll bar

parent ba6893a0
No related branches found
No related tags found
No related merge requests found
<mat-dialog-content style="overflow:inherit;"> <mat-dialog-content >
<h2 mat-dialog-title>{{lang.templateAssociateEntities}}</h2> <h2 mat-dialog-title>{{lang.templateAssociateEntities}}</h2>
<div class="modal-body"> <div class="modal-body">
<div class="alert alert-warning" role="alert"> <div class="alert alert-warning" role="alert">
...@@ -15,5 +15,4 @@ ...@@ -15,5 +15,4 @@
<button mat-raised-button color="primary" type="submit" <button mat-raised-button color="primary" type="submit"
(click)="dialogRef.close()">{{lang.close}}</button> (click)="dialogRef.close()">{{lang.close}}</button>
</mat-dialog-actions> </mat-dialog-actions>
</mat-dialog-content> </mat-dialog-content>
\ No newline at end of file
.mat-dialog-content{ .mat-dialog-content{
height: auto !important; height: auto !important;
min-width: 30vw; min-width: 30vw;
max-height: 65vh; max-height: 90vh;
overflow: hidden !important;
} }
.modal-body{ .modal-body{
...@@ -10,4 +11,13 @@ ...@@ -10,4 +11,13 @@
mat-dialog-actions{ mat-dialog-actions{
justify-content: center; justify-content: center;
}
mat-list{
overflow: auto;
max-height: 50vh;
}
.mat-dialog-content h2{
margin-top: 20px;
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment