mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ADF-4402] remove styling of non-existent items * [ADF-4402] remove not needed style - bcs overwritten by style from core * [ADF-4559] remove demo-shell only class from core styling - use class name from core component for styling * [ADF-4402] remove not used styling code - .adf-app-layout-toolbar no longer exists, so no need keep its style * [ADF-4402] move style from demo-shell to core - same style was needed in ACA, so probably should be best in core ADF * [ADF-4402] remove not used styling code * [ADF-4402] move adf-toolbar-title style from demo-shell to core * [ADF-4402] remove not used styling code * [ADF-4402] use existing css class * [ADF-4402] remove style already set from pagination component * [ADF-4402] remove not used styling code * [ADF-4402] viewer toolbar width
65 lines
1.6 KiB
SCSS
65 lines
1.6 KiB
SCSS
@mixin adf-layout-container-theme($theme) {
|
|
$background: map-get($theme, background);
|
|
$foreground: map-get($theme, foreground);
|
|
$adf-layout-container-height: 100% !default;
|
|
|
|
adf-layout-container {
|
|
display: block;
|
|
width: 100%;
|
|
height: $adf-layout-container-height;
|
|
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;
|
|
}
|
|
|
|
mat-sidenav-content > div {
|
|
display: flex;
|
|
height: $adf-layout-container-height;
|
|
|
|
> div {
|
|
flex: auto;
|
|
}
|
|
}
|
|
}
|