styles added
This commit is contained in:
parent
f4476ca690
commit
e23a184166
|
@ -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">
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
@import "./variables";
|
@import "./variables";
|
||||||
|
|
||||||
vn-order-summary .summary > div > vn-horizontal > vn-one {
|
vn-order-summary .summary{
|
||||||
|
max-width: $width-large;
|
||||||
|
& > div > vn-horizontal > vn-one {
|
||||||
min-width: 10em !important;
|
min-width: 10em !important;
|
||||||
|
|
||||||
&.taxes {
|
&.taxes {
|
||||||
|
@ -14,3 +16,4 @@ vn-order-summary .summary > div > vn-horizontal > vn-one {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue