Ticket #1125 (closed bug: wontfix)
IE7 Interface Sortable Boxes breaks
| Reported by: | sosensible | Owned by: | stefan |
|---|---|---|---|
| Priority: | undecided | Milestone: | 1.1.3 |
| Component: | interface | Version: | 1.1.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
When you eliminate all the boxes from the middle column in the demo it no longer allows you to drag something new back in. (Perhaps there needs to be a or something.) So it's almost useable... but not working in the most dominate browser would be a killer feature in the wrong way.
Change History
comment:1 in reply to: ↑ description Changed 6 years ago by timmaffett
comment:2 Changed 6 years ago by jwise
timmaffett, gave a workaround, but that probably doesn't completely solve the problem, since now the boxe\ would be static in every browser and not expanding/contracting as might be desired. I would recommend trying the following code:
/* for understanding browsers */
.container {
width:20em;
padding:0.5em;
border:1px solid #000;
min-height:8em;
height:auto;
}
/* for Internet Explorer */
/*\*/
* html .container {
height: 8em;
}
/**/
This solves the problem since IE will auto-expand when content is greater than the 8em, while the other browsers will use the normal min-height code.
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
