{#
framework/_amount_dialog_css.html.twig
==========================================================================
Amount/qty alignment + jQuery dialog chrome
De-duplicated from 15 templates. Lifted VERBATIM — same rules, same order — and
each call site keeps the include AT THE POSITION its <style> occupied, so the
cascade is unchanged. This is a de-duplication, not a restyle.
The block is STATIC (no Twig interpolation), so unlike the per-company theme
block it depends on nothing in the surrounding context.
SIBLING VARIANTS EXIST: _amount_card_dialog_css, _amount_align_only_css, _amount_selectize_css, _amount_card_btn_css
Those are byte-different blocks styling the same area. They are deliberately
separate: they do not share their rule blocks, so folding them into one file
would change what some pages render. Do not merge them without diffing first.
==========================================================================
#}
<style type="text/css">
.trans_amount {
text-align: right !important;
vertical-align: middle !important;
}
.qty_amount {
text-align: center !important;
vertical-align: middle !important;
}
.no-bottom-border {
border-bottom: 0px !important;
}
td, th {
/*text-align: right !important;*/
/*vertical-align: middle !important;*/
}
.ui-dialog {
/*position:absolute;*/
/*top:70px;*/
/*left:600px;*/
z-index: 1100;
}
</style>