mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* single contentAnimation state * fine tune contentAnimation state based on direction and position * tets * fix mock component inputs * use native direction attribute * update docs * pass direction to calculate sidenav layout * update test * fix unit test * remove dialogs directionality workaround * set document directionality service * remove context menu direction workaround * remove unneeded dependencies * remove direction style workaround * remove permission icon direction * remove sidenav layout direction attribute * update docs * update sidenav layout direction * test * remove document type * update test dependencies * clear storage before test * test * fix dl gap * try to fix Uncaught QuotaExceededError * fix QuotaExceededError * fix tests * fix tests
55 lines
1.4 KiB
SCSS
55 lines
1.4 KiB
SCSS
@mixin adf-layout-container-theme($theme) {
|
|
$background: map-get($theme, background);
|
|
$foreground: map-get($theme, foreground);
|
|
|
|
adf-layout-container {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.adf-container-full-width {
|
|
width: inherit;
|
|
}
|
|
/* query for Microsoft IE 11*/
|
|
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
.adf-container-full-width {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
mat-sidenav-content.mat-drawer-content.mat-sidenav-content {
|
|
margin: 0!important;
|
|
}
|
|
|
|
.adf-sidenav--hidden {
|
|
visibility: hidden !important;
|
|
width: 0 !important;
|
|
transform: unset !important;
|
|
opacity: 0 !important;
|
|
}
|
|
|
|
.mat-sidenav-container {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mat-sidenav {
|
|
overflow: hidden;
|
|
border-right: 1px solid mat-color($foreground, text, 0.07);
|
|
background-color: mat-color($background, background);
|
|
}
|
|
|
|
mat-sidenav-content.mat-sidenav-content,
|
|
.mat-drawer-transition .mat-drawer-content {
|
|
margin-left: 0 !important;
|
|
transform: unset !important;
|
|
transition-property: unset !important;
|
|
transition-duration: unset !important;
|
|
transition-timing-function: unset !important;
|
|
}
|
|
}
|