Ellipsize class & sales person on client descriptor
This commit is contained in:
parent
be3d796545
commit
5550b9cbba
|
@ -24,6 +24,9 @@
|
||||||
<span ng-if="$ctrl.client.creditInsurance">{{$ctrl.client.creditInsurance | currency:'€':2}}</span>
|
<span ng-if="$ctrl.client.creditInsurance">{{$ctrl.client.creditInsurance | currency:'€':2}}</span>
|
||||||
<span ng-if="!$ctrl.client.creditInsurance">-</span>
|
<span ng-if="!$ctrl.client.creditInsurance">-</span>
|
||||||
</div>
|
</div>
|
||||||
|
<div>
|
||||||
|
<vn-label translate>Sales person</vn-label> {{$ctrl.client.salesPerson.firstName}} {{$ctrl.client.salesPerson.name}}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<vn-horizontal pad-medium-bottom class="footer">
|
<vn-horizontal pad-medium-bottom class="footer">
|
||||||
<vn-icon
|
<vn-icon
|
||||||
|
|
|
@ -235,4 +235,10 @@ fieldset[disabled] .mdl-checkbox .mdl-checkbox__label, .mdl-checkbox.is-disabled
|
||||||
fieldset[disabled] .mdl-textfield .mdl-textfield__label, .mdl-textfield.is-disabled.is-disabled .mdl-textfield__label {
|
fieldset[disabled] .mdl-textfield .mdl-textfield__label, .mdl-textfield.is-disabled.is-disabled .mdl-textfield__label {
|
||||||
color: rgb(255,171,64) !important;
|
color: rgb(255,171,64) !important;
|
||||||
}
|
}
|
||||||
/** END - FORM ELEMENTS DISABLED **/
|
/** END - FORM ELEMENTS DISABLED **/
|
||||||
|
|
||||||
|
.ellipsize {
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden
|
||||||
|
}
|
Loading…
Reference in New Issue