mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
18 lines
440 B
SCSS
18 lines
440 B
SCSS
@mixin aca-context-menu-theme($theme) {
|
|
$foreground: map-get($theme, foreground);
|
|
$primary: map-get($theme, primary);
|
|
|
|
.aca-context-menu {
|
|
@include angular-material-theme($theme);
|
|
|
|
&__separator {
|
|
border-top-color: mat-color($foreground, divider);
|
|
}
|
|
|
|
&__more-actions::after {
|
|
border-color: transparent;
|
|
border-left-color: mat-color($primary);
|
|
}
|
|
}
|
|
}
|