mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
40 lines
960 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|