Display bug on children of not editable pages
-
Hi there,
the CMS Tree Page View plugin displays the pages that are not editable by the current user with a grayed out effect, which is really fine.
Unfortunately I noticed a display bug that occurs when an editable page is a child of a not editable page. In this cases the child page is grayed out too, while it shouldn’t.This depends on this CSS fragment:
li.cms_tpv_user_can_edit_page_no a { opacity: .6; /* Standard: FF gt 1.5, Opera, Safari */ -ms-filter: "alpha(opacity=60)"; /* IE 8 */ }
It would be sufficient to add a child selector (supported by all major browers), like this:
li.cms_tpv_user_can_edit_page_no > a { opacity: .6; /* Standard: FF gt 1.5, Opera, Safari */ -ms-filter: "alpha(opacity=60)"; /* IE 8 */ }
I hope that you can include this simple fix in next releases.
- The topic ‘Display bug on children of not editable pages’ is closed to new replies.