mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* add stylelint * fix style first part * fix style second part * fix style third part * fix style fourth part * Fix e2e tests first part * Fix e2e tests second part * Rebase branch * fix style third part * fix style fourth part * Fix list error * fix insights * fix style abotu component * Fix e2e tests second part * Rebase branch * fix style third part * fix style fourth part * Fix list error * Fix e2e tests second part * Rebase branch * fix style third part * fix style fourth part * Fix list error * [ADF-3746] Rebase branch * Fix e2e tests second part * Rebase branch * fix style third part * fix style fourth part * Fix list error * Fix e2e tests second part * Rebase branch * Fix list error * fix new style added * tslint fix * [ADF-3746] Fix scss errors on Process Filters Cloud component
60 lines
1.3 KiB
SCSS
60 lines
1.3 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-app-title {
|
|
cursor: pointer;
|
|
outline: none;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|