Hi there,
I happen to be using a jQuery UI date picker in my page styled with a jQuery UI theme... And I've also got a Gravity Form on the page. My Gravity Form doesn't use a date picker, but I am loading the Gravity Forms 'form.css' file.
Because the form.css is loaded after my jQuery UI css, and because the form.css selectors aren't targeting a child of '.gform_wrapper', the form.css is styling my own date picker and overriding the jQuery UI theme I'm trying to use. (See lines 574 - 728 of form.css in version 1.6.2.11)
Would it be possible (in a future release) to more specifically target the jQuery UI date picker in your form.css by doing selectors such as:
.gform_wrapper .ui-datepicker-div { }
instead of just
.ui-datepicker-div { }
I'm using the Google CDN to load my jQuery UI css so I can't modify it... I don't really want to override the CDN copy in my style.css to throw !important on those styles or more specifically target my own date pickers (defeats the purpose a little)... And I don't want to necessarily edit my local copy of form.css (for upgrade reasons).
Any chance that might be possible? Thanks!