Dears,
I want to use a bigger size for Text input fields used on survey templates.
On the survey module, especially on the views folder, there is the survey_templates.xml file, I found the template responsible of generating text input fields :
<template id="textbox" name="Text box"> <input type="text" class="form-control" t-att-name="prefix"/> </template>
I didn't find the class "form-control" to try modify something there, could you tell me where can I find it ?
I also want to try to add the style attribute: style="size:40px;", so the text input will be like :
<input type="text" style="size:40px;" class="form-control" t-att-name="prefix"/>
All your suggestions will be welcome.