mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
* type fixes * import fixes * fix typos * fix warning for private props that init in ctor only * typing fixes * typing fixes * style cleanup * fix test template
21 lines
562 B
SCSS
21 lines
562 B
SCSS
@import '~@angular/material/theming';
|
|
|
|
@mixin adf-login-dialog-panel-theme($theme) {
|
|
$primary: map-get($theme, primary);
|
|
$accent: map-get($theme, accent);
|
|
$warn: map-get($theme, warn);
|
|
$background: map-get($theme, background);
|
|
$foreground: map-get($theme, foreground);
|
|
$text-color-primary: mat-color($foreground, text);
|
|
|
|
.adf-panel-login-dialog-component .adf-login-content {
|
|
.mat-card-actions,
|
|
.adf-login-button,
|
|
.adf-login__remember-me,
|
|
.adf-copyright {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
}
|