I am using Finder with Drupal 7.17 and the Finder UI is broken. When trying to open the Settings options for Finder Elements, the settings flash briefly and then disappear. I cannot see or edit any of the settings for any elements, rendering the module useless. I also cannot group elements into fieldsets or rows. When saving a grouping change, the Finder settings revert to the unedited state.

Comments

japo32’s picture

Priority: Normal » Major

hi aaronpinero, here's a quick fix. It seems that a small css change in finder_ui.css will fix this. just comment out some padding code in line 124:

before:

div#finder-ui-elements-list div.fieldset-wrapper {
  padding: 0 0 3px 3px;
  margin: 0;
}

after:

div#finder-ui-elements-list div.fieldset-wrapper {
  /*padding: 0 0 3px 3px;*/
  margin: 0;
}

This seems to fix the visibility of that interface. :)

I don't know how to make a patch. hehe.

danielb’s picture

Version: 7.x-2.0 » 7.x-2.x-dev
Issue summary: View changes
Status: Active » Closed (cannot reproduce)

I haven't seen anything like what is described, and nobody else has mentioned anything. Seems odd that the problem would be 3px of padding. Reopen if you can give me steps to reproduce.