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

View File

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