mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ADF-4339] Fix documentList and ContentServices UI for IE11 * [ADF-4339] Fixed syntax mistake
18 lines
736 B
HTML
18 lines
736 B
HTML
<mat-sidenav-container>
|
|
<mat-sidenav
|
|
[position]="position"
|
|
[disableClose]="!isMobileScreenSize"
|
|
[ngClass]="{ 'adf-sidenav--hidden': hideSidenav }"
|
|
[@sidenavAnimation]="sidenavAnimationState"
|
|
[opened]="!isMobileScreenSize"
|
|
[mode]="isMobileScreenSize ? 'over' : 'side'">
|
|
<ng-content sidenav select="[app-layout-navigation]"></ng-content>
|
|
</mat-sidenav>
|
|
|
|
<div>
|
|
<div class="adf-rtl-container-alignment adf-container-full-width" [@contentAnimationLeft]="getContentAnimationStateLeft()" [@contentAnimationRight]="getContentAnimationStateRight()">
|
|
<ng-content select="[app-layout-content]"></ng-content>
|
|
</div>
|
|
</div>
|
|
</mat-sidenav-container>
|