mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-2930] general purpose "Empty Page" component (#3296)
* empty content component * fix selector name * style fixes * cleanup code * docs for empty content * update docs * update docs * use typography for icon * layout fixes for Login (ported from ACA)
This commit is contained in:
@@ -6,6 +6,10 @@
|
||||
$foreground: map-get($theme, foreground);
|
||||
$text-color-primary: mat-color($foreground, text);
|
||||
|
||||
.adf-login {
|
||||
@include flex-column;
|
||||
}
|
||||
|
||||
.adf-login-content {
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
|
@@ -48,8 +48,11 @@ enum LoginSteps {
|
||||
selector: 'adf-login',
|
||||
templateUrl: './login.component.html',
|
||||
styleUrls: ['./login.component.scss'],
|
||||
host: { '(blur)': 'onBlur($event)' },
|
||||
encapsulation: ViewEncapsulation.None
|
||||
encapsulation: ViewEncapsulation.None,
|
||||
host: {
|
||||
'class': 'adf-login',
|
||||
'(blur)': 'onBlur($event)'
|
||||
}
|
||||
})
|
||||
export class LoginComponent implements OnInit {
|
||||
|
||||
|
Reference in New Issue
Block a user