There is a small cosmetic issue in a list view with a repeating group with "merge" or "merge reduce". When there are multiple repeat groups the elements are displayed in an unordered list, whereas when there is only a single repeat group the elements are simply displayed without an unordered list. This results in non alignment vertically as there is a 5px padding applied when >1 repeat groups present.
I have worked round this using some custom css in ~components/com_fabrik/views/list/tmpl/bootstrap/custom-css.php
Which gives a better presentation (vertically aligned text):
Environment is
Fabrik 4.3.1
Joomla 5.1.4
php 8.2.22
I have worked round this using some custom css in ~components/com_fabrik/views/list/tmpl/bootstrap/custom-css.php
Code:
td.repeat-merge ul.fabrikRepeatData li, td.repeat-reduce ul.fabrikRepeatData li {
padding: 5px 5px 5px 0 !important;
}
td.repeat-merge, td.repeat-reduce {
padding-left: 5px !important;
}
Which gives a better presentation (vertically aligned text):
Environment is
Fabrik 4.3.1
Joomla 5.1.4
php 8.2.22
Last edited: