32 lines
934 B
PHP
32 lines
934 B
PHP
<div class="photo-actions" style="margin-top:12px; display:flex; gap:12px; width:100%; align-items:center;">
|
|
|
|
<!-- Lotto mescola -->
|
|
<button class="photo-btn"
|
|
data-type="lotto_mescola"
|
|
data-production="<?= $r['id'] ?>"
|
|
title="Foto Lotti Mescola">
|
|
<i class="bi bi-box-seam" style="font-size:1.8rem; color:#334155;"></i>
|
|
</button>
|
|
|
|
<!-- Problemi -->
|
|
<button class="photo-btn"
|
|
data-type="problema"
|
|
data-production="<?= $r['id'] ?>"
|
|
title="Foto Problemi">
|
|
<i class="bi bi-exclamation-triangle" style="font-size:1.8rem; color:#b91c1c;"></i>
|
|
</button>
|
|
|
|
<!-- 🔥 SPAZIO PER PORTARE A DESTRA -->
|
|
<div style="flex-grow:1;"></div>
|
|
|
|
<!-- 🔵 ICONA QUALITÀ -->
|
|
<button class="photo-btn qc-btn"
|
|
data-production="<?= $r['id'] ?>"
|
|
title="Controlli Qualità">
|
|
<i class="bi bi-droplet-half"></i>
|
|
</button>
|
|
|
|
|
|
|
|
|
|
</div> |