Fix input stylings for adf-people-search and modify existing fix for form inputs (#2405)

This commit is contained in:
Popovics András
2017-10-02 14:32:06 +01:00
committed by Maurizio Vitale
parent 1edf5623fc
commit 84d4a1b6ba
3 changed files with 72 additions and 64 deletions

View File

@@ -3,71 +3,75 @@
$accent: map-get($theme, accent);
$warn: map-get($theme, warn);
:host {
.adf-people-search {
width: 100%;
}
.activiti-label {
font-weight: bolder;
}
.fix-element-user-list {
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
}
.search-text-header {
font-weight: bold;
opacity: 0.54;
}
.search-text-container {
width: 100%;
}
.search-list-container {
max-height: 152px;
width: 100%;
overflow-y: auto;
}
adf-people-list /deep/ adf-datatable /deep/ thead {
display: none;
}
.search-list-action-container {
border-top: 1px solid #eee;
text-align: right;
padding: 5px 0px;
margin-top: 5px;
> button {
opacity: 0.54;
.activiti-label {
font-weight: bolder;
&:hover {
color: mat-color($primary);
}
.fix-element-user-list {
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
}
.search-text-header {
font-weight: bold;
opacity: 0.54;
}
.search-text-container {
width: 100%;
input {
line-height: normal;
}
}
}
.people-pic {
background: mat-color($primary);
width: 30px;
padding: 10px 5px;
border-radius: 90%;
color: #fff;
text-align: center;
font-weight: bolder;
font-size: 18px;
text-transform: uppercase;
vertical-align: text-bottom;
}
.people-img {
border-radius: 90%;
width: 40px;
height: 40px;
vertical-align: middle;
.search-list-container {
max-height: 152px;
width: 100%;
overflow-y: auto;
}
adf-people-list /deep/ adf-datatable /deep/ thead {
display: none;
}
.search-list-action-container {
border-top: 1px solid #eee;
text-align: right;
padding: 5px 0px;
margin-top: 5px;
> button {
opacity: 0.54;
font-weight: bolder;
&:hover {
color: mat-color($primary);
}
}
}
.people-pic {
background: mat-color($primary);
width: 30px;
padding: 10px 5px;
border-radius: 90%;
color: #fff;
text-align: center;
font-weight: bolder;
font-size: 18px;
text-transform: uppercase;
vertical-align: text-bottom;
}
.people-img {
border-radius: 90%;
width: 40px;
height: 40px;
vertical-align: middle;
}
}
}

View File

@@ -15,7 +15,7 @@
* 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 { Observable } from 'rxjs/Observable';
import { User } from '../models/user.model';
@@ -23,7 +23,11 @@ import { User } from '../models/user.model';
@Component({
selector: 'adf-people-search, activiti-people-search',
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 {