mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
Fix input stylings for adf-people-search and modify existing fix for form inputs (#2405)
This commit is contained in:
committed by
Maurizio Vitale
parent
1edf5623fc
commit
84d4a1b6ba
@@ -39,6 +39,6 @@ form-field {
|
|||||||
.mat-input-element {
|
.mat-input-element {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
padding-top: 8px;
|
padding-top: 8px;
|
||||||
line-height: 20px;
|
line-height: normal;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -3,9 +3,8 @@
|
|||||||
$accent: map-get($theme, accent);
|
$accent: map-get($theme, accent);
|
||||||
$warn: map-get($theme, warn);
|
$warn: map-get($theme, warn);
|
||||||
|
|
||||||
:host {
|
.adf-people-search {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
|
||||||
|
|
||||||
.activiti-label {
|
.activiti-label {
|
||||||
font-weight: bolder;
|
font-weight: bolder;
|
||||||
@@ -25,6 +24,10 @@
|
|||||||
|
|
||||||
.search-text-container {
|
.search-text-container {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
|
input {
|
||||||
|
line-height: normal;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.search-list-container {
|
.search-list-container {
|
||||||
@@ -70,4 +73,5 @@
|
|||||||
height: 40px;
|
height: 40px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { Component, Directive, EventEmitter, Input, OnInit, Output } from '@angular/core';
|
import { Component, Directive, EventEmitter, Input, OnInit, Output, ViewEncapsulation } from '@angular/core';
|
||||||
import { FormControl } from '@angular/forms';
|
import { FormControl } from '@angular/forms';
|
||||||
import { Observable } from 'rxjs/Observable';
|
import { Observable } from 'rxjs/Observable';
|
||||||
import { User } from '../models/user.model';
|
import { User } from '../models/user.model';
|
||||||
@@ -23,7 +23,11 @@ import { User } from '../models/user.model';
|
|||||||
@Component({
|
@Component({
|
||||||
selector: 'adf-people-search, activiti-people-search',
|
selector: 'adf-people-search, activiti-people-search',
|
||||||
templateUrl: './people-search.component.html',
|
templateUrl: './people-search.component.html',
|
||||||
styleUrls: ['./people-search.component.scss']
|
styleUrls: ['./people-search.component.scss'],
|
||||||
|
host: {
|
||||||
|
'class': 'adf-people-search'
|
||||||
|
},
|
||||||
|
encapsulation: ViewEncapsulation.None
|
||||||
})
|
})
|
||||||
|
|
||||||
export class PeopleSearchComponent implements OnInit {
|
export class PeopleSearchComponent implements OnInit {
|
||||||
|
Reference in New Issue
Block a user