Skip to content

Commit b1cad8d

Browse files
authored
ENGCOM-6020: Replace deprecated "big" element #24883
2 parents 8d070c5 + dcad69e commit b1cad8d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

app/code/Magento/Sales/view/adminhtml/templates/order/details.phtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ $_order = $block->getOrder() ?>
8181
</tr>
8282
<?php endif; ?>
8383
<tr bgcolor="#DEE5E8">
84-
<td colspan="2" align="right" style="padding:3px 9px"><strong><big><?= $block->escapeHtml(__('Grand Total')) ?></big></strong></td>
85-
<td align="right" style="padding:6px 9px"><strong><big><?= /* @noEscape */ $_order->formatPrice($_order->getGrandTotal()) ?></big></strong></td>
84+
<td colspan="2" align="right" style="padding:3px 9px"><strong style="font-size: larger"><?= $block->escapeHtml(__('Grand Total')) ?></strong></td>
85+
<td align="right" style="padding:6px 9px"><strong style="font-size: larger"><?= /* @noEscape */ $_order->formatPrice($_order->getGrandTotal()) ?></strong></td>
8686
</tr>
8787
</tfoot>
8888
</table>

app/code/Magento/Sales/view/adminhtml/templates/order/totals/due.phtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
?>
77
<?php if ($block->getCanDisplayTotalDue()) : ?>
88
<tr>
9-
<td class="label"><big><strong><?= $block->escapeHtml(__('Total Due')) ?></strong></big></td>
10-
<td class="emph"><big><?= /* @noEscape */ $block->displayPriceAttribute('total_due', true) ?></big></td>
9+
<td class="label"><strong style="font-size: larger"><?= $block->escapeHtml(__('Total Due')) ?></strong></td>
10+
<td class="emph" style="font-size: larger"><?= /* @noEscape */ $block->displayPriceAttribute('total_due', true) ?></td>
1111
</tr>
1212
<?php endif; ?>

app/code/Magento/Sales/view/adminhtml/templates/order/totals/grand.phtml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99

1010
<tr>
1111
<td class="label">
12-
<strong><big>
12+
<strong style="font-size: larger">
1313
<?php if ($block->getGrandTotalTitle()) : ?>
1414
<?= $block->escapeHtml($block->getGrandTotalTitle()) ?>
1515
<?php else : ?>
1616
<?= $block->escapeHtml(__('Grand Total')) ?>
1717
<?php endif; ?>
18-
</big></strong>
18+
</strong>
1919
</td>
20-
<td class="emph"><big><?= /* @noEscape */ $block->displayPriceAttribute('grand_total', true) ?></big></td>
20+
<td class="emph" style="font-size: larger"><?= /* @noEscape */ $block->displayPriceAttribute('grand_total', true) ?></td>
2121
</tr>

0 commit comments

Comments
 (0)