mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
20 lines
449 B
SCSS
20 lines
449 B
SCSS
@mixin adf-search-autocomplete-theme($theme) {
|
|
$primary: map-get($theme, primary);
|
|
$accent: map-get($theme, accent);
|
|
$warn: map-get($theme, warn);
|
|
$foreground: map-get($theme, foreground);
|
|
$background: map-get($theme, background);
|
|
$mat-menu-border-radius: 2px !default;
|
|
|
|
.adf {
|
|
|
|
&-search-hide {
|
|
visibility: hidden;
|
|
}
|
|
|
|
&-search-show {
|
|
visibility: visible;
|
|
}
|
|
}
|
|
}
|