src/ApplicationBundle/Resources/views/framework/_amount_dialog_css.html.twig line 1

Open in your IDE?
  1. {#
  2.   framework/_amount_dialog_css.html.twig
  3.   ==========================================================================
  4.   Amount/qty alignment + jQuery dialog chrome
  5.   De-duplicated from 15 templates. Lifted VERBATIM — same rules, same order — and
  6.   each call site keeps the include AT THE POSITION its <style> occupied, so the
  7.   cascade is unchanged. This is a de-duplication, not a restyle.
  8.   The block is STATIC (no Twig interpolation), so unlike the per-company theme
  9.   block it depends on nothing in the surrounding context.
  10.   SIBLING VARIANTS EXIST: _amount_card_dialog_css, _amount_align_only_css, _amount_selectize_css, _amount_card_btn_css
  11.   Those are byte-different blocks styling the same area. They are deliberately
  12.   separate: they do not share their rule blocks, so folding them into one file
  13.   would change what some pages render. Do not merge them without diffing first.
  14.   ==========================================================================
  15. #}
  16. <style type="text/css">
  17.     .trans_amount {
  18.         text-align: right !important;
  19.         vertical-align: middle !important;
  20.     }
  21.     .qty_amount {
  22.         text-align: center !important;
  23.         vertical-align: middle !important;
  24.     }
  25.     .no-bottom-border {
  26.         border-bottom: 0px !important;
  27.     }
  28.     td, th {
  29.         /*text-align: right !important;*/
  30.         /*vertical-align: middle !important;*/
  31.     }
  32.     .ui-dialog {
  33.         /*position:absolute;*/
  34.         /*top:70px;*/
  35.         /*left:600px;*/
  36.         z-index: 1100;
  37.     }
  38. </style>