Skip to content
Snippets Groups Projects
Verified Commit 2d090167 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FIX #10599 TIME 0:20 fix css

parent d7ce97d6
No related branches found
No related tags found
No related merge requests found
...@@ -123,7 +123,7 @@ ...@@ -123,7 +123,7 @@
</footer> </footer>
<app-drawer></app-drawer> <app-drawer></app-drawer>
</mat-sidenav-content> </mat-sidenav-content>
<mat-sidenav #snavRight mode="over" fixedInViewport="true" [style.width.%]="signaturesService.sideNavRigtDatas.width" position='end' [disableClose]='signaturesService.sideNavRigtDatas.locked'> <mat-sidenav #snavRight mode="over" fixedInViewport="true" [style.width]="signaturesService.sideNavRigtDatas.width" position='end' [disableClose]='signaturesService.sideNavRigtDatas.locked'>
<app-my-profile *ngIf="signaturesService.sideNavRigtDatas.mode == 'profile'" [snavLeftComponent]="this.snav" [snavRightComponent]="this.snavRight"></app-my-profile> <app-my-profile *ngIf="signaturesService.sideNavRigtDatas.mode == 'profile'" [snavLeftComponent]="this.snav" [snavRightComponent]="this.snavRight"></app-my-profile>
<app-visa-workflow [visaWorkflow]="mainDocument.workflow" *ngIf="signaturesService.sideNavRigtDatas.mode == 'visaWorkflow'"></app-visa-workflow> <app-visa-workflow [visaWorkflow]="mainDocument.workflow" *ngIf="signaturesService.sideNavRigtDatas.mode == 'visaWorkflow'"></app-visa-workflow>
<app-document-list #appDocumentList *ngIf="signaturesService.sideNavRigtDatas.mode == 'documentList'"></app-document-list> <app-document-list #appDocumentList *ngIf="signaturesService.sideNavRigtDatas.mode == 'documentList'"></app-document-list>
......
...@@ -491,7 +491,7 @@ export class DocumentComponent implements OnInit { ...@@ -491,7 +491,7 @@ export class DocumentComponent implements OnInit {
this.signaturesService.sideNavRigtDatas = { this.signaturesService.sideNavRigtDatas = {
mode : 'visaWorkflow', mode : 'visaWorkflow',
width : '50', width : '650px',
locked : false, locked : false,
}; };
...@@ -501,7 +501,7 @@ export class DocumentComponent implements OnInit { ...@@ -501,7 +501,7 @@ export class DocumentComponent implements OnInit {
openDocumentList() { openDocumentList() {
this.signaturesService.sideNavRigtDatas = { this.signaturesService.sideNavRigtDatas = {
mode : 'documentList', mode : 'documentList',
width : '50', width : '650px',
locked : false, locked : false,
}; };
this.snavRight.open(); this.snavRight.open();
......
...@@ -18,7 +18,7 @@ export class SignaturesContentService { ...@@ -18,7 +18,7 @@ export class SignaturesContentService {
showDrawer = false; showDrawer = false;
sideNavRigtDatas = { sideNavRigtDatas = {
mode : '', mode : '',
width : '99', width : '650px',
locked : true, locked : true,
}; };
currentAction = 0; currentAction = 0;
...@@ -59,7 +59,7 @@ export class SignaturesContentService { ...@@ -59,7 +59,7 @@ export class SignaturesContentService {
this.showDrawer = false; this.showDrawer = false;
this.sideNavRigtDatas = { this.sideNavRigtDatas = {
mode : '', mode : '',
width : '99', width : '650px',
locked : true, locked : true,
}; };
this.currentAction = 0; this.currentAction = 0;
......
...@@ -65,7 +65,7 @@ export class SidebarComponent implements OnInit { ...@@ -65,7 +65,7 @@ export class SidebarComponent implements OnInit {
openProfile() { openProfile() {
this.signaturesService.sideNavRigtDatas = { this.signaturesService.sideNavRigtDatas = {
mode : 'profile', mode : 'profile',
width : '99', width : '650px',
locked : true, locked : true,
}; };
this.snavLeftComponent.close(); this.snavLeftComponent.close();
......
...@@ -190,4 +190,8 @@ mat-accordion mat-expansion-panel { ...@@ -190,4 +190,8 @@ mat-accordion mat-expansion-panel {
height: auto; height: auto;
} }
} }
}
.mat-drawer {
max-width: 99%;
} }
\ 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