refs #6199 Requested changes
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Guillermo Bonet 2023-10-11 07:39:41 +02:00
parent d2ce920f13
commit 2b41bf7eb1
4 changed files with 17 additions and 9 deletions

View File

@ -15,5 +15,5 @@ Generic: Genérico
This item does need a photo: Este artículo necesita una foto
Do photo: Hacer foto
Recycled Plastic: Plástico reciclado
Non recycled plastic: Plástico no
Non recycled plastic: Plástico no reciclado
Minimum sales quantity: Cantidad mínima de venta

View File

@ -115,7 +115,7 @@ module.exports = Self => {
i.stars,
tci.price,
tci.available,
w.lastName lastName,
w.lastName,
w.firstName,
tci.priceKg,
ink.hex,

View File

@ -37,16 +37,14 @@
value="{{::item.value7}}">
</vn-label-value>
</div>
<div class="container text-right text-caption" ng-if="::item.minQuantity" style="
display: flex;
align-items: center;
justify-content: flex-end;
color: #fb5252;
">
<div
class="container text-right text-caption"
ng-if="::item.minQuantity"
ng-class="'text-caption-reduced'">
<vn-icon
icon="production_quantity_limits"
translate-attr="{title: 'Minimal quantity'}"
style="font-size: 18px; margin-right: 3px;">
ng-class="'min-quantity-icon'">
</vn-icon>
<span>{{::item.minQuantity}}</span>
</div>

View File

@ -44,4 +44,14 @@ vn-order-catalog {
height: 30px;
position: relative;
}
.text-caption-reduced {
display: flex;
align-items: center;
justify-content: flex-end;
color: tomato;
}
.min-quantity-icon {
font-size: 18px;
margin-right: 3px;
}
}