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

Open in your IDE?
  1. {#
  2.   framework/_verifyotpmodal_css.html.twig
  3.   ==========================================================================
  4.   Shared block: #verifyOtpModal .otp_in, #verifyOtpModal input[type=n, .otp_ajax_form_submit, .otp_ajax_form_submit.ready
  5.   De-duplicated from 2 templates. Lifted VERBATIM — same rules, same order —
  6.   and each call site keeps the include AT THE POSITION its <style> occupied, so
  7.   the cascade is unchanged. This is a de-duplication, not a restyle.
  8.   Self-contained: the block interpolates nothing from the surrounding context.
  9.   NOTE: included from CompanyGroupBundle templates as well as ApplicationBundle
  10.   ones. Both bundles share one Twig environment so @Application resolves from
  11.   either; those templates are near-copies of each other to begin with.
  12.   ==========================================================================
  13. #}
  14. <style>
  15.     #verifyOtpModal .otp_in
  16.     {
  17.         width: 24% !important;;
  18.         font-size: 3rem !important;
  19.         text-align: center !important;
  20.     }
  21.     /* Chrome, Safari, Edge, Opera */
  22.     #verifyOtpModal input::-webkit-outer-spin-button,
  23.     #verifyOtpModal input::-webkit-inner-spin-button {
  24.         -webkit-appearance: none;
  25.         margin: 0;
  26.     }
  27.     /* Firefox */
  28.     #verifyOtpModal input[type=number] {
  29.         -moz-appearance: textfield;
  30.     }
  31.     .otp_ajax_form_submit {
  32.         width: 100%;
  33.         margin-left: 0%;
  34.         border-radius: 4px;
  35.         font-size: 14px;
  36.         font-weight: 600;
  37.         background: #DDDDDD !important;
  38.         color: #737373 !important;
  39.         font-family: 'Poppins', sans-serif;
  40.         text-transform: initial !important;
  41.     }
  42.     .otp_ajax_form_submit.ready {
  43.         background: #1d5b9e !important;
  44.         color: white !important;;
  45.     }
  46. </style>