[ADF-5406] SCSS and HTML template path fixes (#7063)

* remove useless mixin

* fix scss paths

* style fixes

* fix styles

* style fixes

* style fixes

* style fixes

* style fixes

* insights fixes

* css and template path fixes

* bug fixes
This commit is contained in:
Denys Vuika
2021-06-01 09:21:00 +01:00
committed by GitHub
parent 9e0000a307
commit e94b2f99bd
229 changed files with 557 additions and 934 deletions

View File

@@ -1,20 +1,8 @@
@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;
}
.adf-panel-login-dialog-component .adf-login-content {
.mat-card-actions,
.adf-login-button,
.adf-login__remember-me,
.adf-copyright {
display: none;
}
}

View File

@@ -1,16 +1,4 @@
@import '~@angular/material/theming';
@mixin adf-login-dialog-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-login-dialog-content adf-login .adf-login-content .adf-login-card-wide {
padding: 0;
box-shadow: none;
}
.adf-login-dialog-content adf-login .adf-login-content .adf-login-card-wide {
padding: 0;
box-shadow: none;
}

View File

@@ -1,5 +1,3 @@
@import '~@angular/material/theming';
@mixin adf-login-theme($theme) {
$primary: map-get($theme, primary);
$accent: map-get($theme, accent);

View File

@@ -53,7 +53,6 @@ interface ValidationMessage {
@Component({
selector: 'adf-login',
templateUrl: './login.component.html',
styleUrls: ['./login.component.scss'],
encapsulation: ViewEncapsulation.None,
host: {
class: 'adf-login'