diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-10-26 16:32:50 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-10-26 16:32:50 -0400 |
commit | be51d5358609295c6827b6d54db95b648e8ce6fa (patch) | |
tree | 518fef55645b4d65a3eb604ab6a3c07c0c796cbf /demos/droppable/photo-manager.html | |
parent | 995eb1261e5e6bb57cad292a56911893d539472e (diff) | |
download | jquery-ui-be51d5358609295c6827b6d54db95b648e8ce6fa.tar.gz jquery-ui-be51d5358609295c6827b6d54db95b648e8ce6fa.zip |
Droppable demo: Removed IE6 CSS hack.
Diffstat (limited to 'demos/droppable/photo-manager.html')
-rw-r--r-- | demos/droppable/photo-manager.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/droppable/photo-manager.html b/demos/droppable/photo-manager.html index 315473761..7da5f5370 100644 --- a/demos/droppable/photo-manager.html +++ b/demos/droppable/photo-manager.html @@ -15,7 +15,7 @@ <script src="../../ui/jquery.ui.dialog.js"></script> <link rel="stylesheet" href="../demos.css"> <style> - #gallery { float: left; width: 65%; min-height: 12em; } * html #gallery { height: 12em; } /* IE6 */ + #gallery { float: left; width: 65%; min-height: 12em; } .gallery.custom-state-active { background: #eee; } .gallery li { float: left; width: 96px; padding: 0.4em; margin: 0 0.4em 0.4em 0; text-align: center; } .gallery li h5 { margin: 0 0 0.4em; cursor: move; } @@ -23,7 +23,7 @@ .gallery li a.ui-icon-zoomin { float: left; } .gallery li img { width: 100%; cursor: move; } - #trash { float: right; width: 32%; min-height: 18em; padding: 1%;} * html #trash { height: 18em; } /* IE6 */ + #trash { float: right; width: 32%; min-height: 18em; padding: 1%; } #trash h4 { line-height: 16px; margin: 0 0 0.4em; } #trash h4 .ui-icon { float: left; } #trash .gallery h5 { display: none; } |