mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
31 lines
626 B
SCSS
31 lines
626 B
SCSS
@mixin adf-task-list-header-theme($theme) {
|
|
$primary: map-get($theme, primary);
|
|
|
|
.adf {
|
|
&-controls {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
&-edit-controls {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-left: auto;
|
|
}
|
|
|
|
&-switch-to-edit-mode,
|
|
&-save-edit-mode {
|
|
color: mat-color($primary);
|
|
}
|
|
|
|
&-cancel-edit-mode,
|
|
&-claim-controls {
|
|
color: rgb(131, 131, 131);
|
|
}
|
|
|
|
&-card-container {
|
|
font-family: inherit;
|
|
}
|
|
}
|
|
}
|