hey, thanks i'm using this code to change the background of a complete row of and order.
check out this code on line 123 of admin/component/hika/view/ order/tmpl/listing.php
<?php
if($row->order_status == 'created'){
echo ' style="background-color: #bafcff !important; border: 2px solid #62b7bb !important;" ';
}elseif($row->order_status == 'confirmed'){
echo ' style="background-color: #bafcff !important; border: 2px solid #62b7bb !important;" ';
}elseif($row->order_status == 'cancelled'){
echo ' style="background-color: #bafcff !important; border: 2px solid #62b7bb !important;" ';
}elseif($row->order_status == 'refunded'){
echo ' style="background-color: #bafcff !important; border: 2px solid #62b7bb !important;" ';
}elseif($row->order_status == 'shipped'){
echo ' style="background-color: #bafcff !important; border: 2px solid #62b7bb !important;" ';
}elseif($row->order_status == 'delivered'){
echo ' style="background-color: #c5ff85 !important; border: 2px solid #6d9045 !important;" ';
}else{
// ....
}?>
the result is not what i'm looking for, i guess i have to some how define the order id that this row is about some where beside order_status
to seperate each row from outside and sync the background of the row and the order status inside !