diff --git a/htdocs/product/card.php b/htdocs/product/card.php
index 7594e107995..241aec60d8e 100644
--- a/htdocs/product/card.php
+++ b/htdocs/product/card.php
@@ -1445,6 +1445,7 @@ if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action)) {
if (empty($tmpcode) && !empty($modBarCodeProduct->code_auto)) {
$tmpcode = $modBarCodeProduct->getNextValue($object, $fk_barcode_type);
}
+ print img_picto('', 'barcode', 'class="pictofixedwidth"');
print '';
print '';
}
@@ -1504,6 +1505,7 @@ if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action)) {
// Duration
if ($type == 1) {
print '
| '.$langs->trans("Duration").' | ';
+ print img_picto('', 'clock', 'class="pictofixedwidth"');
print '';
print $formproduct->selectMeasuringUnits("duration_unit", "time", (GETPOSTISSET('duration_value') ? GETPOST('duration_value', 'alpha') : 'h'), 0, 1);
@@ -1531,6 +1533,7 @@ if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action)) {
if (empty($conf->global->PRODUCT_DISABLE_WEIGHT)) {
// Brut Weight
print ' |
| '.$langs->trans("Weight").' | ';
+ print img_picto('', 'fa-balance-scale', 'class="pictofixedwidth"');
print '';
print $formproduct->selectMeasuringUnits("weight_units", "weight", GETPOSTISSET('weight_units') ?GETPOST('weight_units', 'alpha') : (empty($conf->global->MAIN_WEIGHT_DEFAULT_UNIT) ? 0 : $conf->global->MAIN_WEIGHT_DEFAULT_UNIT), 0, 2);
print ' |
';
@@ -1539,6 +1542,7 @@ if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action)) {
// Brut Length
if (empty($conf->global->PRODUCT_DISABLE_SIZE)) {
print '| '.$langs->trans("Length").' x '.$langs->trans("Width").' x '.$langs->trans("Height").' | ';
+ print img_picto('', 'fa-ruler', 'class="pictofixedwidth"');
print ' x ';
print ' x ';
print '';
@@ -1584,7 +1588,7 @@ if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action)) {
// Origin country
print ' |
| '.$langs->trans("CountryOrigin").' | ';
print '';
- print img_picto('', 'globe-americas', 'class="paddingrightonly"');
+ print img_picto('', 'globe-americas', 'class="pictofixedwidth"');
print $form->select_country((GETPOSTISSET('country_id') ? GETPOST('country_id') : $object->country_id), 'country_id', '', 0, 'minwidth300 widthcentpercentminusx maxwidth500');
if ($user->admin) {
print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1);
|