Drew, here's what I found.
Your admin page is inheriting styles from another plugin ("venture event manager") that shouldn't be enqueueing scripts/styles on other pages. That's why you're seeing this at least..
admin screenshot: http://bit.ly/yK2TJN
The "tooltip" class is inheriting rules from this stylesheet.
http://173.254.48.174/wp-content/plugins/venture-event-manager/css/admin.css?ver=3.2.1 (line 93)
[css]
.tooltip {
display:none;
background:#DDECF7;
border:4px solid #D1E5F5;
font-size:12px;
max-width:400px;
min-width:150px;
padding:10px;
color:#333;
z-index:1000;
}
I disabled the stylesheets for that plugin in my test and everything in the GF admin page displays as it should.
screenshot: http://bit.ly/xGFaat
I do now see where the panel cropping issue is coming from.. the main container in the admin page has an "overflow:hidden" property being applied inline. That's cropping/truncating the toolbox panels when you're working with a new form.
screenshot: http://bit.ly/w5GTxq
Normally, this inline style doesn't exist in the form editor page.
screenshot: http://bit.ly/xnpafs
Something other than Gravity Forms is adding this style inline. You're dealing with a script conflict here - something is adding the styles where they shouldn't be added. You'll need to test and see which plugin is causing the issue. It could very well be the event manager one I mentioned above. They don't need to output scripts on other plugin pages.. that's just sloppy on their end.
Hope that helps and thanks again for your patience.
Posted 12 years ago on Tuesday February 7, 2012 |
Permalink