Details
-
Type:
Bug
-
Status: Won't Do
-
Priority:
Trivial
-
Resolution: Won't Do
-
Affects Version/s: 4.7.27
-
Fix Version/s: None
-
Component/s: None
-
Labels:
-
Versioning Impact:None (no code merged)
-
Documentation Required?:None
-
Funding Source:Needs Funding
-
Verified?:No
-
How it should work:
Description
Using a Panopoly-based theme (Open Church), Pop Up Form search selectors are not accessible when viewing a Contact and clicking on a Property (like Events or Relationships).
If I view a contact, click Events and "Add Event Registration", then click the "Select event" bar, the select list shows up BEHIND the form. Same with the other pop-ups like "Participant Status". I can resize and move the pop-up form to see it. But that's not sustainable.
Same behavior if I view a contact, click Relationships and "Add Relationship" then click the "Select Relationship Type" box., or the "Contact(s)" box.
This is resolved. There is a conflict between Panoply (which is the base theme for OpenChurch Theme, which I was using) and CiviCRM's theme. Specifically, the /openchurch/modules/panopoly/panopoly_core/css/panopoly-jquery-ui-theme.css assigns a z-index that pushes the form dialog to the front.
Simple CSS fix:
/*.ui-front {
z-index: 10001 !important;
}*/