Add fieldset background to TO fields

This commit is contained in:
luis cielak 2018-08-16 10:53:59 -04:00 committed by richard-dds
parent 7471d062e1
commit 453d45bf36
2 changed files with 32 additions and 21 deletions

View File

@ -73,5 +73,13 @@
} }
} }
} }
&--warning {
@include alert-level('warning');
}
&--error {
@include alert-level('error');
}
} }

View File

@ -105,42 +105,45 @@
level='warning' level='warning'
) }} ) }}
{{ OptionsInput( <fieldset class="form__sub-fields form__sub-fields--warning">
f.funding_type {{ OptionsInput(
f.funding_type
) }} ) }}
{{ TextInput( {{ TextInput(
f.funding_type_other f.funding_type_other
) }} ) }}
{{ TextInput( {{ TextInput(
f.clin_0001,placeholder="50,000", f.clin_0001,placeholder="50,000",
validation='integer' validation='integer'
) }} ) }}
{{ TextInput( {{ TextInput(
f.clin_0003,placeholder="13,000", f.clin_0003,placeholder="13,000",
validation='integer' validation='integer'
) }} ) }}
{{ TextInput( {{ TextInput(
f.clin_1001,placeholder="30,000", f.clin_1001,placeholder="30,000",
validation='integer' validation='integer'
) }} ) }}
{{ TextInput( {{ TextInput(
f.clin_1003,placeholder="7,000", f.clin_1003,placeholder="7,000",
validation='integer' validation='integer'
) }} ) }}
{{ TextInput( {{ TextInput(
f.clin_2001,placeholder="30,000", f.clin_2001,placeholder="30,000",
validation='integer' validation='integer'
) }} ) }}
{{ TextInput(f.clin_2003,placeholder="7,000", {{ TextInput(
validation='integer' f.clin_2003,placeholder="7,000",
validation='integer'
) }} ) }}
</fieldset>
{% endautoescape %} {% endautoescape %}