You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix UI spacing and sizing issues from visual audit
- Remove p-0 from changelist card-body to prevent AdminLTE first-column padding shift
- Add btn-sm to all submit_line.html buttons for consistent sizing with object-tools
- Add d-flex flex-wrap gap-2 to object-tools div for proper button spacing
- Add mb-3 to dashboard cards for bottom margin between app cards
<inputtype="submit" class="btn {{ jazzmin_ui.button_classes.info }}" value="{% trans 'Save as new' %}" name="_saveasnew">
10
+
<inputtype="submit" class="btn btn-sm {{ jazzmin_ui.button_classes.info }}" value="{% trans 'Save as new' %}" name="_saveasnew">
11
11
{% endif %}
12
12
{% if show_save_and_add_another %}
13
-
<inputtype="submit" class="btn {{ jazzmin_ui.button_classes.info }}" value="{% trans 'Save and add another' %}" name="_addanother">
13
+
<inputtype="submit" class="btn btn-sm {{ jazzmin_ui.button_classes.info }}" value="{% trans 'Save and add another' %}" name="_addanother">
14
14
{% endif %}
15
15
{% if show_save_and_continue %}
16
-
<inputtype="submit" class="btn {{ jazzmin_ui.button_classes.info }}" value="{% if can_change %}{% trans 'Save and continue editing' %}{% else %}{% trans 'Save and view' %}{% endif %}" name="_continue">
16
+
<inputtype="submit" class="btn btn-sm {{ jazzmin_ui.button_classes.info }}" value="{% if can_change %}{% trans 'Save and continue editing' %}{% else %}{% trans 'Save and view' %}{% endif %}" name="_continue">
0 commit comments