fix placeholder people

This commit is contained in:
Eugenio Romano 2018-08-09 20:06:47 +01:00
parent 8f407a4f93
commit 5e57b7f9d4
2 changed files with 7 additions and 2 deletions

View File

@ -32,7 +32,7 @@
* limitations under the License.
*/
import { Component, Inject, OnInit } from '@angular/core';
import { Component, Inject, OnInit, ViewEncapsulation } from '@angular/core';
import { FormModel, FormService, FormOutcomeEvent } from '@alfresco/adf-core';
import { InMemoryFormService } from '../../services/in-memory-form.service';
import { DemoForm } from './demo-form';
@ -43,7 +43,8 @@ import { DemoForm } from './demo-form';
styleUrls: ['form.component.css'],
providers: [
{ provide: FormService, useClass: InMemoryFormService }
]
],
encapsulation: ViewEncapsulation.None
})
export class FormComponent implements OnInit {

View File

@ -7,6 +7,10 @@
&-people-widget {
width: 100%;
.mat-form-field-label-wrapper {
top: 10px !important;
}
}
&-people-widget-list {