Blog Post
jeffshurtliff
4 years agoBoss
CarolineS - I discovered the same issue you mentioned about not being able to navigate around the hierarchy with the category navigator in Community Admin, which also affects the page/quilt navigator in Studio.
I was able to resolve that issue by creating the last_chance_html component and adding the code below to it.
<#if http.request.url?contains('bizapps')>
<style type="text/css">
/* Fix the broken tree toggles in 21.4 modals */
#lia-body.BizAppsPage .lia-content .lia-list-tree .lia-list-tree-closed>.lia-list-tree-toggle {
background: transparent url(/skins/images/7E2C175B63339F08141C0CC0BB242AC5/base/images/icon_toggle_closed_list_tree.png) no-repeat top left;
}
#lia-body.BizAppsPage .lia-content .lia-list-tree .lia-list-tree-opened>.lia-list-tree-toggle {
background: transparent url(/skins/images/7E2C175B63339F08141C0CC0BB242AC5/base/images/icon_toggle_open_list_tree.png) no-repeat top left;
}
</style>
</#if>
Hope this helps!