11
Only Layout issues, examples and ideas / Re: Sort order icon missing in subheader box
« Last post by HerKle on 17.02.2021 18:42:48 »To complete, if others face the same problem: after adding that classes mentioned earlier, I use them now in jdownloads_custom.css as follows:
Maybe that this could be done more elegant directly in the responsible javascript function – but I was not able to find it. The string »onclick="Joomla.tableOrdering« of the generated html output couldn't be found in entire jd component. So for me the case is solved.
Code: [Select]
.jd-list-ordering.asc.ordering a::after,
.jd-list-title.asc.title a::after,
.jd-list-date.asc.created a::after {
content: "\ea4c";
font-family: icomoon;
margin-left: .3em;
}
.jd-list-ordering.desc.ordering a::after,
.jd-list-title.desc.title a::after,
.jd-list-date.desc.created a::after {
content: "\ea4d";
font-family: icomoon;
margin-left: .3em;
}
with satisfying result.Maybe that this could be done more elegant directly in the responsible javascript function – but I was not able to find it. The string »onclick="Joomla.tableOrdering« of the generated html output couldn't be found in entire jd component. So for me the case is solved.