diff --git a/assets/css/app.css b/assets/css/app.css index 135ad25c..1a5d7f5e 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -620,6 +620,10 @@ BS 4 overrides } } +.form-group > label { + font-weight: bold; +} + label:not(.form-check-label, custom-control-label) { font-weight: bold; } diff --git a/templates/Parts/edit/_orderdetails.html.twig b/templates/Parts/edit/_orderdetails.html.twig index 23bb5240..2212c1fc 100644 --- a/templates/Parts/edit/_orderdetails.html.twig +++ b/templates/Parts/edit/_orderdetails.html.twig @@ -1,4 +1,4 @@ -{% form_theme form 'Parts/edit/edit_form_styles.html.twig' %} +{% form_theme form with ['Parts/edit/edit_form_styles.html.twig', "bootstrap_4_layout.html.twig"] %}
{{ form_widget(form.minDiscountQuantity) }} {{ form_errors(form.minDiscountQuantity) }} | +{{ form_widget(form.minDiscountQuantity, {'attr': {'class': 'form-control-sm'}}) }} {{ form_errors(form.minDiscountQuantity) }} |
-
+
{{ form_widget(form.price) }}
{{ form_errors(form.price) }}
{{ form_errors(form.currency) }}
- {{ form_widget(form.currency) }}
+ {{ form_widget(form.currency, {'attr': {'class': 'selectpicker form-control-sm'}}) }}
|
- {{ form_widget(form.priceRelatedQuantity) }} {{ form_errors(form.price) }} | -