Skip to content

Commit 7d0d41e

Browse files
committed
quantità consegnata in maggiore evidenza
1 parent 0eb4d6b commit 7d0d41e

2 files changed

Lines changed: 21 additions & 2 deletions

File tree

code/resources/assets/sass/gasdotto.scss

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -383,6 +383,18 @@ table {
383383
.mobile-quantity-switch {
384384
margin-top: 10px;
385385
}
386+
387+
.booking-product-booked {
388+
display: flex;
389+
flex-direction: row;
390+
align-items: center;
391+
gap: 7px;
392+
393+
.booked-quantity {
394+
font-weight: bold;
395+
font-size: calc(var(--bs-body-font-size) * 1.5);
396+
}
397+
}
386398
}
387399

388400
.booking-editor {
@@ -465,6 +477,7 @@ i[class^='bi-hidden-'] {
465477
.header-icons {
466478
float: right;
467479
padding: 5px 7px;
480+
margin-left: 10px;
468481
border-radius: 20px;
469482
display: flex;
470483
flex-direction: row;

code/resources/views/delivery/edit.blade.php

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,10 @@
169169
</td>
170170

171171
<td>
172-
<span class="booking-product-booked">{{ printableQuantity($product->quantity, $discrete_quantity) }} {{ $product->product->printableMeasure(true) }}</span>
172+
<span class="booking-product-booked">
173+
<span class="booked-quantity">{{ printableQuantity($product->quantity, $discrete_quantity) }}</span>
174+
{{ $product->product->printableMeasure(true) }}
175+
</span>
173176
</td>
174177

175178
<td>
@@ -215,7 +218,10 @@
215218
</td>
216219

217220
<td>
218-
<span class="booking-product-booked">{{ printableQuantity($var->quantity, $discrete_quantity) }} {{ $product->product->printableMeasure(true) }}</span>
221+
<span class="booking-product-booked">
222+
<span class="booked-quantity">{{ printableQuantity($var->quantity, $discrete_quantity) }}</span>
223+
{{ $product->product->printableMeasure(true) }}
224+
</span>
219225
</td>
220226

221227
<td>

0 commit comments

Comments
 (0)