Ellipsize class & sales person on client descriptor

This commit is contained in:
Joan Sanchez 2018-04-16 09:10:43 +02:00
parent be3d796545
commit 5550b9cbba
2 changed files with 10 additions and 1 deletions

View File

@ -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

View File

@ -236,3 +236,9 @@ fieldset[disabled] .mdl-textfield .mdl-textfield__label, .mdl-textfield.is-disab
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
}