{#
framework/_legacy_amount_align_css.html.twig
==============================================================================
This exact block was copy-pasted into 96 templates across 11 modules. Lifted
here VERBATIM — same rules, same order, no token conversion — so the render is
byte-identical and this stays a de-duplication, not a restyle.
Each call site keeps the include AT THE POSITION the <style> occupied, so the
cascade is unchanged. (Hoisting blocks to the top of a file is what broke two
pages on the first attempt at this: a later block interpolated a variable that
is {% set %} further down.)
The block is static — no Twig interpolation — which is why it was safe to start
with. Note `.trans_amount` is ALSO declared, differently and with !important, in
a separate block copied into 34 more templates; unifying the two is Phase 3
(tokenise), not this pass.
==============================================================================
#}
<style type="text/css">
body {
/*-moz-transform: scale(0.5, 0.5); !* Moz-browsers *!*/
zoom: 1; /* Other non-webkit browsers */
zoom: 100%; /* Webkit browsers */
}
/*.modal-dialog {*/
/*width: 75%;*/
/*}*/
.trans_amount {
text-align: right;
}
</style>