Files
alfresco-ng2-components/ng2-components/ng2-alfresco-core/src/components/info-drawer/info-drawer-layout.component.scss
2017-09-05 15:16:41 +01:00

40 lines
960 B
SCSS

@mixin mat-info-drawer-theme($theme) {
$background: map-get($theme, background);
.adf {
&-info-drawer-layout {
width: 350px;
display: block;
padding: 8px 0;
background-color: mat-color($background, dialog);
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.27);
&-header {
padding: 8px 24px 24px 24px;
display: flex;
justify-content: space-between;
font-size: 20px;
&-buttons {
md-icon {
cursor: pointer;
}
}
}
&-content {
padding: 10px;
> * {
margin-bottom: 20px;
display: block;
}
> *:last-child {
margin-bottom: 0;
}
}
}
}
}