Opened 13 years ago
Closed 13 years ago
#23956 closed defect (bug) (invalid)
jQuery UI Datepicker adds empty but visible div at bottom of page
| Reported by: | julianm | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Customize | Version: | 3.5.1 |
| Severity: | normal | Keywords: | reporter-feedback |
| Cc: | Focuses: |
Description
This bug seems to be related to the this jQuery UI bug, which has been fixed, but the following WordPress stylesheet seems to be making the bug re-appear:
wp-includes/css/jquery-ui-dialog.min.css
As far as I can tell, removing the following rule seems to fix it:
.ui-helper-clearfix:after {
content:".";
}
Change History (3)
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
jQuery UI styles were updated in [23515] (for #23370).
Specifically,
.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } .ui-helper-clearfix { display: inline-block; } /* required comment for clearfix to work in Opera \*/ * html .ui-helper-clearfix { height:1%; } .ui-helper-clearfix { display:block; }was replaced with:
.ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; border-collapse: collapse; } .ui-helper-clearfix:after { clear: both; } .ui-helper-clearfix { min-height: 0; /* support: IE7 */ }Could you see if that fixed the issue?