mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ADF-3339] added test component for header * [APM-3339] remove lint errors * [ADF-3339] solved lint error * [ADF-3339] removed numbers from tests
55 lines
1.2 KiB
SCSS
55 lines
1.2 KiB
SCSS
@mixin adf-header-layout-theme($theme) {
|
|
$primary: map-get($theme, primary);
|
|
$accent: map-get($theme, accent);
|
|
$background: map-get($theme, background);
|
|
|
|
adf-layout-header .mat-toolbar-single-row {
|
|
|
|
color: mat-color($primary, default-contrast) !important;
|
|
position: relative;
|
|
padding: 0 24px;
|
|
|
|
.adf-menu-icon {
|
|
position: relative;
|
|
margin-left: -11px;
|
|
margin-right: 3px;
|
|
}
|
|
|
|
.adf-app-logo {
|
|
position: relative;
|
|
height: 28px;
|
|
width: 28px;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
.adf-header-delimiter {
|
|
height: 24px;
|
|
width: 2px;
|
|
background-color: mat-color($primary, default-contrast);
|
|
margin-right: 16px;
|
|
}
|
|
|
|
.adf-app-layout-user-profile {
|
|
margin-right: 16px;
|
|
}
|
|
|
|
.adf-userinfo-container {
|
|
flex-direction: row;
|
|
padding: 0;
|
|
}
|
|
|
|
.adf-userinfo-name{
|
|
padding-right: 8px;
|
|
}
|
|
|
|
@media screen and ($mat-xsmall) {
|
|
.adf-app-logo,
|
|
.adf-app-title {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|