Add bold styling for low ROAS values and enhance product display

This commit is contained in:
2025-03-08 11:31:20 +01:00
parent c150f6fb39
commit ce9c9a1507
5 changed files with 15 additions and 2728 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -61,7 +61,7 @@ class Products
\S::number_display( $row['cpc'] ),
round( $row['conversions'], 2 ),
\S::number_display( $row['conversions_value'] ),
$row['roas'] <= $row['min_roas'] ? '<span class="text-danger">' . $row['roas'] . '</span>' : $row['roas'],
$row['roas'] <= $row['min_roas'] ? '<span class="text-danger text-bold">' . $row['roas'] . '</span>' : $row['roas'],
'<input type="text" class="form-control min_roas" product_id="' . $row['product_id'] . '" value="' . $row['min_roas'] . '" style="width: 100px;">',
'',
'<input type="text" class="form-control custom_label_4" product_id="' . $row['product_id'] . '" value="' . $custom_label_4 . '">'

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -12,6 +12,10 @@ $cBlack: #4e5e6a;
text-align: right;
}
.text-bold {
font-weight: 900 !important;
}
.nowrap {
white-space: nowrap;
}