styles added

This commit is contained in:
Gerard 2019-03-22 11:56:21 +01:00
parent f4476ca690
commit e23a184166
2 changed files with 18 additions and 15 deletions

View File

@ -42,8 +42,8 @@
<vn-table class="vn-grid"> <vn-table class="vn-grid">
<vn-thead> <vn-thead>
<vn-tr> <vn-tr>
<vn-th></vn-th> <vn-th shrink></vn-th>
<vn-th number>Item</vn-th> <vn-th shrink>Item</vn-th>
<vn-th>Description</vn-th> <vn-th>Description</vn-th>
<vn-th number>Quantity</vn-th> <vn-th number>Quantity</vn-th>
<vn-th number>Price</vn-th> <vn-th number>Price</vn-th>
@ -52,7 +52,7 @@
</vn-thead> </vn-thead>
<vn-tbody> <vn-tbody>
<vn-tr ng-repeat="row in $ctrl.summary.rows track by row.id"> <vn-tr ng-repeat="row in $ctrl.summary.rows track by row.id">
<vn-td> <vn-td shrink>
<vn-icon <vn-icon
ng-show="row.visible || row.available" ng-show="row.visible || row.available"
color-main color-main
@ -61,7 +61,7 @@
</vn-icon> </vn-icon>
<vn-icon ng-show="row.reserved" icon="icon-reserva"></vn-icon> <vn-icon ng-show="row.reserved" icon="icon-reserva"></vn-icon>
</vn-td> </vn-td>
<vn-td number> <vn-td shrink>
<span <span
ng-click="$ctrl.showDescriptor($event, row.itemFk)" ng-click="$ctrl.showDescriptor($event, row.itemFk)"
class="link"> class="link">

View File

@ -1,16 +1,19 @@
@import "./variables"; @import "./variables";
vn-order-summary .summary > div > vn-horizontal > vn-one { vn-order-summary .summary{
min-width: 10em !important; max-width: $width-large;
& > div > vn-horizontal > vn-one {
min-width: 10em !important;
&.taxes { &.taxes {
border: $border-thin-light; border: $border-thin-light;
text-align: right; text-align: right;
padding: .5em !important; padding: .5em !important;
& > p { & > p {
font-size: 1.2em; font-size: 1.2em;
margin: .2em; margin: .2em;
}
} }
} }
} }