mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
* update material2 beta12 update angular2 4.4.5 * fix changed version js-api * update types hammerjs * fix test * clean old doc * fix pagination test * fix test * missing update packages * fix <mat-form-field> for select box * start task component test
52 lines
1.1 KiB
SCSS
52 lines
1.1 KiB
SCSS
@mixin adf-app-layout-theme($theme) {
|
|
$primary: map-get($theme, primary);
|
|
$minimumAppWidth: 320px;
|
|
$toolbarHeight: 64px;
|
|
|
|
.adf-app-layout {
|
|
display: block;
|
|
min-width: $minimumAppWidth;
|
|
height: 100%;
|
|
|
|
.adf-nav-container {
|
|
display: block;
|
|
min-width: $minimumAppWidth;
|
|
height: 100%;
|
|
}
|
|
|
|
.adf-sidenav-link {
|
|
&.active {
|
|
color: mat-color($primary);
|
|
}
|
|
}
|
|
|
|
&-user-profile {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
&-menu-spacer {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
&-toolbar {
|
|
height: $toolbarHeight;
|
|
line-height: $toolbarHeight;
|
|
overflow: hidden;
|
|
|
|
mat-toolbar-row {
|
|
height: $toolbarHeight;
|
|
align-items: stretch;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.adf-toolbar-link {
|
|
min-width: 0;
|
|
line-height: $toolbarHeight;
|
|
|
|
&.active {
|
|
background-color: rgba(0,0,0,.12);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |